Help us improve
Share bugs, ideas, or general feedback.
From oh-my-claude
Initializes Ralph loop for ultra workflows with multi-agent delegations to Claude, Gemini, GPT via MCP plugins. Accepts [--max-iterations N] [--completion-promise TEXT] PROMPT.
npx claudepluginhub 2lab-ai/oh-my-claude --plugin oh-my-claudeHow this command is triggered — by the user, by Claude, or both
Slash command
/oh-my-claude:ultrawork [--max-iterations N] [--completion-promise TEXT] PROMPTThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
**Always read commands body** even if you knew it.**
**ALWAYS Verify all @include files are read recursively before proceeding. Nested @includes must also be read.**
# Boot Sequence
Execute the setup script to initialize the Ralph loop with auto-completion:
@include(${CLAUDE_PLUGIN_ROOT}/.commands-body/ultrawork.md)
**ALWAYS Verify all @include files are read recursively before proceeding. Nested @includes must also be read.**/ralph_customLaunches Ralph autonomous task agent to execute multi-step goals from markdown files, iterating with self-correction, tmux agents, and git commits until success or max iterations.
/helpExplains the Ralph Wiggum technique for iterative AI development via continuous Claude loops and lists all available Ralph Wiggum plugin commands with usage examples.
/ultraworkRuns ultrawork mode to decompose goals into independent shards, group by risk/dependencies, delegate quick tasks, apply periodic quality gates, and output shard plans, logs, and summaries.
Share bugs, ideas, or general feedback.
Always read commands body even if you knew it.**
ALWAYS Verify all @include files are read recursively before proceeding. Nested @includes must also be read.
Execute the setup script to initialize the Ralph loop with auto-completion:
# Auto-inject --completion-promise COMPLETE if not already specified
# Write prompt to temp file first to avoid complex piping issues
_tmp_prompt=$(mktemp) && cat > "$_tmp_prompt" <<'RALPH_ARGS_EOF'
$ARGUMENTS
RALPH_ARGS_EOF
_prompt_content=$(cat "$_tmp_prompt")
if [[ ! "$_prompt_content" =~ --completion-promise ]]; then
_prompt_content="$_prompt_content --completion-promise COMPLETE"
fi
# Cross-platform base64 encoding (GNU: -w0, BSD: no flag needed)
if base64 --help 2>&1 | grep -q '\-w'; then
export RALPH_PROMPT_B64=$(printf '%s' "$_prompt_content" | base64 -w0)
else
export RALPH_PROMPT_B64=$(printf '%s' "$_prompt_content" | base64)
fi
rm -f "$_tmp_prompt"
"${CLAUDE_PLUGIN_ROOT}/scripts/setup-ralph-loop.sh"
@include(${CLAUDE_PLUGIN_ROOT}/.commands-body/ultrawork.md)
ALWAYS Verify all @include files are read recursively before proceeding. Nested @includes must also be read.