Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Quick execution for ad-hoc tasks without full workflow overhead — use for small, self-contained requests
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 318% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 229% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 65% | 0% |
| case-22 | ✗→✓ | ▲ Improved | 201% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 52% | 0% |
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 → SummaryWhat Quick Mode SKIPS:
What Quick Mode KEEPS:
bash/octo:quick "add dark mode toggle to settings"
bashUse 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:
bash# 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 modebash# 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
bash# 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 README.md to locate the typo
Edit README.md: replace "recieve" with "receive"
bash git add README.md git commit -m "quick: fix typo in README (recieve → receive)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>"
bash state-manager.sh write_decision "quick" \ "Fixed typo in README" \ "Ad-hoc documentation fix"
bash Created: .claude-octopus/quick/20260129-143045-summary.md
✅ 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.mdEach summary includes:
| Aspect | Quick Mode ⚡ | Full Workflow 🐙 | |--------|-------------|------------------| | Time | 1-3 minutes | 5-15 minutes | | Cost | Claude only | Claude plus available external providers | | Providers | 1 (Claude) | Available provider fleet | | 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.
Other measured skills in the registry, with their headline benchmark lift.