スキル一覧に戻る
andrey-moor

cancel-ralph

by andrey-moor

MCP server for iterative AI planning loops - planner and reviewer agents refine plans until approved

1🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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:

  1. Check for active loop:

    • Look for .claude/ralph-loop.local.md
  2. If active:

    • Read current state (mode, iteration count)
    • Delete the state file
    • Confirm cancellation
  3. 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-loop to start a new loop

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です