/ralph-abort
Abort a running agent loop and optionally revert changes
$ npx -y skills add jmagly/aiwg --skill ralph-abort --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/ralph-abort
Context preview
The summary Claude sees to decide when to auto-load this skill.
Abort a running agent loop and optionally revert changes
SKILL.md
ralph-abort.SKILL.mdnamespace: aiwg
name: ralph-abort
platforms: [all]
description: Abort a running agent loop and optionally revert changes
commandHint:
argumentHint: '[--keep-changes] [--revert] [--force --interactive --guidance "text"]'
allowedTools: "Read, Write, Bash"
model: haiku
category: automation
modelRole: efficiency
modelTier: economy
Al Abort
Abort a running or paused agent loop.
Usage
/ralph-abort # Abort, keep changes
/ralph-abort --revert # Abort and revert all changes
/ralph-abort --force # Abort even if no active loop
Parameters
--keep-changes (default)
Stop the loop but keep all file changes made during iterations.
--revert
Revert all changes made during the agent loop using git:
- Identify commits made during loop (prefix: `ralph: iteration`)
- Reset to commit before loop started
- **Warning**: This discards work
--force
Abort even if state indicates no active loop (for cleanup).
Your Actions
Standard Abort
1. Read `.aiwg/ralph/current-loop.json` 2. Verify there's an active loop 3. Mark loop as aborted 4. Generate partial completion report 5. Confirm to user
**Output**:
Agent Loop: ABORTED
Task: {task}
Iterations completed: {N}
Duration: {time}
Changes have been kept. To revert:
git reset --hard HEAD~{N}
Partial report: .aiwg/ralph/completion-{timestamp}.mdWith --revert
1. Read loop state 2. Find all `ralph: iteration` commits from this loop 3. Confirm with user before reverting 4. Reset git to pre-loop state 5. Clean up state files
**Confirmation prompt**:
This will revert {N} commits:
- ralph: iteration 1 - initial attempt
- ralph: iteration 2 - fixed auth
- ralph: iteration 3 - in progress
Files to be reverted:
- src/auth.ts
- test/auth.test.ts
Type 'yes' to confirm revert:**After revert**:
Agent Loop: ABORTED + REVERTED
Reverted {N} commits.
Working directory restored to pre-loop state.
State cleaned: .aiwg/ralph/current-loop.json archivedError Handling
**No active loop**:
No active agent loop to abort.
Use --force to clean up stale state files if needed.
**Git not available**:
Git not available for --revert option.
Loop aborted, but changes cannot be reverted automatically.
Manual cleanup may be needed.
**Dirty working directory (for --revert)**:
Cannot revert: uncommitted changes exist.
Options:
1. Commit or stash changes first
2. Use /ralph-abort without --revert to keep current state
State Changes
After abort:
- `current-loop.json` marked with `status: "aborted"`
- `active: false`
- Completion report generated with partial results
- Loop can no longer be resumed
Related
- `/ralph-status` - Check loop status before aborting
- `/ralph-resume` - Continue instead of abort
References
- @$AIWG_ROOT/agentic/code/addons/ralph/README.md — Ralph addon overview and loop executor documentation
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/human-authorization.md — Authorization rules for irreversible actions like revert
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference for ralph-abort and related commands
- @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/README.md — SDLC framework context
Read more
namespace: aiwg name: ralph-abort platforms: [all] description: Abort a running agent loop and optionally revert changes commandHint: argumentHint: '[--keep-changes] [--revert] [--force --interactive --guidance "text"]' allowedTools: "Read, Write, Bash" model: haiku category: automation modelRole: efficiency modelTier: economy
Al Abort
Abort a running or paused agent loop.
Usage
/ralph-abort # Abort, keep changes /ralph-abort --revert # Abort and revert all changes /ralph-abort --force # Abort even if no active loop
Parameters
--keep-changes (default)
Stop the loop but keep all file changes made during iterations.
--revert
Revert all changes made during the agent loop using git:
- Identify commits made during loop (prefix: `ralph: iteration`)
- Reset to commit before loop started
- **Warning**: This discards work
--force
Abort even if state indicates no active loop (for cleanup).
Your Actions
Standard Abort
1. Read `.aiwg/ralph/current-loop.json` 2. Verify there's an active loop 3. Mark loop as aborted 4. Generate partial completion report 5. Confirm to user
**Output**:
Agent Loop: ABORTED
Task: {task}
Iterations completed: {N}
Duration: {time}
Changes have been kept. To revert:
git reset --hard HEAD~{N}
Partial report: .aiwg/ralph/completion-{timestamp}.mdWith --revert
1. Read loop state 2. Find all `ralph: iteration` commits from this loop 3. Confirm with user before reverting 4. Reset git to pre-loop state 5. Clean up state files
**Confirmation prompt**:
This will revert {N} commits:
- ralph: iteration 1 - initial attempt
- ralph: iteration 2 - fixed auth
- ralph: iteration 3 - in progress
Files to be reverted:
- src/auth.ts
- test/auth.test.ts
Type 'yes' to confirm revert:**After revert**:
Agent Loop: ABORTED + REVERTED
Reverted {N} commits.
Working directory restored to pre-loop state.
State cleaned: .aiwg/ralph/current-loop.json archivedError Handling
**No active loop**:
No active agent loop to abort. Use --force to clean up stale state files if needed.
**Git not available**:
Git not available for --revert option. Loop aborted, but changes cannot be reverted automatically. Manual cleanup may be needed.
**Dirty working directory (for --revert)**:
Cannot revert: uncommitted changes exist. Options: 1. Commit or stash changes first 2. Use /ralph-abort without --revert to keep current state
State Changes
After abort:
- `current-loop.json` marked with `status: "aborted"`
- `active: false`
- Completion report generated with partial results
- Loop can no longer be resumed
Related
- `/ralph-status` - Check loop status before aborting
- `/ralph-resume` - Continue instead of abort
References
- @$AIWG_ROOT/agentic/code/addons/ralph/README.md — Ralph addon overview and loop executor documentation
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/human-authorization.md — Authorization rules for irreversible actions like revert
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference for ralph-abort and related commands
- @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/README.md — SDLC framework context
Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms 200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace.
Repo: jmagly/aiwg
Other skills on aiwg.
- /agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Open skill - /agent-loop
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Open skill - /auto-test-execution
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Open skill - /cross-task-learner
Enable agent loops to learn from similar past tasks and share patterns across loops
Open skill - /debug-memory
Query and manage the executable feedback debug memory
Open skill - /execute-feedback
Execute tests on generated code and iterate until passing
Open skill

