octopus-quick — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited octopus-quick (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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:
/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 <[email protected]>"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 README.md to locate the typo Edit README.md: replace "recieve" with "receive" git add README.md
git commit -m "quick: fix typo in README (recieve → receive)
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>" state-manager.sh write_decision "quick" \
"Fixed typo in README" \
"Ad-hoc documentation fix" Created: .claude-octopus/quick/20260129-143045-summary.md ✅ Fixed typo in README.md
📝 Commit: abc123f
📋 Summary: .claude-octopus/quick/20260129-143045-summary.mdIf 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 | 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.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.