embrace

embrace is a command for Claude Code from nyldn/claude-octopus. It costs 12 tokens per session (3,503 once invoked), scanned A, a copy of octo-embrace, MIT.

A command that runs a complete Double Diamond workflow: research, define, develop, and deliver. The Double Diamond is a structured process for exploring a problem, choosing a direction, building a solution, and reviewing the result.

In plain words
What is it for?
Use it for end-to-end product or software work that needs research, definition, implementation, and review.
Why use it?
It ensures those stages are carried out in order, even when the task seems small.

Command for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool; positional $N argument.

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

Good fit Use it for end-to-end product or software work that needs research, definition, implementation, and review.

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

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 embrace

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/nyldn/claude-octopus/embrace"><img src="https://agentmods.dev/badge/commands/nyldn/claude-octopus/embrace.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 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,503 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 100% copy Near-identical to another mod 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.00012 $0.03503
Opus 5 $0.00006 $0.01751
Sonnet 5 $0.00002 $0.00701
Haiku 4.5 $0.00001 $0.00350

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

Security

Grade A, and why

embrace 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 8d 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.

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

This is a copy

100% identical to octo-embrace — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

commands/embrace.md · 326 lines

How it starts

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

Embrace - Complete Double Diamond Workflow

Your first output line MUST be: 🐙 Octopus Embrace

MANDATORY COMPLIANCE — DO NOT SKIP

When the user invokes /octo:embrace, you MUST execute the full multi-LLM workflow below. You are PROHIBITED from:

  • Deciding the task is "too simple" for the workflow
  • Doing the task directly instead of running the phases
  • Skipping phases because you judge them unnecessary
  • Substituting your own approach for the structured workflow

The user chose /octo:embrace deliberately. Respect that choice.

EXECUTION MECHANISM — NON-NEGOTIABLE

Each phase MUST be executed through the orchestrate.sh entrypoint. Direct Skill calls for the workflow phases are not permitted because they can recursively reload command instructions. You are PROHIBITED from:

  • Using the Agent tool to do research yourself instead of running the discovery phase
  • Using WebFetch/Read/Grep as a substitute for multi-provider research
  • Implementing code directly instead of running the develop phase
  • Using a single code-reviewer agent instead of running the deliver phase
  • Skipping orchestrate.sh calls because "I can do this faster directly"

The ENTIRE POINT of /octo:embrace is multi-LLM orchestration. If you execute phases using only Claude-native tools (Agent, WebFetch, Write, Edit), you have violated the command's purpose even if you followed the phase structure.

Self-check after completion: You should be able to list the orchestrate.sh commands you ran. If you used only Claude-native tools, you executed incorrectly.


Step 1: Ask Clarifying Questions

AskUserQuestion({
  questions: [
    {
      question: "What's the scope of this project?",
      header: "Scope",
      multiSelect: false,
      options: [
        {label: "Small feature", description: "Single component or small addition"},
        {label: "Medium feature", description: "Multiple components or moderate complexity"},
        {label: "Large feature", description: "System-wide changes or new subsystem"},
        {label: "Full system", description: "Complete application or major architecture"}
      ]
    },
    {
      question: "What areas require the most attention?",
      header: "Focus Areas",
      multiSelect: true,
      options: [
        {label: "Architecture design", description: "System structure and design patterns"},
        {label: "Security", description: "Authentication, authorization, data protection"},
        {label: "Performance", description: "Speed, scalability, optimization"},
        {label: "User experience", description: "UI/UX and usability"}
      ]
    },
    {
      question: "What's your preferred level of autonomy?",
      header: "Autonomy",
      multiSelect: false,
      options: [
        {label: "Supervised (default)", description: "Review and approve after each phase"},
        {label: "Semi-autonomous", description: "Only intervene if quality gates fail"},
        {label: "Autonomous", description: "Run all 4 phases automatically"},
        {label: "Manual", description: "I'll guide each step explicitly"}
      ]
    },
    {
      question: "Should critical decisions be stress-tested with a Multi-LLM debate?",
      header: "Multi-LLM Debate Gates",
      multiSelect: false,
      options: [
        {label: "Yes — debate at Define→Develop gate", description: "Recommended for Large/Full scope"},
        {label: "Yes — debate at both gates", description: "Maximum rigor, uses external API credits"},
        {label: "No — skip debates", description: "Standard workflow without debate checkpoints"},
        {label: "Only if disagreement detected", description: "Auto-trigger when providers diverge"}
      ]
    }
  ]
})

Read the full file on GitHub · 326 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. 8d ago First seen · 326 lines · 12 tokens per session scan A e669e1dd5a4b

Subscribe to this mod's changes

embrace is a command published in the GitHub repository nyldn/claude-octopus (4,061 stars, last pushed yesterday), licensed MIT. It adds 12 tokens to every session and 3,503 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to octo-embrace, differing in 6 lines, and is treated as a copy.