在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用cancel
星标6
分支1
更新时间2026年4月16日 07:23
Stop active workflow and clean up state
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Stop active workflow and clean up state
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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
基于 SOC 职业分类
| 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.