npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@snailzqd/spec-power

v0.1.0

Published

A lightweight CLI for adopting Spec Kit and Superpowers-oriented SDD workflows in any project.

Readme

SpecPower CLI

spec-power 是一个轻量 CLI,用于在任意项目中接入面向 Spec Kit 和 Superpowers 工作方式的 SDD(Specification-Driven Development,规范驱动开发)流程。

它会生成项目本地的 SDD 文档、模板,以及 Codex 和 Claude Code 的 Agent 入口文件。CLI 默认保持保守:不删除文件、不自动提交、不自动安装外部工具。

安装与构建

npm install
npm run build

本地开发时,可以直接运行构建后的 CLI:

node dist/cli.js --help

常用命令

spec-power init codex
spec-power init claude
spec-power init --agents codex,claude --profile multi-module
spec-power new smart-table-import --type feature --modules api,web
spec-power check
spec-power doctor
spec-power sync --check

作为 npm 包安装后,也可以使用短别名 power

命令说明

  • init [agents...]:在当前项目生成 SDD 工作流文档、模板、.specpower/upstream.lock 和指定 Agent 入口;例如 spec-power init codex 只生成 Codex 入口,spec-power init claude 只生成 Claude 入口。
  • new <slug>:创建 specs/NNN-<slug>/spec.mdplan.mdtasks.md
  • check:检查项目是否已正确接入 SpecPower。
  • doctor:只读诊断 Git、Spec Kit CLI、Agent 入口和本地敏感文件提示。
  • sync --check:检查当前 lockfile 记录的内置模板版本。

安全默认值

  • 已存在文件默认跳过,除非显式传入 --force
  • --dry-run 只展示写入计划,不改动文件系统。
  • specs/** 下已有规格不会被覆盖。
  • 不自动安装 Spec Kit、Superpowers、Codex 或 Claude;生成的文档只说明推荐接入方式。
  • 不执行 git addgit commitgit push

设计文档

原始 SDD 和 CLI 接入方案已归档在 docs/