mit einem Klick
cancel
Stop active workflow and clean up state
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Stop active workflow and clean up state
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Token-efficient execution modifier with budget-aware routing
Kimi-native team worker protocol (ACK, mailbox, task lifecycle)
Persistence loop until task completion with verification
Architecture planning and plan approval workflow
Parallel agent execution via Kimi-native multi-worker runtime
Full autonomous execution from idea to working code
| name | cancel |
| description | Stop active workflow and clean up state |
Stop the current OMK workflow and clean up state.
Trigger: $cancel or user says "stop", "abort"
Read Current State
skill-active.json for active workflowUpdate State
active: falsephase: "cancelled"cancelled_at timestampClean Up
Confirm
{
"skill": "ralph",
"active": true,
"phase": "executing"
}
{
"skill": "ralph",
"active": false,
"phase": "cancelled",
"cancelled_at": "2026-04-16T12:00:00Z",
"reason": "User requested cancellation"
}
Cancel Active Workflow:
[User] $cancel
[OMK] Cancelled ralph workflow (was in executing phase)
[OMK] State cleaned up. Ready for new workflow.
Cancel During Deep Interview:
[User] $cancel
[OMK] Cancelled deep-interview workflow
[OMK] Context snapshot saved to .omk/context/interview-2026-04-16.md
[OMK] You can resume later or start fresh.
Nothing Active:
[User] $cancel
[OMK] No active workflow to cancel.