octo-embrace

octo-embrace is a command for Claude Code from CES-Ltd/Lumi. It costs 12 tokens per session (2,360 once invoked), scanned A, original, MIT.

A structured four-stage workflow based on the Double Diamond design method: research, define, develop, and deliver. It requires each stage to run through the matching skill and several language models.

In plain words
What is it for?
Taking a complex idea from initial research through problem definition, development, and final review using multiple language-model steps.
Why use it?
It prevents the agent from skipping research, planning, implementation, or review when the workflow is requested.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; names the AskUserQuestion tool; mentions Codex.

Part of the octo plugin — 10 skills, 47 commands shipped together

Good fit Taking a complex idea from initial research through problem definition, development, and final review using multiple language-model steps.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/ces-ltd/lumi/octo-embrace
View source ↗ CES-Ltd/Lumi
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/CES-Ltd/Lumi

Made for: Claude Code.

Or install octo, the plugin that ships this one along with the rest of its 10 skills, 47 commands.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/ces-ltd/lumi/octo-embrace"><img src="https://agentmods.dev/badge/commands/ces-ltd/lumi/octo-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 2,360 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.00012 $0.02360
Opus 5 $0.00006 $0.01180
Sonnet 5 $0.00002 $0.00472
Haiku 4.5 $0.00001 $0.00236

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

Security

Grade A, and why

octo-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 11d 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)"
resources/seed/octopus/commands/octo-embrace.md · 249 lines

How it starts

The opening of the file, as written. The whole thing — 249 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 by invoking the corresponding skill using the Skill tool. You are PROHIBITED from:

  • Using the Agent tool to do research yourself instead of invoking /octo:discover
  • Using WebFetch/Read/Grep as a substitute for multi-provider research
  • Implementing code directly instead of invoking /octo:develop
  • Using a single code-reviewer agent instead of invoking /octo:deliver
  • 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 Skill invocations and 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 · 249 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. 11d ago First seen · 249 lines · 12 tokens per session scan A 4e054f9bbbd5

Subscribe to this mod's changes

octo-embrace is a command published in the GitHub repository CES-Ltd/Lumi (31 stars, last pushed 4mo ago), licensed MIT. It adds 12 tokens to every session and 2,360 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-08-30.