원클릭으로
cancel-ralph
Stop ralph mode PRD processing. Use when user asks to 'cancel ralph', 'stop autonomous mode'. Halts background execution.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stop ralph mode PRD processing. Use when user asks to 'cancel ralph', 'stop autonomous mode'. Halts background execution.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Check deep loop progress and session state. Use when user asks 'what status', 'where are we', 'deep status'. Shows phase, tasks, and iteration count.
Cancel active deep loop session. Use when user asks to 'stop deep', 'cancel deep', 'abort loop'. Cleans up state files.
Add tasks to deep loop queue (.deep/tasks.md). Use when user asks to 'add task', 'queue this', 'deep add'. Interactively gathers task details.
Clean up stale deep loop files. Use when user asks to 'clean up', 'remove .deep directories'. Removes old session artifacts.
Process queued tasks from .deep/tasks.md. Use when user asks to 'execute queue', 'process tasks', 'run queued work'. Supports multi-session claim-based coordination with git conflict handling.
Coordinate frontend+backend development with shared types. Use when building full-stack features, 'connect frontend to API', or 'end-to-end'. Includes E2E testing.
| name | cancel-ralph |
| description | Stop ralph mode PRD processing. Use when user asks to 'cancel ralph', 'stop autonomous mode'. Halts background execution. |
| version | 11.0.0 |
Stop ralph mode immediately by marking all PRD tasks as complete or deleting the PRD.
Check for PRD file at .deep/prd.json
Option A: Mark all complete (preserves history)
// For each task, set:
{
"passes": true,
"completedAt": "[timestamp]",
"skippedReason": "Cancelled by user"
}
Option B: Delete PRD (clean slate)
rm .deep/prd.json
Clean up state files
.deep/state.json to { "complete": true, "phase": "CANCELLED" }Confirm cancellation
Ralph mode cancelled. [N] tasks were pending.
PRD file: [preserved/deleted]
User: /cancel-ralph
Response:
Cancelling ralph mode...
Found 5 tasks in PRD:
- 2 completed
- 3 pending (now marked as skipped)
PRD preserved at .deep/prd.json with skip reasons.
State reset. You can now exit cleanly.