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

holycodex

v0.5.3

Published

Lean Codex-only agent toolkit for ChatGPT Plus

Readme

HolyCodex

HolyCodex is a modified, standalone Codex-only hard fork of oh-my-openagent. It keeps the parts that make Codex better at software work, removes the OpenCode runtime and organizational agent machinery, and compresses persistent instructions for lower ChatGPT Plus usage.

What

HolyCodex installs one focused Codex toolkit:

  • 16 on-demand skills for programming, debugging, frontend, LSP, AST search, security research, planning, handoffs, goal definition, compression, and related workflows.
  • Three optional subagents: explorer for internal inspection, librarian for external research, and worker for bounded implementation.
  • Three MCP defaults: git_bash, lsp, and context7.
  • Small command hooks for readiness and scoped rules.
  • A Node-compatible installer and prebuilt runtime usable through npm or Bun.

The primary agent owns intent, scope, architecture, decisions, integration, and final verification. Subagents only reduce cost on narrow independent work; skills own their declared methods and gates.

Why

Large always-on prompts, agent hierarchies, review loops, and duplicated context consume tokens before useful work begins. HolyCodex takes a smaller approach:

  • Skills load only when descriptions match the task and state activation, exclusions, outcome, and adjacent boundary.
  • Rules are path-scoped, size-limited, cached, and deduplicated; AGENTS.md is never reinjected.
  • Concurrent delegation is capped at two; every delegated slice has fixed scope, evidence, acceptance, and stop conditions under primary-agent control.
  • Explorer and librarian use GPT-5.6 Luna low; worker uses GPT-5.6 Luna medium.
  • Git Bash shell execution is required only on native Windows when its MCP run tool is available; other environments use their native shell directly.
  • OMO workflows and retained references are rewritten with caveman-style token efficiency.
  • The OMO frontend skill is merged with GPT Taste instead of shipping another overlapping skill.

The result aims to keep strong engineering behavior while spending fewer Plus tokens on ceremony and repeated instructions.

How

Install

Use either runtime:

npx holycodex install
bunx holycodex install

Installation is noninteractive. It:

  1. Backs up every affected existing file or managed cache under the OS temporary directory.
  2. Removes legacy OMO configuration and cache after backup.
  3. Preserves unrelated Codex settings and explicit model or agent preferences.
  4. Installs the HolyCodex marketplace, plugin, agents, skills, hooks, and MCP definitions.
  5. Sets max_concurrent_threads_per_session = 2 and defaults the root model to GPT-5.6 Sol low only when no root preference exists.

Codex may still ask you to review and trust the installed command hooks. This security review is the only manual installation step.

Options:

holycodex install --json
holycodex install
holycodex --help
holycodex --version

Cleanup

npx holycodex cleanup
# or
bunx holycodex cleanup

Cleanup backs up affected files, removes only HolyCodex-owned configuration and artifacts, and preserves unrelated settings. Install and cleanup are idempotent.

Repository layout

  • plugin/skills/ — shipped skill catalogue and on-demand references.
  • plugin/agents/ — the three cost-focused subagent definitions.
  • plugin/hooks/ — supported command hooks for readiness and scoped rules.
  • plugin/.mcp.json — local and remote MCP defaults.
  • plugin/runtime/ — prebuilt Node-compatible CLI, rules, Git Bash, and LSP runtime.
  • src/ — installer, cleanup, bootstrap, and scoped-rules source.
  • packages/ — Git Bash and LSP MCP source.
  • test/ — CLI, lifecycle, catalogue, rules, bootstrap, and MCP tests.

Thanks

HolyCodex exists because of the work of:

Licenses

HolyCodex uses the same Sustainable Use License 1.0 as oh-my-openagent. This is not the MIT License: use and distribution are subject to the limitations in LICENSE.md.

Third-party components retain their original licenses. Relevant notices and bundled license files are preserved in THIRD-PARTY-NOTICES.md and alongside the applicable skills or components.