octo-auto

octo-auto is a command for Claude Code, Cursor from nyldn/claude-octopus. It costs 11 tokens per session (3,781 once invoked), scanned A, original, MIT.

A single command that reads a plain-language request and sends it to the matching Octopus workflow.

In plain words
What is it for?
Starting workflows from requests such as investigating authentication, fixing a failing test, comparing caching tools, or building an e-commerce site.
Why use it?
It removes the need to know which separate command handles research, debugging, testing, or larger builds.

Command for Claude CodeCursor

Written for Claude Code and Cursor: disable-model-invocation in frontmatter, but also a Cursor plugin manifest. Also seen: reads .claude/ paths; positional $N argument; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the octo plugin — 70 skills, 106 commands, 10 agents, 18 hooks shipped together

Good fit Starting workflows from requests such as investigating authentication, fixing a failing test, comparing caching tools, or building an e-commerce site.

Compare 6 commands from other repositories ↓
About the project

Claude Octopus is an orchestration project that sends research, design, and coding tasks to Claude Code and other AI model providers so their results can be compared. Developers use it for multi-model work, disagreement detection, reviews, persistent context, and an optional workflow that moves from discovery through delivery. The catalogue entries are its commands, skills, agents, instructions, hooks, plugins, and settings.

nyldn/claude-octopus · 4,061 stars · on GitHub · reddit.com

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add nyldn/claude-octopus
Claude Code
/plugin install octo

Made for: Claude Code, Cursor.

Or install octo, the plugin that ships this one along with the rest of its 70 skills, 106 commands, 10 agents, 18 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for octo-auto

README.md
[![agentmods](https://agentmods.dev/badge/commands/nyldn/claude-octopus/octo-auto/github.svg)](https://agentmods.dev/commands/nyldn/claude-octopus/octo-auto)
Your own site
<a href="https://agentmods.dev/commands/nyldn/claude-octopus/octo-auto"><img src="https://agentmods.dev/badge/commands/nyldn/claude-octopus/octo-auto/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for octo-auto

Your own site · 80×15
<a href="https://agentmods.dev/commands/nyldn/claude-octopus/octo-auto"><img src="https://agentmods.dev/badge/commands/nyldn/claude-octopus/octo-auto.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,781 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00011 $0.03781
Opus 5 $0.00005 $0.01891
Sonnet 5 $0.00002 $0.00756
Haiku 4.5 $0.00001 $0.00378

Measured today against content hash 37840d088e5b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

octo-auto scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

printf "ollama:%s\n" "$(command -v ollama >/dev/null 2>&1 && curl -sf http://localhost:11434/api/tags >/dev/null 2>&1 && echo available || echo missing)"
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • auto — 97% identical, 8 lines differ
.cursor-plugin/commands/octo-auto.md · 339 lines

How it starts

The opening of the file, as written. The whole thing — 339 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Smart Router (/octo:auto)

Single entry point for all Claude Octopus workflows. Analyzes your natural language request and routes to the optimal workflow automatically.

/octo:auto research OAuth authentication patterns
/octo:auto debug the failing test in auth.ts
/octo:auto should we use Redis or Memcached?
/octo:auto write tests for the payment module
/octo:auto create a complete e-commerce platform

All /octo:* commands also work directly, bypassing the router.

Premium automatic peer check

When Premium mode is active, eligible single-owner implementation, review, design, copywriting, and general work receives one automatic cross-provider peer check after the owner returns a result. Users do not need a flag or a second command. Budget and Standard modes do not add this call.

Octopus skips the extra check for quick or direct requests, setup and status work, image and research routes, and workflows that already run councils, debates, crossfire, parallel work, or a full review. Explicit provider/model pins and provider restrictions still win. Set OCTOPUS_PREMIUM_PEER_CHECK=off to disable only this automatic addition.

The peer receipt records whether the bounded result review completed. A peer response is advisory and does not prove correctness.


EXECUTION CONTRACT (Mandatory)

When the user invokes /octo:auto <query> or says octo <query>, you MUST use the native path below. The detailed routing table later in this file is reference material for the shared runtime, not a second classifier.

NATIVE PATH: SINGLE AUTHORITATIVE ROUTER

For every non-meta request, pass the complete original query to the shared automatic runtime before doing any local intent matching:

OCTO_ROOT="${CLAUDE_PLUGIN_ROOT:-${HOME}/.claude-octopus/plugin}"
bash "${OCTO_ROOT}/scripts/orchestrate.sh" auto "<full original query>"

Treat the runtime's task classification and selected workflow as authoritative. If it reports Direct mode, continue handling the original request natively in the current Claude Code conversation. If it dispatches an external or parallel workflow, let that workflow complete and do not start a second route. If it reports a Native workflow request, load the named installed command and follow that command's contract in the current conversation. Do not continue to STEP 1 or choose a different route. This avoids two classifiers choosing different workflows and keeps Premium peer policy at the workflow root.

Read the full file on GitHub · 339 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed · +60 lines 37840d088e5b
  2. 3d ago Changed · +7 lines 3a6a41bb642a
  3. 7d ago First seen · 272 lines · 11 tokens per session scan A 1f755a616451

Subscribe to this mod's changes

octo-auto is a command published in the GitHub repository nyldn/claude-octopus (4,061 stars, last pushed today), licensed MIT. It adds 11 tokens to every session and 3,781 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.