ワンクリックで
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.