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

@unifocl/codex-plugin

v3.14.0

Published

Codex plugin bundle for unifocl: installs MCP server config and unifocl workflow skills.

Readme

unifocl Codex Plugin

This folder defines the Codex-side equivalent of @unifocl/claude-plugin.

What the Codex plugin should do

Unlike Claude Code's npm plugin format, Codex integration is primarily:

  1. MCP server registration (unifocl --mcp-server)
  2. Reusable workflow guidance (Codex skill/playbook)

So the Codex plugin is a distribution bundle made of:

  • MCP setup automation
  • Codex skill files for /init, /status, /context, /mutate, /workflow-equivalent flows

Functional Scope

The Codex plugin must provide the same workflow guarantees as the Claude plugin:

  • /init equivalent: project bridge setup + post-checks
  • /status equivalent: daemon/mode/project/editor/session checks
  • /context equivalent: hierarchy + project + inspector hydration
  • /mutate equivalent: schema -> validate -> dry-run -> execute -> verify sequence
  • /workflow equivalent: canonical multi-step agent workflow

The low-level behavior continues to live in:

  • unifocl --mcp-server
  • unifocl exec "..."

No mutation logic is duplicated in this package.

Installation Strategy (No source checkout required)

Not all users clone this repository, so distribution should be release-based:

  1. Primary channel: built-in CLI command

    • unifocl agent install codex
    • Also available: unifocl agent install claude
    • Benefit: works for Homebrew/winget/release-binary users with no Node.js requirement.
  2. npm package (publisher and advanced fallback path)

    • Publish: @unifocl/codex-plugin
    • Optional user flow:
      • npm install -g @unifocl/codex-plugin
      • unifocl-codex-plugin install
  3. GitHub release asset fallback

    • Ship a small cross-platform installer script in release assets:
      • install-codex-plugin.sh
      • install-codex-plugin.ps1
    • Users download from release page and run once.

Versioning & Compatibility

  • Keep plugin version aligned with unifocl CLI minor version.
  • On protocol-affecting changes, include migration guidance (for example: rerun /init).
  • Installer should be idempotent and safe to rerun.

File Layout

src/unifocl.codex-plugin/
  README.md
  package.json
  bin/unifocl-codex-plugin.js
  skills/unifocl/SKILL.md
  skills/unifocl/references/init.md
  skills/unifocl/references/status.md
  skills/unifocl/references/context.md
  skills/unifocl/references/mutate.md
  skills/unifocl/references/workflow.md

Minimal install behavior

unifocl agent install codex should execute equivalent of:

scripts/setup-mcp-agents.sh --workspace <detected-or-provided-workspace> --codex

When using the npm package installer, copy bundled skill files to:

$CODEX_HOME/skills/unifocl/

and print verification steps:

  1. Restart Codex session.
  2. Confirm MCP tools include ListCommands and LookupCommand.
  3. Run a smoke check with unifocl exec "/status" --agentic --format json.

Publish From CLI

From this directory:

cd src/unifocl.codex-plugin
npm publish --access public

If this is your first publish for the scope:

npm login
npm publish --access public