smithery.ai

cancel-ralph

Stop ralph mode PRD processing. Use when user asks to 'cancel ralph', 'stop autonomous mode'. Halts background execution.

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version11.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,263 B
  • docs SUMMARY.md 47 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Cancel Ralph Mode

Stop ralph mode immediately by marking all PRD tasks as complete or deleting the PRD.

When to Use

  • User wants to stop autonomous processing
  • Tasks are stuck or going in wrong direction
  • Need to start fresh with different approach

Actions

  1. Check for PRD file at .deep/prd.json
  1. Option A: Mark all complete (preserves history)

``json // For each task, set: { "passes": true, "completedAt": "[timestamp]", "skippedReason": "Cancelled by user" } ``

  1. Option B: Delete PRD (clean slate)

``bash rm .deep/prd.json ``

  1. Clean up state files

- Update .deep/state.json to { "complete": true, "phase": "CANCELLED" }

  1. Confirm cancellation

`` Ralph mode cancelled. [N] tasks were pending. PRD file: [preserved/deleted] ``

Example

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.