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

@cyberboyayush/zenox-claude

v1.0.0

Published

Claude Code plugin — Multi-agent orchestrator with Explorer (Haiku), Librarian (Sonnet), and Oracle (Opus) for intelligent task delegation, parallel research, and code review

Readme

Zenox for Claude Code

Multi-agent orchestrator plugin for Claude Code. Gives you a team of specialized AI agents instead of a single generalist.

What it does

Zenox replaces the default Claude Code agent with an orchestrator that automatically delegates to specialists:

| Agent | Model | Role | |-------|-------|------| | Zenox (main) | Opus | Orchestrates everything, writes code, delegates when needed | | Explorer | Haiku | Fast codebase search — finds files, patterns, symbols | | Librarian | Sonnet | External research — official docs, GitHub examples, library internals | | Oracle | Opus | Strategic advisor — architecture decisions, debugging, code review |

Explorer and Librarian run in background automatically. Oracle runs in foreground (blocks until result arrives). You don't manage the agents — the orchestrator delegates based on what you ask.

Install

From marketplace (recommended)

/plugin marketplace add CyberBoyAyush/zenox-claude
/plugin install zenox@zenox-marketplace
/reload-plugins

From npm

If the marketplace is already configured to use npm:

/plugin marketplace add CyberBoyAyush/zenox-claude
/plugin install zenox@zenox-marketplace

Local development

claude --plugin-dir /path/to/zenox-claude

How delegation works

You don't call agents directly. The main agent delegates automatically:

You: "Where's the authentication logic?"
-> Explorer searches the codebase (background)

You: "How does React Query handle caching?"
-> Librarian fetches docs + real GitHub examples (background)

You: "Should I use Redux or Zustand here?"
-> Oracle analyzes trade-offs (foreground)

You: "review"
-> Oracle reviews your recent git diff for bugs, security, regressions

Skills (keyword triggers)

| Skill | Trigger | What happens | |-------|---------|--------------| | /ultrawork | "ultrawork" or "ulw" | Maximum multi-agent coordination — fires parallel agents | | /deep-research | "deep research" | 3-4 agents explore internal + external sources | | /explore-codebase | "explore codebase" | Multiple explorers map out relevant code | | /review | "review", "self-review" | Oracle reviews your git diff |

Included MCP servers

These are auto-loaded when the plugin is enabled:

| Server | Purpose | |--------|---------| | exa | Web search, docs lookup, URL crawling (free, no API key needed) | | grep-app | Search millions of public GitHub repos | | sequential-thinking | Step-by-step reasoning for complex problems |

All three servers are publicly accessible and require no API keys or configuration.

Self-review protocol

After significant implementations (3+ files changed, security-sensitive code, architecture changes), the orchestrator automatically:

  1. Runs git diff to capture changes
  2. Fires Oracle with the complete diff
  3. Collects the review verdict
  4. Addresses Critical/High findings before delivering

Skipped for trivial changes (single file, <50 lines, docs/config only).

Plugin structure

zenox-claude/
├── .claude-plugin/
│   ├── plugin.json          # Plugin manifest
│   └── marketplace.json     # Marketplace catalog
├── agents/
│   ├── zenox.md             # Main orchestrator agent
│   ├── explorer.md          # Codebase search specialist
│   ├── librarian.md         # External research specialist
│   └── oracle.md            # Strategic advisor + code reviewer
├── skills/
│   ├── ultrawork/SKILL.md
│   ├── deep-research/SKILL.md
│   ├── explore-codebase/SKILL.md
│   └── review/SKILL.md
├── hooks/
│   └── hooks.json
├── .mcp.json                # MCP server configs (exa, grep-app, sequential-thinking)
├── settings.json            # Activates zenox as main agent
└── package.json             # npm distribution

Configuration

The plugin activates the zenox agent as the main thread via settings.json. Model assignments are fixed to Claude's available tiers:

  • Explorer: Haiku (fast, cheap — right for grep-like tasks)
  • Librarian: Sonnet (balanced — good for research synthesis)
  • Oracle: Opus (maximum reasoning — right for architecture/review)
  • Zenox: Opus (main thread needs full capability)

Claude Code only supports Anthropic models (haiku/sonnet/opus) for agents, so there's no model configuration step.

Differences from Zenox for OpenCode

This is a port of Zenox (OpenCode plugin) adapted for Claude Code's declarative plugin system:

| Aspect | OpenCode Zenox | Claude Code Zenox | |--------|---------------|-------------------| | Implementation | TypeScript plugin (~1000 LOC) | Static markdown files | | Agent count | 4 (includes UI Planner) | 3 (no UI Planner) | | Model flexibility | Any provider (OpenAI, Google, Anthropic) | Anthropic only | | Background tasks | Custom BackgroundManager | Native background: true frontmatter | | Model config | Interactive CLI (bunx zenox config) | Fixed in agent frontmatter | | Distribution | npm + OpenCode plugin registry | npm + Claude Code marketplace |

License

MIT