From vibe-to-prod-skills
**Allows Claude to directly start Ralph-Wiggum autonomous loops without user commands.**
How this skill is triggered — by the user, by Claude, or both
Slash command
/vibe-to-prod-skills:ralph-invokeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Allows Claude to directly start Ralph-Wiggum autonomous loops without user commands.**
Allows Claude to directly start Ralph-Wiggum autonomous loops without user commands.
The ralph-wiggum plugin must be installed and enabled:
/plugin install ralph-wiggum@claude-code-plugins
/plugin enable ralph-wiggum@claude-code-plugins
Use this skill when:
Run this bash command:
"$HOME/.claude/plugins/cache/claude-code-plugins/ralph-wiggum/1.0.0/scripts/setup-ralph-loop.sh" \
"<TASK_DESCRIPTION>" \
--max-iterations <N> \
--completion-promise "<PROMISE_TEXT>"
| Parameter | Required | Default | Description |
|---|---|---|---|
| TASK_DESCRIPTION | Yes | - | The task to work on |
| --max-iterations | Recommended | unlimited | Safety limit (use 20-100) |
| --completion-promise | Recommended | null | Text to output when truly done |
Simple task:
"$HOME/.claude/plugins/cache/claude-code-plugins/ralph-wiggum/1.0.0/scripts/setup-ralph-loop.sh" \
"Fix all TypeScript type errors" \
--max-iterations 50 \
--completion-promise "ALL_ERRORS_FIXED"
Complex refactor:
"$HOME/.claude/plugins/cache/claude-code-plugins/ralph-wiggum/1.0.0/scripts/setup-ralph-loop.sh" \
"Migrate all API handlers to the new v2 pattern" \
--max-iterations 100 \
--completion-promise "MIGRATION_COMPLETE"
.claude/ralph-loop.local.md<promise>PROMISE_TEXT</promise>When the task is genuinely complete, output the completion promise in XML tags:
<promise>ALL_ERRORS_FIXED</promise>
CRITICAL RULES:
If needed, cancel with:
rm .claude/ralph-loop.local.md
Or use: /ralph-wiggum:cancel-ralph
head -10 .claude/ralph-loop.local.mdAutonomous loops consume tokens rapidly. A 50-iteration loop can cost $50-100+ in API usage. Always use --max-iterations as a safety net.
The official ralph-wiggum plugin requires users to run /ralph-loop commands. This skill enables Claude to invoke loops directly, enabling:
npx claudepluginhub shimyth/vibe-to-prod --plugin vibe-to-prod-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.