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

ennodia

v0.1.1

Published

MCP server for multi-agent review with Compare and traceable receipts

Readme

No single model or agent should be the only reviewer for work that matters. Ennodia lets your primary agent ask the installed agent CLIs you already have, track every child task, and use model-led Compare to surface agreements, disagreements, blind spots, and one synthesized answer with receipts.

The subscription-pool idea is secondary: if you already pay for Codex, Claude Code, Antigravity, OpenCode, and other local agent tools, Ennodia gives your main agent one MCP doorway to use them as an independent review panel. The experimental IO package exposes a small local HTTP subset for apps, but the supported first-class surface is MCP.

Install

Send this to your primary agent and let it handle setup:

try-ennodia.cherninlab.com

Or run it directly as a stdio MCP server from npm:

npx -y ennodia

Prefer a registry or client installer? Use the Ennodia Smithery listing. It uses the same stdio command from smithery.yaml (npx -y ennodia) and does not need Ennodia-specific configuration.

Requires Bun 1.3.14 or newer — npx downloads Ennodia, Bun runs it. Prefer Bun directly? Use bunx ennodia. For manual setup, local development, or a full walkthrough, see Quickstart.

What Ennodia does

  • Discovers available local AI tools
  • Plans a route with a caller-provided category or keyword fallback
  • Estimates preflight input tokens and enforces local caps on that estimate
  • Starts and monitors child tasks
  • Shows status, timing, logs, and failures
  • Cancels tasks and runs explicitly
  • Compares multiple completed outputs
  • Synthesizes one answer from the comparison

The main entrypoint is ennodia_run: it plans, executes, optionally compares, and returns a run ID to poll with ennodia_get_run. See MCP tools for the full tool and parameter reference.

Ennodia is for deliberation-class work: a run usually takes minutes, and Compare adds two serial model passes after the child agents finish.

Ennodia IO

The separate @cherninlab/ennodia-io workspace package exposes a local HTTP and TypeScript interface for apps that want BYOK-style settings over installed local agents:

npx -y @cherninlab/ennodia-io

See Ennodia IO for supported fields, auth behavior, CORS posture, and current limits.

Supported harnesses

  • Codex CLI
  • Claude Code
  • OpenCode
  • Kilo Code
  • Kiro CLI
  • Cline CLI
  • Hermes Agent
  • Antigravity

Adapters stay thin — shared routing, tracing, task state, recovery, and Compare logic live in core modules.

Evaluated-but-not-shipped candidates include Gemini CLI, GitHub Copilot CLI, Amp, Aider, Goose, Qwen Code, and Cursor CLI. They will be added only when a supported non-interactive prompt-in/text-out surface can be verified without permission-bypass flags or provider-private APIs.

Documentation

Benchmarks

The current benchmark is multi-model-bug-recall: small TypeScript review fixtures scored against committed bug oracles. Run the deterministic suite with:

bun run bench:bug-recall

Live harness runs are available through bun run bench:bug-recall:live and are kept out of bun run verify.

The current dated fixture snapshot is published in Benchmarks: 4 cases, with ennodia-parallel-compare at 100% recall and 100% precision.

Contributing

Ennodia is under active development. Bug reports and small, focused pull requests are welcome. See CONTRIBUTING.md for the local verification workflow.