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

@maximilianfabiankirchner/codex-workflows

v6.0.6

Published

Codex workflow harness and skills library for planning, execution, debugging, review, and verification.

Downloads

19

Readme

Codex Workflows

Codex Workflows is a Codex-only fork of obra/superpowers. It packages the workflow as a native Codex plugin plus a skills library for design, planning, execution, debugging, and review.

The package now follows a Natural-Language Agent Harness model. Agents and reviewers should start from docs/language-contracts/ for human-facing workflow authority, while deterministic mechanics and explicit tool interfaces remain in code when code is the right tool.

Included workflow skills

  • brainstorming
  • writing-plans
  • subagent-driven-development
  • executing-plans
  • test-driven-development
  • systematic-debugging
  • requesting-code-review
  • receiving-code-review
  • verification-before-completion

Install in Codex

  1. Clone the plugin locally:

    mkdir -p ~/plugins
    git clone https://github.com/MaxFabian25/codex-workflows.git ~/plugins/codex-workflows
  2. Register the local plugin.

    If ~/.agents/plugins/marketplace.json does not exist yet, create it with this full file content:

    {
      "name": "local-codex",
      "interface": {
        "displayName": "Local Codex Plugins"
      },
      "plugins": [
        {
          "name": "codex-workflows",
          "source": {
            "source": "local",
            "path": "./plugins/codex-workflows"
          },
          "policy": {
            "installation": "AVAILABLE",
            "authentication": "ON_INSTALL"
          },
          "category": "Developer Tools"
        }
      ]
    }

    If ~/.agents/plugins/marketplace.json already exists, append this object inside its plugins array without changing unrelated entries:

    {
      "name": "codex-workflows",
      "source": {
        "source": "local",
        "path": "./plugins/codex-workflows"
      },
      "policy": {
        "installation": "AVAILABLE",
        "authentication": "ON_INSTALL"
      },
      "category": "Developer Tools"
    }
  3. Restart Codex.

  4. Start a new session with:

    Use codex-workflows:session-router before we start.

The package ships a native SessionStart hook as a lightweight adapter for the same router instruction. Manual session start remains the fallback when a host does not load plugin hooks.

Detailed Codex setup and workflow guidance lives in docs/README.codex.md.

Verify

Confirm the plugin and language-contract surfaces exist:

test -f ~/plugins/codex-workflows/.codex-plugin/plugin.json
test -f ~/plugins/codex-workflows/hooks/hooks.json
test -x ~/plugins/codex-workflows/hooks/session-start
test -f ~/plugins/codex-workflows/docs/language-contracts/README.md
test -f ~/plugins/codex-workflows/docs/language-contracts/session-router-playbook.md

Confirm Codex plugin support is enabled:

codex features list | rg '^plugins[[:space:]]+stable[[:space:]]+true$'

Updating

Pull the local plugin clone, then restart Codex:

git -C ~/plugins/codex-workflows pull

If you moved the clone to a different path, update the plugin registration path and restart Codex.

Uninstalling

First remove the codex-workflows entry from ~/.agents/plugins/marketplace.json.

Then delete the local clone:

rm -rf ~/plugins/codex-workflows

The optional cmux team launcher is outside this core package unless a companion package explicitly owns it. The visual brainstorming companion remains package feature runtime when the brainstorming skill offers it and the user accepts it.

Support

  • Issues: https://github.com/MaxFabian25/codex-workflows/issues
  • Security advisories: https://github.com/MaxFabian25/codex-workflows/security/advisories/new

Upstream origin

This fork derives from obra/superpowers and retains the MIT license.