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

cuttlefish-cli

v0.23.6

Published

Cuttlefish AI gateway daemon orchestrating professional AI coding CLIs

Readme

Cuttlefish

A lightweight AI gateway daemon that orchestrates professional AI coding CLIs — Claude Code, Codex, Grok, Antigravity, Pi, Hermes, Kiro, Ollama, Kilo, and Aider — behind one unified process. Cuttlefish is a bus, not a brain.

npm version license: MIT node

What is Cuttlefish?

Cuttlefish is an open-source AI gateway that wraps battle-tested AI coding CLIs — Claude Code, Codex, Grok, Antigravity, Pi, Hermes, Kiro, Ollama, Kilo, and Aider — behind a single daemon. It routes tasks to the right engine, runs a hierarchical org of AI "employees", schedules background work with cron, talks to your tools through connectors, and ships a full web dashboard and voice mode — all on top of the official CLIs you already trust.

Cuttlefish is a bus, not a brain. Most AI agent frameworks reinvent the wheel — custom tool-calling loops, brittle context management, hand-rolled retries — and bill you per token on top. Cuttlefish instead delegates to the professional CLIs and adds only what they're missing: routing, an org system, scheduling, connectors, and a UI.

🔑 Works with your Claude Max subscription

Because Cuttlefish drives the official Claude Code CLI under the hood, it works with the flat-rate Anthropic Max subscription — no per-token API billing, no surprise invoices. Third-party agent frameworks were banned from using Max OAuth tokens in January 2026; since Cuttlefish delegates to Anthropic's first-party CLI, it stays fully supported.

🚀 Install

Node.js 24 (>=24 <25) is required. Full matrix (npm, Homebrew, GitHub archives, Windows): docs/INSTALL.md.

Install at least one engine CLI first:

  • Claude Codenpm install -g @anthropic-ai/claude-code
  • Codex (optional) — npm install -g @openai/codex

npm (after a published release)

npm install -g cuttlefish-cli
cuttlefish setup
cuttlefish start

Windows

# From a source checkout (supported today before npm publication):
git clone https://github.com/cephalopod-ai/cuttlefish.git
cd cuttlefish
.\scripts\install.ps1 -FromSource -Force

# After a GitHub Release with a win32-x64 asset:
.\scripts\install.ps1 -FromRelease -Force

Build a local releasable zip: .\scripts\package-windows.ps1dist-release\cuttlefish-cli-<version>-win32-x64.zip.

Source (all platforms)

git clone https://github.com/cephalopod-ai/cuttlefish.git
cd cuttlefish
pnpm install
pnpm setup                 # build and initialize the Cuttlefish home
pnpm cuttlefish start      # start the gateway daemon + web dashboard

Sign in to your engines once before cuttlefish start — run claude and use /login (and codex if installed).

Runtime home and lifecycle

Cuttlefish uses ~/.cuttlefish by default. Set CUTTLEFISH_HOME to use a separate active home; lifecycle commands and cuttlefish list use that same home. cuttlefish restart is detached so it can survive a gateway-session shutdown, and overlapping restart requests coalesce.

✨ Features

  • Multi-engine — Claude Code, Codex, Grok, Antigravity, Pi, Hermes, Kiro, Ollama, Kilo, and Aider behind one API; switch engine and model per task or per employee.
  • AI org system — hierarchical "employees" with personas, ranks, and departments. Delegate work down the tree; results flow back up through a COO.
  • Cron & background jobs — schedule recurring agent work and long-running tasks; review the output before it reaches you.
  • Connectors — Slack and more, so your agents can message, report, and act.
  • Web dashboard + voice — chat UI, live org chart, kanban board, logs, usage limits, and a hands-free talk mode.
  • Skills — reusable Markdown playbooks your agents follow step by step.
  • Matrix orchestration — durable runtime, queue controls, dual-lane runs, recovery/requeue flows, worktree execution, and a dedicated orchestration dashboard.
  • Operator controls — approvals, archives, stricter file handling, and stronger backend/frontend coverage than the upstream baseline.
  • Subscription-friendly — every Claude turn runs through the real interactive CLI inside a PTY, so your Max plan keeps working instead of silently draining API credits.

📚 Documentation

Full documentation, architecture notes, diagrams, and validation ledgers live in the repository:

→ https://github.com/cephalopod-ai/cuttlefish/blob/main/docs/INDEX.md

Cuttlefish is forked from repo-makeover/jinn, which is itself a substantial rework/fork of the original hristo2612/jinn. The original project and direct fork remain the MIT-licensed lineage for this package.

For the source-grounded fork delta, see:

→ https://github.com/cephalopod-ai/cuttlefish/blob/main/docs/UPSTREAM_DIFF_BASELINE.md

License

MIT