Cancel Ralph

Cancel active Ralph Loop Use when this capability is needed.

tomevault-io Updated

File contents

Cancel Ralph

Stop an active Ralph Loop before completion.

How to Use

When you invoke this skill:

  1. First, check if a loop is active:
test -f .opencode/ralph-loop.local.md && echo "Loop is active" || echo "No active loop"
  1. If active, read the current iteration count:
grep '^iteration:' .opencode/ralph-loop.local.md
  1. Delete the state file to stop the loop:
rm -f .opencode/ralph-loop.local.md
  1. Inform the user of the cancellation and which iteration was reached.

When to Use

Use this command when:

  • The task requirements have changed
  • You want to restart with different parameters
  • The loop appears stuck and you want manual control
  • You need to work on something else

Note: Prefer completing tasks properly with <promise>DONE</promise> when possible.


Source: charfeng1/opencode-ralph-loop — distributed by TomeVault.

tomevault-io/skills-registry/tree/main/charfeng1--opencode-ralph-loop--opencode-ralph-loop commit 244ac1fea7

Frequently asked questions

npx skillmds@latest add tomevault-io/cancel-ralph