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

superpowers-spec

v1.0.1

Published

AI-native system for spec-driven development and test-driven development

Readme

Superpowers with Spec

Superpowers with Spec is an AI-native CLI for spec-driven development.

It combines:

  • OpenSpec's structured artifact workflow and CLI foundations: proposal/design/tasks/spec lifecycle
  • Superpowers' practical skill library for brainstorming, planning, execution, debugging, and verification

Project base references:

  • OpenSpec: https://github.com/Fission-AI/OpenSpec
  • Superpowers skills: https://github.com/obra/superpowers

What this project is

This repository is a fork/evolution focused on:

  • OpenSpec-style rigor: explicit artifacts, traceable changes, predictable implementation flow
  • Superpowers-style productivity: reusable skills that guide agent behavior in real coding sessions
  • Tool-agnostic setup: generated skills/commands for many coding agents (including Codex)

See it in action

You: /sp:propose add-dark-mode
AI:  Created superpowers/changes/add-dark-mode/
     ✓ proposal.md — why we're doing this, what's changing
     ✓ specs/       — requirements and scenarios
     ✓ design.md    — technical approach
     ✓ tasks.md     — implementation checklist
     Ready for implementation!

You: /sp:apply
AI:  Implementing tasks...
     ✓ 1.1 Add theme context provider
     ✓ 1.2 Create toggle component
     ✓ 2.1 Add CSS variables
     ✓ 2.2 Wire up localStorage
     All tasks complete!

You: /sp:archive
AI:  Archived to superpowers/changes/archive/2025-01-23-add-dark-mode/
     Specs updated. Ready for the next feature.

Quickstart

npm i -g superpowers-spec@latest && superpowers --version

Inside your target project:

superpowers init

Main commands

  • superpowers init — initialize project and tool assets
  • superpowers update — refresh installed skills/commands from current profile
  • superpowers list — list changes (or specs with flags)
  • superpowers show — show artifacts/specs
  • superpowers validate — validate artifacts/specs
  • superpowers config profile — switch workflow profile

Core concepts

Superpowers with Spec manages change artifacts under superpowers/:

  • superpowers/changes/<change>/proposal.md
  • superpowers/changes/<change>/design.md
  • superpowers/changes/<change>/tasks.md
  • superpowers/changes/<change>/specs/...

And installs agent-facing assets under tool directories (for example):

  • .claude/skills, .claude/commands, .claude/hooks, .claude/agents
  • .codex/skills, global Codex prompts under ~/.codex/prompts, plus .codex/hooks and .codex/agents

Local development

Requirements

  • Node.js >= 20.19.0
  • pnpm (recommended) or npm

Install dependencies:

pnpm install

Build:

pnpm run build

Run tests:

pnpm test

Lint:

pnpm run lint

Run CLI locally from repo:

node bin/superpowers.js --help
node bin/superpowers.js --version

Initialize in a project

Inside your target project:

superpowers init

Or non-interactive:

superpowers init --tools codex
superpowers init --tools claude,cursor
superpowers init --tools all

Repository structure

  • src/ — TypeScript source
  • skills/ — bundled static skills copied to tool directories
  • hooks/ — bundled hook files
  • agents/ — bundled agent definitions
  • schemas/ — schema templates and validation schema
  • test/ — Vitest test suite

Publish to npm

Before publish:

pnpm run build
pnpm test
pnpm run check:pack-version

Publish flow:

pnpm changeset
pnpm changeset version
pnpm run release:ci

Package metadata is in package.json (current package name: superpowers-spec).

Telemetry

Anonymous command telemetry is enabled by default and can be disabled via:

export SUPERPOWERS_TELEMETRY=0
# or
export DO_NOT_TRACK=1

License

MIT