.github/skills/cancel-ralph/SKILL.md
Cancel an active ralph loop
npx skillsauth add the-rabak/compound-engineering-plugin cancel-ralphInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Check for and cancel an active ralph loop.
STATE_FILE=".github/ralph-loop.local.md"
if [ -f "$STATE_FILE" ]; then
ITERATION=$(grep "^iteration:" "$STATE_FILE" | sed 's/^iteration: *//')
MAX=$(grep "^max_iterations:" "$STATE_FILE" | sed 's/^max_iterations: *//')
echo "Cancelling ralph loop at iteration ${ITERATION}/${MAX}"
rm -f "$STATE_FILE"
echo "Ralph loop cancelled."
else
echo "No active ralph loop found."
fi
Run the above script via Bash tool to cancel the loop.
development
Mutates a single field or content region of an existing self-contained HTML artifact in place (island-first, no-added-facts, injection-safe) without regenerating the document from scratch. Invoked by a workflow command whenever it needs to back-write into an artifact it already composed -- e.g. a ref/status update, or a content rewrite that must re-project the affected view -- never by the user directly.
development
Composes a self-contained, interactive HTML artifact (island-first, single file, token-layer themed, injection-safe) from a workflow command's structured plan payload. Invoked by a workflow command at its artifact-write step -- currently `/workflows:plan` -- never by the user directly.
development
Mutates a single field or content region of an existing self-contained HTML artifact in place (island-first, no-added-facts, injection-safe) without regenerating the document from scratch. Invoked by a workflow command whenever it needs to back-write into an artifact it already composed -- e.g. a ref/status update, or a content rewrite that must re-project the affected view -- never by the user directly.
development
Composes a self-contained, interactive HTML artifact (island-first, single file, token-layer themed, injection-safe) from a workflow command's structured plan payload. Invoked by a workflow command at its artifact-write step -- currently `/workflows:plan` -- never by the user directly.