Help us improve
Share bugs, ideas, or general feedback.
From octo
Executes small, self-contained tasks like bug fixes, config changes, and dependency updates without full workflow overhead. Skips research and planning phases for fast turnaround.
npx claudepluginhub nyldn/claude-octopus --plugin octoHow this skill is triggered — by the user, by Claude, or both
Slash command
/octo:octopus-quickThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Host: Codex CLI** — This skill was designed for Claude Code and adapted for Codex.
Executes ad-hoc tasks via spawned executor subagent with atomic commits and .planning/quick/ tracking. For small self-contained work, skips full plan/review.
Lightweight linear workflow for small, bounded changes — direct commit by default with opt-in PR path via synthesis policy or runtime event. Best for trivial fixes, config tweaks, single-file edits, and exploratory spikes.
Offers lightweight pipeline for small routine changes (≤3 files, low-risk, e.g., typos, version bumps, lint fixes) via leader-builder-tester-ship, skipping full workflow.
Share bugs, ideas, or general feedback.
Host: Codex CLI — This skill was designed for Claude Code and adapted for Codex. Cross-reference commands use installed skill names in Codex rather than
/octo:*slash commands. Use the active Codex shell and subagent tools. Do not claim a provider, model, or host subagent is available until the current session exposes it. For host tool equivalents, seeskills/blocks/codex-host-adapter.md.
Fast-track execution for small tasks that don't need full Double Diamond workflow overhead.
Bug Fixes:
Configuration Changes:
Small Refactorings:
Documentation:
Dependency Management:
Complex Work:
Use full workflows for complex work to ensure quality.
Quick mode follows a streamlined process:
User Request → Direct Implementation → Atomic Commit → Summary
What Quick Mode SKIPS:
What Quick Mode KEEPS:
/octo:quick "add dark mode toggle to settings"
Use skill: octopus-quick
Task: "fix typo in README.md line 42"
/octo:quick "update Next.js to v15"
/octo:quick "fix the broken import in auth.ts"
/octo:quick "add error handling to login function"
/octo:quick "remove console.log statements"
Quickly assess:
Implement directly using appropriate tools:
Always create a descriptive commit:
# Stage changes
git add [changed-files]
# Create commit with clear message
git commit -m "quick: [brief description]
[Detailed explanation if needed]
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>"
Commit message format:
quick: to indicate quick mode# Update state with quick task execution
"${HOME}/.claude-octopus/plugin/scripts/state-manager.sh" write_decision \
"quick" \
"$(git log -1 --pretty=%s)" \
"Ad-hoc task executed in quick mode"
# Update metrics
"${HOME}/.claude-octopus/plugin/scripts/state-manager.sh" update_metrics \
"execution_time" \
"1" # Estimated in minutes
# Create quick task summary
mkdir -p .claude-octopus/quick
summary_file=".claude-octopus/quick/$(date +%Y%m%d-%H%M%S)-summary.md"
cat > "$summary_file" <<EOF
# Quick Task: $(git log -1 --pretty=%s)
## Task Description
$TASK_DESCRIPTION
## Changes Made
$(git diff HEAD~1..HEAD --stat)
## Files Modified
$(git diff --name-only HEAD~1..HEAD)
## Commit
$(git rev-parse HEAD)
## Timestamp
$(date -u +%Y-%m-%dT%H:%M:%SZ)
*Executed in Quick Mode - minimal overhead execution*
EOF
echo "📝 Summary saved to: $summary_file"
User Request:
/octo:quick "fix typo in README - change 'recieve' to 'receive'"
Execution:
Read the file
Read README.md to locate the typo
Make the change
Edit README.md: replace "recieve" with "receive"
Commit atomically
git add README.md
git commit -m "quick: fix typo in README (recieve → receive)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>"
Record in state
state-manager.sh write_decision "quick" \
"Fixed typo in README" \
"Ad-hoc documentation fix"
Generate summary
Created: .claude-octopus/quick/20260129-143045-summary.md
Report to user
✅ Fixed typo in README.md
📝 Commit: abc123f
📋 Summary: .claude-octopus/quick/20260129-143045-summary.md
If during execution you realize the task is more complex than expected:
Stop and escalate to full workflow:
This task is more complex than anticipated. I recommend using the full
workflow instead:
- For research: /octo:discover "research authentication patterns"
- For planning: /octo:define "define auth requirements"
- For building: /octo:develop "implement auth system"
- For validation: /octo:deliver "validate auth implementation"
Would you like me to switch to a full workflow?
Indicators to escalate:
Quick mode creates summaries in a dedicated directory:
.claude-octopus/
└── quick/
├── 20260129-143045-summary.md
├── 20260129-150122-summary.md
└── 20260129-161530-summary.md
Each summary includes:
| Aspect | Quick Mode ⚡ | Full Workflow 🐙 |
|---|---|---|
| Time | 1-3 minutes | 5-15 minutes |
| Cost | Claude only | Codex + Gemini + Claude |
| Providers | 1 (Claude) | 3 (multi-AI) |
| Research | None | Comprehensive |
| Planning | None | Detailed |
| Validation | Basic | Multi-AI review |
| Best For | Simple fixes | Complex features |
| When to Use | Known solution | Unknown solution |
→ Task is probably too complex. Escalate to full workflow.
→ Quick mode assumes simple, safe changes. Use full workflow for risky changes.
→ Quick mode is for known solutions only. Use /octo:discover for research.
→ Consider /octo:develop for coordinated multi-file changes.
Quick mode is the right tool for simple, straightforward tasks with known solutions. It provides fast execution while maintaining essential tracking and documentation.
For everything else, use the full Double Diamond workflow to ensure quality through multi-AI orchestration.
Remember: Fast is good, but correct is better. When in doubt, use the full workflow.