auto
Smart router - Single entry point with natural language intent detection
Discovery phase - Multi-AI research and exploration
> /plugin marketplace add nyldn/claude-octopusHow it fires
How this command gets triggered: by you, by Claude, or both.
/discoverContext preview
What this command does when you run it.
Discovery phase - Multi-AI research and exploration
command: discover disable-model-invocation: true description: "Discovery phase - Multi-AI research and exploration" aliases: - probe - research-phase
**When the user explicitly invokes `/octo:discover`, you MUST execute the structured workflow below.** You are PROHIBITED from doing the task directly, skipping the multi-provider research phase, or deciding the task is "too simple" for this workflow. The user chose this command deliberately โ respect that choice.
**You MUST execute this command by running the discovery workflow through `orchestrate.sh`. You are PROHIBITED from:**
**Multi-LLM orchestration is the purpose of this command.** If you execute using only Claude, you've violated the command's contract.
---
When the user invokes this command (e.g., `/octo:discover <arguments>`):
**โ CORRECT - Run the orchestrated probe workflow:**
bash "${HOME}/.claude-octopus/plugin/scripts/orchestrate.sh" probe <user's arguments>Run this from the user's project directory โ never `cd` into the plugin first. Dispatched providers sandbox file access to the invoking directory, so a plugin cwd makes the user's project files unreadable to every provider.
**โ INCORRECT:**
Skill(skill: "octo:discover", ...) โ Wrong here; recursive Skill dispatch can reload this command Task(subagent_type: "octo:discover", ...) โ Wrong! This is a command workflow, not an agent type
**CRITICAL: Before starting discovery, use the AskUserQuestion tool to gather context:**
Ask 3 clarifying questions to ensure focused research:
AskUserQuestion({
questions: [
{
question: "How thorough should the research be?",
header: "Research Intensity",
multiSelect: false,
options: [
{label: "Quick (1-2 min)", description: "2 agents โ fast problem space scan"},
{label: "Standard (2-4 min)", description: "4-5 agents โ balanced multi-perspective coverage (recommended)"},
{label: "Deep (3-6 min)", description: "6-7 agents โ exhaustive analysis with web search"}
]
},
{
question: "What's your primary focus area?",
header: "Focus",
multiSelect: false,
options: [
{label: "Technical implementation (Recommended)", description: "Code patterns, APIs, architecture"},
{label: "Best practices", description: "Industry standards and conventions"},
{label: "Ecosystem & tools", description: "Libraries, frameworks, community"},
{label: "Trade-offs & comparisons", description: "Pros/cons analysis"}
]
},
{
question: "How should the output be formatted?",
header: "Output",
multiSelect: false,
options: [
{label: "Detailed report (Recommended)", description: "Comprehensive write-up"},
{label: "Summary", description: "Concise key findings"},
{label: "Comparison table", description: "Side-by-side format"},
{label: "Recommendations", description: "Actionable next steps"}
]
}
]
})Map the intensity answer:
After receiving answers, incorporate them into the `orchestrate.sh probe` invocation.
bash "${HOME}/.claude-octopus/plugin/scripts/orchestrate.sh" probe [intensity=quick|standard|deep] <user's arguments>Example: `bash "${HOME}/.claude-octopus/plugin/scripts/orchestrate.sh" probe [intensity=standard] OAuth authentication patterns`
**CRITICAL: After discovery completes, you MUST ask the user what to do next. Do NOT end the session silently.**
AskUserQuestion({
questions: [
{
question: "Discovery phase complete. What would you like to do next?",
header: "Next Steps",
multiSelect: false,
options: [
{label: "Move to Define phase", description: "Scope and clarify requirements based on findings (/octo:define)"},
{label: "Go deeper on a specific finding", description: "Research a particular area in more detail"},
{label: "Run the full workflow", description: "Continue through all remaining phases (/octo:embrace)"},
{label: "Export the research", description: "Save findings as a document"},
{label: "Done for now", description: "I have what I need"}
]
}
]
})---
**Runs the `probe` workflow for the research/discovery phase.**
Just use natural language:
"Research OAuth authentication patterns" "Explore caching strategies for high-traffic APIs" "Investigate microservices best practices"
The **Discover** phase of the Double Diamond methodology:
"Research OAuth 2.0 vs JWT authentication" "Probe database options for our use case" "Explore state management patterns for React"
Discover is phase 1 of 4 in the embrace (full) workflow: 1. **Discover** <- You are here 2. Define 3. Develop 4. Deliver
Every AI model has blind spots. Claude Octopus supports twelve external provider integrations โ Codex, Antigravity CLI, Copilot, Qwen, Ollama, Perplexity, OpenRouter, OrcaRouter, OpenCode, Cursor CLI, Grok, and Kimi Code โ alongside the built-in Claude Code
Repo: nyldn/claude-octopus
Smart router - Single entry point with natural language intent detection
Start a creative thought partner brainstorming session
Switch Octopus model routing to the configured budget tier
[advanced] Activate destructive command warnings for the session
[advanced] Compatibility view of the deterministic Octopus usage report
Multi-LLM council for advice, decision support, implementation plans, and gated implementation