octo-tdd

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

A test-driven development workflow. TDD means writing a failing test, making it pass, and then improving the code.

In plain words
What is it for?
It gathers testing preferences and guides work through red, green, and refactor stages.
Why use it?
It gives feature work a clear testing discipline and helps choose an appropriate test strategy before implementation.

Command for Claude CodeCursor

Written for Claude Code and Cursor: disable-model-invocation in frontmatter, but also a Cursor plugin manifest. Also seen: names the AskUserQuestion tool.

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

Good fit It gathers testing preferences and guides work through red, green, and refactor stages.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/nyldn/claude-octopus/octo-tdd
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

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/nyldn/claude-octopus

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-tdd

README.md
[![agentmods](https://agentmods.dev/badge/commands/nyldn/claude-octopus/octo-tdd/github.svg)](https://agentmods.dev/commands/nyldn/claude-octopus/octo-tdd)
Your own site
<a href="https://agentmods.dev/commands/nyldn/claude-octopus/octo-tdd"><img src="https://agentmods.dev/badge/commands/nyldn/claude-octopus/octo-tdd/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-tdd

Your own site · 80×15
<a href="https://agentmods.dev/commands/nyldn/claude-octopus/octo-tdd"><img src="https://agentmods.dev/badge/commands/nyldn/claude-octopus/octo-tdd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 656 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00009 $0.00656
Opus 5 $0.00005 $0.00328
Sonnet 5 $0.00002 $0.00131
Haiku 4.5 $0.00001 $0.00066

Measured 4d ago against content hash c2b78b44c33f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

octo-tdd scanned grade A with 0 findings 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 4d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

2 near-identical copies found in the catalogue:

  • tdd — 95% identical, 3 lines differ
  • octo-tdd — 89% identical, 112 lines differ
.cursor-plugin/commands/octo-tdd.md · 76 lines

How it starts

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

Octopus TDD

Load skills/blocks/engineering-method-selection.md from the installed plugin and apply only the methods relevant to this task. Preserve this entry point's execution contract and output format. Read referenced skills as instructions; do not invoke the current command recursively or add provider calls from a seat.

Load and follow ${HOME}/.claude-octopus/plugin/.claude/skills/skill-tdd/SKILL.md.

Treat --peer-review as an instruction to request one bounded independent test design review through existing Octopus routing. Do not pass the token or the remaining user text into a shell command. Natural-language independent-review requests have the same meaning. Otherwise run on the current host with zero additional provider dispatches unless an existing escalation policy both requires and permits review under the effective preferences and billing limits. Risk alone does not authorize a paid call; honor explicit host-only requests.

Step 1: Ask Clarifying Questions when needed

Do not interrupt a well-specified task. If the repository and request leave a material choice unresolved, use AskUserQuestion for only the unanswered items from this intake:

AskUserQuestion({
  questions: [
    {
      question: "Which coverage boundary should prove the observable behavior?",
      header: "Coverage",
      multiSelect: false,
      options: [
        {label: "Public API", description: "Prove behavior at the caller-facing API."},
        {label: "Integration", description: "Prove behavior across component boundaries."},
        {label: "User flow", description: "Prove the complete user-visible path."}
      ]
    },
    {
      question: "Which test style should carry the regression?",
      header: "Test style",
      multiSelect: false,
      options: [
        {label: "Unit", description: "Use the narrowest stable public boundary."},
        {label: "Integration", description: "Exercise the real collaborating components."},
        {label: "End to end", description: "Exercise the supported runtime path."}
      ]
    },
    {
      question: "What complexity and risk level does this change carry?",
      header: "Complexity",
      multiSelect: false,
      options: [
        {label: "Focused", description: "Run the focused test and directly affected suite."},
        {label: "Standard", description: "Add the repository's normal changed-file gates."},
        {label: "High risk", description: "Add integration, race, or security coverage."}
      ]
    }
  ]
})

Read the full file on GitHub · 76 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. 4d ago Changed · -31 lines c2b78b44c33f
  2. 8d ago First seen · 107 lines · 9 tokens per session scan A 49256e732395

Subscribe to this mod's changes

octo-tdd is a command published in the GitHub repository nyldn/claude-octopus (4,061 stars, last pushed yesterday), licensed MIT. It adds 9 tokens to every session and 656 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.