← Back to list

cancel-ralph
by andrey-moor
MCP server for iterative AI planning loops - planner and reviewer agents refine plans until approved
⭐ 1🍴 0📅 Jan 21, 2026
SKILL.md
name: cancel-ralph description: Cancel active Ralph Loop detection_patterns:
- "cancel ralph"
- "stop ralph loop"
- "end ralph loop"
- "abort ralph"
- "exit ralph loop" auto_invoke: false
Cancel Ralph Skill
Cancel an active Ralph Loop session.
Detection Patterns
This skill activates when the user says things like:
- "cancel ralph"
- "stop ralph loop"
- "end the ralph loop"
- "abort ralph loop"
Behavior
When activated:
-
Check for active loop:
- Look for
.claude/ralph-loop.local.md
- Look for
-
If active:
- Read current state (mode, iteration count)
- Delete the state file
- Confirm cancellation
-
If not active:
- Inform user no loop is running
Implementation
if [ -f ".claude/ralph-loop.local.md" ]; then
rm .claude/ralph-loop.local.md
echo "Ralph Loop cancelled."
else
echo "No active Ralph Loop found."
fi
Notes
- Cancellation is immediate
- Work in progress is preserved
- Use
/ralph-loopto start a new loop
Score
Total Score
70/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon