From octo
Verifies claims of work completion, fixes, or passing status with fresh command evidence before commits, PRs, task completion, or satisfaction statements like 'Done!'
npx claudepluginhub nyldn/claude-octopus --plugin octoThis skill uses the workspace's default tool permissions.
**Your first output line MUST be:** `๐ **CLAUDE OCTOPUS ACTIVATED** - Verification Gate`
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Your first output line MUST be: ๐ **CLAUDE OCTOPUS ACTIVATED** - Verification Gate
Claiming work is complete without verification is dishonesty, not efficiency.
If you haven't run the verification command in this message, you cannot claim it passes.
BEFORE claiming any status or expressing satisfaction:
1. IDENTIFY โ What command proves this claim?
2. RUN โ Execute the FULL command (fresh, complete)
3. READ โ Full output, check exit code, count failures
4. VERIFY โ Does output confirm the claim?
- If NO: State actual status with evidence
- If YES: State claim WITH evidence
5. CLAIM โ ONLY THEN make the claim
Skip any step = lying, not verifying
| Claim | Requires | NOT Sufficient |
|---|---|---|
| "Tests pass" | Test output showing 0 failures | Previous run, "should pass" |
| "Linter clean" | Linter output showing 0 errors | Partial check, extrapolation |
| "Build succeeds" | Build command exit code 0 | Linter passing |
| "Bug fixed" | Original symptom no longer occurs | "Code changed" |
| "Regression test works" | Red-green cycle verified | Test passes once |
| "Requirements met" | Line-by-line checklist | Tests passing |
Running tests...
$ npm test
โ user.create() saves to database (45ms)
โ user.create() validates email (12ms)
โ user.create() hashes password (23ms)
Tests: 3 passed, 3 total
Time: 0.8s
All 3 tests pass. Ready for review.
I've implemented the user creation feature. It should work now.
The tests should pass.
1. Write test:
test('rejects empty email', () => { ... })
2. Run test (should FAIL):
$ npm test
FAIL: expected 'Email required', got undefined
โ Test fails as expected
3. Implement fix
4. Run test (should PASS):
$ npm test
PASS: 1/1
โ Test passes
5. Revert fix temporarily:
$ git stash
$ npm test
FAIL: expected 'Email required', got undefined
โ Confirms test catches the bug
6. Restore fix:
$ git stash pop
$ npm test
PASS: 1/1
Red-green cycle verified. Regression test is valid.
If you catch yourself:
ALL of these mean: STOP. Run verification first.
| Excuse | Reality |
|---|---|
| "Should work now" | RUN the verification. |
| "I'm confident" | Confidence โ evidence. |
| "Just this once" | No exceptions. |
| "Linter passed" | Linter โ tests โ build. |
| "I'm tired" | Exhaustion โ excuse. |
| "Partial check is enough" | Partial proves nothing. |
# Run and capture output
npm test # JavaScript/TypeScript
pytest # Python
cargo test # Rust
go test ./... # Go
# Expected: "X passed, 0 failed"
npm run build # Node.js
cargo build --release # Rust
go build ./... # Go
# Expected: Exit code 0, no errors
npm run lint # ESLint
ruff check . # Python
cargo clippy # Rust
# Expected: 0 errors (warnings OK)
npm run typecheck # TypeScript
mypy . # Python
cargo check # Rust
# Expected: 0 errors
Octopus workflows have built-in quality gates:
| Workflow | Verification Point |
|---|---|
tangle | 75% success threshold before proceeding |
ink | Full test suite before delivery |
squeeze | Red team validation before clearance |
# Before moving from tangle โ ink
${HOME}/.claude-octopus/plugin/scripts/orchestrate.sh preflight
# Verifies:
# - All agents completed
# - Quality gate passed
# - No errors in logs
# Full verification before PR
npm test && npm run lint && npm run build
# Then create PR with evidence
gh pr create --body "$(cat <<'EOF'
## Verification
- Tests: 42/42 passing
- Lint: 0 errors
- Build: Success
EOF
)"
Missing any checkbox? Do not claim completion.
Claiming success โ Verification evidence exists in this message
Otherwise โ Not verified
Run the command. Read the output. THEN claim the result.
No shortcuts for verification. This is non-negotiable.