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

codex-spec-workflow

v0.1.3

Published

Codex-native, approval-gated specification and bug-fix workflows

Readme

Codex Spec Workflow

A Codex-native port of pimzino/claude-code-spec-workflow: approval-gated requirements, design, tasks, implementation, and bug-fix workflows backed by deterministic local state.

The active Codex session performs research, writing, and implementation. The companion CLI handles only deterministic work—installation, state transitions, task parsing, migration, status, and the dashboard. It does not call an AI API and does not require OPENAI_API_KEY.

Install into a project

Requires Node.js 20+ and the Codex CLI.

npm install -g codex-spec-workflow
cd /path/to/project
codex-spec install --dry-run
codex-spec install
codex-spec doctor

The installer manages ten skills under .agents/skills, four agents under .codex/agents, default templates under .codex-specs/templates, and one delimited block in AGENTS.md. Existing project guidance, customized managed files, unrelated skills and agents, templates, specs, bugs, and Codex configuration are preserved. Managed writes are atomic and updated files are backed up under .codex-specs/backups.

Use the workflows

The workflows are opt-in: Codex uses them only when you explicitly mention an installed skill with $skill-name. Ordinary planning, implementation, and bug-fix requests do not activate the spec workflow automatically. Existing .codex-specs/ content or a request matching a registered spec or bug is not invocation. The installer writes the same guard into its managed AGENTS.md section.

Invoke the installed skills in Codex:

$spec-steering-setup
$spec-create user-authentication "Secure signup and login"
$spec-execute user-authentication
$spec-status user-authentication

$bug-create wrong-status "Dashboard shows the wrong status"
$bug-analyze wrong-status
$bug-fix wrong-status
$bug-verify wrong-status

Each content phase stops for explicit approval. Approval is stored in workflow.json; requirements, design, and tasks remain Markdown source of truth. $spec-execute runs one dependency-ready task by default. It continues through multiple tasks sequentially only when the user explicitly asks to implement them together. Each task is marked complete only after its acceptance criteria and relevant checks pass.

Useful deterministic commands:

codex-spec list --json
codex-spec status spec user-authentication
codex-spec tasks next user-authentication
codex-spec context spec user-authentication
codex-spec repair --dry-run

Migrate a Claude workflow

The migration leaves .claude untouched, preserves checkboxes, normalizes supported task syntax, converts recognizable legacy approval markers into state, and reports ambiguity rather than silently guessing.

codex-spec migrate --from-claude --dry-run
codex-spec migrate --from-claude

Use --force only to replace an existing destination; every replacement is backed up first. Generated per-task Claude commands are intentionally not migrated—use $spec-execute.

Dashboard

codex-spec dashboard --project /project/one /project/two
# For a dashboard exposed through a tunnel:
codex-spec dashboard --read-only --host 0.0.0.0

The web dashboard reads structured state, streams filesystem changes over WebSockets, and shows multiple explicit project paths, Git status, steering coverage, approvals, and task progress. It has no write API. --read-only additionally rejects every non-read HTTP method. The optional Tauri wrapper in src-tauri/ launches the same local dashboard.

Plugin development

The plugin manifest is .codex-plugin/plugin.json; the repo-local marketplace is .agents/plugins/marketplace.json. Install or refresh the repository marketplace, then start a new Codex session so newly bundled skills are discovered. The npm installer and plugin both use the same canonical skills/ tree.

The repository formats follow the official OpenAI documentation for skills, custom agents, and plugins.

Development

npm install
npm run verify

The source project is MIT licensed. See NOTICE.md for attribution.