with one click
cancel
Ends active execution modes and clears .omp/state/
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Ends active execution modes and clears .omp/state/
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Diagnose and fix build/CI failures automatically
Concurrent code generation via multi-model picker
UI/UX design and frontend component generation
OMP self-improvement — analyse own skills/agents and propose improvements
Visual diff/screenshot comparison verdict
Clone and adapt a web page/design to the codebase
Based on SOC occupation classification
| name | cancel |
| description | Ends active execution modes and clears .omp/state/ |
| trigger | cancel:, /cancel, /omp:cancel |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | cancel |
| Keywords | cancel:, /cancel |
| Tier | Execution Mode |
| Source | src/skills/cancel.mts |
Ends any active execution mode (autopilot, ralph, team, ultrawork, etc.) and clears the .omp/state/ directory so the next session starts clean. Safe to call at any time — if no session is active the command is a no-op.
interface SkillInput { trigger: string; args: string[]; }
interface SkillOutput { status: "ok" | "error"; message: string; }
export async function activate(input: SkillInput): Promise<SkillOutput>
export function deactivate(): void
Activates the cancel mode by spawning bin/omp.mjs cancel [args]. The CLI handler removes .omp/state/ using fs.rmSync and prints a confirmation message. No persistent resources are maintained.