From vibe-to-prod-skills
**Allows Claude to directly start Ralph-Wiggum autonomous loops without user commands.**
npx claudepluginhub shimyth/vibe-to-prod --plugin vibe-to-prod-skillsThis skill uses the workspace's default tool permissions.
**Allows Claude to directly start Ralph-Wiggum autonomous loops without user commands.**
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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: