extract-skill
Reverse-engineer design systems, tokens, and components from live products or screenshots
Quick execution for ad-hoc tasks without full workflow overhead — use for small, self-contained requests
$ npx -y skills add nyldn/claude-octopus --skill skill-quick --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/skill-quickContext preview
The summary Claude sees to decide when to auto-load this skill.
Quick execution for ad-hoc tasks without full workflow overhead — use for small, self-contained requests
name: octopus-quick disable-model-invocation: true effort: low description: Quick execution for ad-hoc tasks without full workflow overhead — use for small, self-contained requests aliases: - quick - quick-mode - adhoc trigger: | Use this skill when user says "quick fix", "ad-hoc task", or explicitly requests fast execution without full workflow overhead.
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:**
# 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:**
1. **Read the file**
Read README.md to locate the typo
2. **Make the change**
Edit README.md: replace "recieve" with "receive"
3. **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>"
4. **Record in state**
state-manager.sh write_decision "quick" \
"Fixed typo in README" \
"Ad-hoc documentation fix"5. **Generate summary**
Created: .claude-octopus/quick/20260129-143045-summary.md
6. **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 syst
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
Reverse-engineer design systems, tokens, and components from live products or screenshots
Multi-AI requirements scoping using available external providers (Double Diamond Define phase). Priority triggers: octo define, octo scope, co-define,…
Multi-AI validation, scoring, and review using available external providers (Double Diamond Deliver phase)
Multi-AI implementation using available external providers (Double Diamond Develop phase). DO NOT use for simple code edits, reading/reviewing code, built-in…
Multi-AI research using available external providers (Double Diamond Discover phase)
Decompose and execute large changes, migrations, or multi-issue fixes in parallel with quality gates