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-openspec-team

v2.5.7

Published

AI coding agent workflow skills with CLI-driven multi-tool adaptation

Readme

Superpowers + OpenSpec Team Skills

CLI-driven workflow skills for AI coding agents. Install structured delivery processes into Claude Code (including oh-my-claudecode), Cursor, Codex, or Gemini CLI with a single command.

Quick Start

npm install -g superpowers-openspec-team

# Interactive setup — auto-detects installed AI tools
sot init /path/to/your/project

# Target a specific tool (skip interactive)
sot init /path/to/your/project --tool claude-code

# Include project memory template
sot init /path/to/your/project --with-memory

Running sot init without --tool launches an interactive setup:

  1. Welcome screen — shows how many skills will be installed
  2. Tool detection — scans for Claude Code, Cursor, Codex, and Gemini CLI; pre-selects detected tools
  3. Tool selection — use arrow keys and space to add/remove tools
  4. Installation — generates and installs skill files with a spinner
  5. Quick start guide — shows next-step commands
$ sot init ./my-project

  Welcome to Superpowers-OpenSpec
  A CLI-driven workflow skills framework for AI coding agents

  This setup will configure:
    • 5 workflow skill(s) for your AI tools
    • Tool-specific command files and skill directories
    • Optional .superpowers-memory/ for cross-session memory

? Select AI tools to install skills for: (Space to toggle, Enter to confirm)
  ◉ claude-code   (detected)
  ◯ cursor
  ◯ codex
  ◉ gemini        (detected)

✔ Installed 12 file(s) for 2 tool(s)

  Quick start after setup:

    sot list              # List available skills
    sot update             # Update installed skills
    sot validate           # Validate installation

For CI or agent-friendly use, add --json or --force:

sot init . --tool claude-code --force --json

After initialization, invoke a workflow explicitly in your AI tool:

Use the openspec-superpowers workflow for this feature.

CLI Commands

The sot CLI (v2.0.0) is the primary way to install, build, validate, and manage workflow skills.

sot init

Initialize skills into a project for one or more AI tools. When OMC (oh-my-claudecode) is detected, skills are also installed to .omc/skills/, a SOT reference block is injected into CLAUDE.md, and the sot MCP server is registered in ~/.claude.json.

sot init /path/to/project                 # auto-detect tools
sot init . --tool claude-code,cursor       # target specific tools
sot init . --tool codex --force            # skip prompts
sot init . --with-memory                   # install .superpowers-memory/ template
sot init . --dry-run                       # preview without writing
sot init . --backup                        # backup before overwriting
sot init . --tool claude-code --force --json  # agent-friendly JSON output

sot update

Update previously installed skills. Only overwrites files that carry the generatedBy: sot@ marker; manually edited files are left intact.

sot update /path/to/project
sot update . --dry-run
sot update . --backup

sot build

Build dist/ bundles from skills/ source definitions. Used by maintainers after changing source workflows.

sot build
sot build --json

sot validate

Validate installation integrity. Checks generatedBy markers, checksums, and memory date formats.

sot validate /path/to/project
sot validate . --json

sot doctor

Check OMC integration health and installation status. Runs five diagnostics:

  1. OMC Installation — detects project-local .omc/ or global OMC install
  2. Skill Sync — compares sot-generated skill count across .claude/skills/ and .omc/skills/ (ignores third-party skills)
  3. CLAUDE.md SOT Block — verifies <!-- SOT:START --> reference block is present
  4. Registry Version — checks .omc/skills/sot-registry.json matches CLI version
  5. MCP Registration — checks sot MCP server is registered in ~/.claude.json
sot doctor              # text output with colored icons
sot doctor --json       # machine-readable JSON

sot serve

Start an MCP server (stdio transport) exposing skill metadata and project memory queries. Complements OMC's built-in tools when both are available.

sot serve               # start MCP server for current directory
sot serve --project-root /path/to/project

sot list

List available skills and detected installed tools.

sot list
sot list --json

sot install-deps

Check and install runtime dependencies declared in workflow.yaml files.

sot install-deps              # check only
sot install-deps --force      # install missing deps
sot install-deps --json

sot config

View or modify global configuration.

sot config                    # show all settings
sot config --get defaultTools
sot config --set defaultTools=claude-code,cursor
sot config --set backupEnabled=true

Valid config keys: defaultTools, deliveryMode, backupEnabled.

Global Options

All commands support --json for machine-readable output and --debug for verbose logging.

Supported Tools

Five adapters are included:

| Adapter | ID | Writes to | |---------|----|-----------| | Claude Code | claude-code | .claude/commands/, CLAUDE.md (also detects oh-my-claudecode) | | Cursor | cursor | .cursor/rules/, AGENTS.md | | Codex | codex | Codex home skills directory | | Gemini CLI | gemini | GEMINI.md, gemini-extension.json | | OMC | omc | .omc/skills/ (auto-detected, enables OMC skill discovery) |

Project Memory (.superpowers-memory/)

When sot init --with-memory is used, the project receives a .superpowers-memory/ directory that gives AI agents a lightweight cross-session memory:

  • PROJECT_CONTEXT.md -- stable project facts and architecture
  • CURRENT_STATE.md -- latest working context and next steps
  • DECISIONS.md -- cross-session design and process decisions
  • KNOWN_FAILURES.md -- recurring failure patterns and pitfalls
  • VERIFICATION_BASELINE.md -- trusted verification methods
  • TEAM_PREFERENCES.md -- durable collaboration preferences
  • USER_PROFILE.md -- user communication and output preferences
  • AGENT_NOTES.md -- execution reminders and quality notes
  • LEARNING_BACKLOG.md -- reusable lessons pending promotion
  • SESSION_CLOSE_CHECKLIST.md -- session-close reminder
  • memory-index.yaml -- health metadata and freshness tracking
  • session-journal/ -- one short note per meaningful session

Memory is opt-in. It only activates when .superpowers-memory/ exists and a Superpowers workflow reads it.

Recommended Workflows

| Workflow | Purpose | |----------|---------| | openspec-superpowers | End-to-end: clarification through verification | | superpowers-openspec-execution | Four-step: explore, lock spec, implement, archive | | superpowers-feature | Design, plan, TDD, verify -- no OpenSpec artifacts | | superpowers-learning | Reflective capture of lessons and project memory | | openspec-feature | OpenSpec proposal, design, specs, tasks only |

For long-running projects, a good pattern is: deliver with a feature workflow, then close with superpowers-learning to preserve durable lessons.

Repository Layout

skills/        source workflow definitions (maintainer-facing)
dist/          tool-adapted bundles (generated by sot build)
src/           CLI source code (TypeScript)
templates/     memory template scaffold
bin/           CLI entry point
test/          test suite (vitest)

skills/ contains the source definitions. dist/ is deterministically generated from skills/ via sot build -- do not edit dist/ directly.

Explicit Activation

These workflows should only activate when:

  • the user explicitly names the workflow
  • the user explicitly asks for the workflow style
  • the repository policy explicitly requires the workflow

They should not be treated as default background behavior. Install the bundle, keep normal prompts unchanged, and explicitly invoke the workflow only when you want it.

Development & Contributing

# Build CLI
npm run build

# Type check
npx tsc --noEmit

# Run tests
npm test

# Watch tests
npm run test:watch

See CONTRIBUTING.md for contribution guidelines.

Documentation Index