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-codex

v5.0.1

Published

Codex-native fork of obra/superpowers — structured agentic workflows for OpenAI Codex CLI

Readme

superpowers-codex

structured agentic workflows for OpenAI Codex CLI. fork of obra/superpowers.

install

npx superpowers-codex install

or with flags:

npx superpowers-codex install --user       # all sessions
npx superpowers-codex install --project    # this project only
npx superpowers-codex uninstall --user
npx superpowers-codex status

the installer creates a symlink from ~/.agents/skills/superpowers to the skills directory, checks config.toml for multi_agent = true. safe to re-run.

installation guide →

what this is

superpowers is a skill-based development workflow by @obra. 14 composable skills enforce design-before-code, TDD, two-stage review, and evidence-based verification. the original targets Claude Code.

this fork ports everything to OpenAI Codex CLI, replacing tool names and invocation patterns:

claude code                          codex cli
───────────                          ─────────
Task (subagent)                  →   spawn_agent(role="X")
TodoWrite                        →   update_plan
Skill("superpowers:X")           →   $X prefix
CLAUDE.md                        →   AGENTS.md
Edit tool                        →   apply_patch
Glob/Grep                        →   find/rg (shell)

why this fork →

how it works

skills auto-activate when your task matches their description. you don't invoke them — codex checks before every response.

user: "build a login page"
     │
     ▼
 $brainstorming ──→ questions, alternatives, spec doc
     │
     ▼
 $writing-plans ──→ 2-5 min tasks with file paths
     │
     ▼
 $using-git-worktrees ──→ isolated branch
     │
     ▼
 $subagent-driven-development
     │
     ├──→ spawn_agent(implementer) ──→ builds, tests, commits
     │         │
     │    spawn_agent(spec-reviewer) ──→ "matches spec?"
     │         │
     │    spawn_agent(code-reviewer) ──→ "well built?"
     │
     ▼
 $finishing-a-development-branch ──→ merge / PR

architecture →

vs native codex

codex ships with spawn_agent, send_input, resume_agent, wait, close_agent. powerful primitives — but primitives without process:

| | raw codex | with superpowers | |---|---|---| | design phase | none | socratic brainstorming → spec | | task granularity | "build the feature" | 2-5 minute steps | | review | optional | mandatory two-stage (spec → quality) | | test discipline | optional | enforced RED-GREEN-REFACTOR | | completion claims | agent says "done" | evidence required (fresh test run) | | debugging | guess and retry | 4-phase root cause investigation |

full comparison →

skills

14 composable skills, auto-activating:

| skill | when | what | |---|---|---| | $brainstorming | creative work | socratic design → spec document | | $writing-plans | spec approved | 2-5 min tasks with exact paths | | $using-git-worktrees | plan ready | isolated workspace on new branch | | $subagent-driven-development | plan ready | fresh agent per task + two-stage review | | $executing-plans | plan ready (alt) | single-session with checkpoints | | $test-driven-development | implementation | RED → GREEN → REFACTOR | | $systematic-debugging | bug found | 4-phase root cause analysis | | $requesting-code-review | task complete | dispatch code-reviewer agent | | $receiving-code-review | PR feedback | rigorous technical response | | $verification-before-completion | claiming "done" | evidence before assertions | | $finishing-a-development-branch | all tasks done | merge / PR / keep / discard | | $dispatching-parallel-agents | 2+ independent tasks | concurrent agent dispatch | | $writing-skills | creating skills | TDD for documentation | | $using-superpowers | every session | routing layer |

skills reference →

configuration

minimum ~/.codex/config.toml:

[features]
multi_agent = true

recommended — with agent roles:

[agents]
max_threads = 6

[agents.implementer]
description = "implementation-focused. follows TDD, one task at a time."

[agents.spec-reviewer]
description = "spec compliance. verifies code matches requirements exactly."

[agents.code-reviewer]
description = "code quality. reviews for clean code, maintainability."

configuration guide →

iron laws

  1. no production code without a failing test first
  2. no fixes without root cause investigation
  3. no "done" without running verification fresh

known limitations

| missing | impact | workaround | |---|---|---| | no pre/post tool hooks | skills can't auto-fire on tool events | AGENTS.md instructions + $using-superpowers routing | | no visual companion | brainstorming server needs a browser | text-based flow works fully | | no EnterPlanMode | no structured plan-mode UI | $brainstorming triggers automatically, plans persist to files | | agent depth limit | max_depth = 1, agents can't spawn sub-agents | orchestrator pattern (parent spawns all) | | description-based activation | no explicit Skill() tool call | precise descriptions + $skill-name prefix in AGENTS.md |

docs

| doc | content | |---|---| | 01-why-this-fork | motivation, changelog | | 02-architecture | pipeline, tool mapping | | 03-skills-reference | all 14 skills with triggers | | 04-configuration | config.toml, AGENTS.md, agent roles | | 05-vs-native-codex | superpowers vs raw spawn_agent | | 06-installation | install, uninstall, status |

also available for

credits

built on superpowers by @obra (Jesse Vincent). MIT license.