Cancel Skill
Stop active execution modes and clean up state files.
Usage
/skill:cancel
What It Does
- Stops active modes - autopilot, ralph, team, etc.
- Cleans up state - Removes
.omp/state/*.json - Preserves work - Keeps implementation files
- Reports status - What was active, what was completed
When to Cancel
✅ Cancel When
- All tasks done and verified
- Work is blocked and cannot proceed
- User says "stop"
❌ Don't Cancel When
- Work is still incomplete
- A single subtask failed but others can continue
- You can fix and retry
State Cleanup
# Remove mode state files
rm -f .omp/state/autopilot-state.json
rm -f .omp/state/ralph-state.json
rm -f .omp/state/team-state.json
rm -f .omp/state/deep-interview-state.json
# Keep these
保留 .omp/plans/ # Planning documents
保留 .omp/prd.json # PRD can be resumed
保留 .omp/notepad.md # Session notes
Output
## Cancel Complete
**Modes stopped:** ralph, team
**State cleaned:** Yes
**Files preserved:** 16 implementation files
**Completed work:**
- AUTH-001: User registration ✅
- AUTH-002: User login ✅
**Incomplete work:**
- AUTH-003: Password reset
**Resume with:**
/skill:ralph "complete authentication"