Agent Skills
› sediman-agent/OpenSkynet
› cancel-ralph
cancel-ralph
GitHub用于取消正在运行的Ralph循环。检查状态文件是否存在,若存在则读取迭代次数并删除相关文件,最后返回确认信息;若不存在则提示无活跃循环。
Trigger Scenarios
用户想要停止或取消当前活跃的Ralph循环
用户请求中止正在进行的Ralph任务
Install
npx skills add sediman-agent/OpenSkynet --skill cancel-ralph -g -y
SKILL.md
Frontmatter
{
"name": "cancel-ralph",
"description": "Cancel an active Ralph Loop. Use when the user wants to stop, cancel, or abort a running ralph loop."
}
Cancel Ralph
Trigger
The user wants to cancel or stop an active Ralph loop.
Workflow
-
Check if
.cursor/ralph/scratchpad.mdexists. -
If it does not exist: Tell the user "No active Ralph loop found."
-
If it exists:
- Read
.cursor/ralph/scratchpad.mdto get the current iteration from theiteration:field. - Remove the state file and any done flag:
rm -rf .cursor/ralph - Report: "Cancelled Ralph loop (was at iteration N)."
- Read
Output
A short confirmation with the iteration count, or a message that no loop was active.
Version History
- c9d8953 Current 2026-07-05 19:54


