Claude-skill-registry-data mission-ralph
Launch ralph.sh in background. Best for large features (10+ tasks). Automatic execution until completion.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/mission-ralph" ~/.claude/skills/majiayu000-claude-skill-registry-data-mission-ralph && rm -rf "$T"
manifest:
data/mission-ralph/SKILL.mdsource content
/mission-ralph - Automatic Background Execution
Launch the Ralph loop in background. Runs automatically until all tasks complete or a critical blocker halts execution.
The Process
- Validate feature - Check feature exists and has tasks
- Activate feature - Run
bd update FEATURE_ID --status in_progress - Ask launch mode - "Start Ralph in mprocs (visible) or background (invisible)?"
- Launch Ralph:
- If background: Run the script directly
- If visible: Print the command for user to run in a new terminal window
- Inform user - Tell them how to monitor progress
- Exit - HOUSTON's job is done, Ralph takes over
Launch Command
bash skills/mission-ralph/scripts/ralph.sh FEATURE_ID &
Or with visible mode (mprocs TUI):
bash skills/mission-ralph/scripts/ralph.sh FEATURE_ID --visible
What Ralph Does
Ralph spawns fresh Pods for each task in a loop:
- Get next ready task via
bd ready - Spawn Pod (Scout -> Worker -> Inspector -> Analyst -> Airlock)
- Handle result (complete, retry, or create blocking bug)
- Continue until no tasks remain or critical halt
Each Pod includes a Scout phase that gathers codebase context before Worker executes.
User Communication
If background mode:
HOUSTON: Ralph loop launched for feature FEATURE_ID. Ralph runs automatically in background. Check progress: /capcom You'll be notified on: - Feature completion - Critical blocker (requires intervention) Safe to close this session.
If visible mode:
HOUSTON: Run this command in a new terminal window: bash skills/mission-ralph/scripts/ralph.sh FEATURE_ID --visible This opens mprocs with live task progress. Check status anytime: /capcom
Monitoring
- Check feature status and task progress/capcom
- See all tasksbd list --parent FEATURE_ID
- See what's next in queuebd ready
- See task hierarchy and statusbd dep tree FEATURE_ID
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Feature complete |
| 1 | Critical blocker - check |
| 2 | Configuration error |