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-subagent-kit

v0.2.1

Published

Install and manage Codex subagent catalogs, templates, and TOML definitions.

Downloads

33

Readme

codex-subagent-kit

codex-subagent-kit is the npm CLI package for installing and managing Codex subagent definitions, catalogs, and templates.

The current TypeScript package covers the stable command surface:

  • catalog
  • catalog sync
  • catalog import
  • template init
  • install
  • doctor
  • usage
  • tui
  • bare command entrypoint for the install-first interactive flow

This package is the active source of truth for the product and the npm release target.

Quick Start

Run the published CLI directly:

npx codex-subagent-kit

That bare command opens the install-first TUI.

If you want one quick non-interactive npm check:

npx codex-subagent-kit install \
  --scope project \
  --project-root /tmp/codex-subagent-kit-demo \
  --agents reviewer,code-mapper \
  --validate
npx codex-subagent-kit usage \
  --scope project \
  --project-root /tmp/codex-subagent-kit-demo \
  --task "Review the failing auth flow"

From the repository root:

npm install
npm run build:ts
node packages/codex-subagent-kit/dist/cli.js

Local Development

From the repository root:

npm install
npm run test:ts
npm run typecheck:ts
npm run build:ts
npm run smoke:ts:consumer
node packages/codex-subagent-kit/dist/cli.js --help
node packages/codex-subagent-kit/dist/cli.js

Stable Commands

Browse the VoltAgent-backed built-in snapshot and any injected catalogs:

npx codex-subagent-kit catalog

Refresh a project-local synced source root from a local clone or from VoltAgent upstream:

npx codex-subagent-kit catalog sync --scope project --project-root /tmp/example --source-root /tmp/awesome-codex-subagents
npx codex-subagent-kit catalog sync --scope project --project-root /tmp/example

Import external awesome-style categories/ content into the project catalog:

npx codex-subagent-kit catalog import \
  --scope project \
  --project-root /tmp/example \
  --catalog-root /tmp/categories \
  --agents custom-helper

Install project-scoped agents and validate them immediately:

npx codex-subagent-kit install \
  --scope project \
  --project-root /tmp/example \
  --agents reviewer,code-mapper \
  --validate

Use doctor if you want to re-check the generated files later:

npx codex-subagent-kit doctor --scope project --project-root /tmp/example

Render a Codex starter prompt from the installed agents:

npx codex-subagent-kit usage \
  --scope project \
  --project-root /tmp/example \
  --task "Review the failing auth flow"

Common Codex-side prompts:

  • Use reviewer to review the current changes for bugs, regressions, and missing tests.
  • Use code-mapper to map the auth flow before we change it.

Packaging

The repository includes a dry-run packaging command:

npm run pack:ts
npm run smoke:ts:consumer

See the repository-level notes in docs/TYPESCRIPT_PORT.md for the final migration summary and release readiness.