Cancel active PRP Ralph loop
Terminates an active PRP Ralph loop and preserves current progress.
/plugin marketplace add Wirasm/PRPs-agentic-eng/plugin install prp-core@prp-marketplaceCheck if loop is active
test -f .claude/prp-ralph.state.md && echo "ACTIVE" || echo "NOT_FOUND"
If NOT_FOUND: Report "No active Ralph loop found."
If ACTIVE:
a. Read the state file to get current iteration:
head -20 .claude/prp-ralph.state.md
b. Extract iteration number from the YAML frontmatter
c. Remove the state file:
rm .claude/prp-ralph.state.md
d. Report:
## Ralph Loop Cancelled
**Was at**: Iteration {N}
**Plan**: {plan_path}
The loop has been stopped. Your work so far is preserved in:
- Modified files (check `git status`)
- Git commits (if any were made)
To resume later:
- Run `/prp-ralph {plan_path}` to start fresh
- Or continue manually with `/prp-implement {plan_path}`