automation/autopoiesis-mcp/skills/spawn-ralph/SKILL.md
Spawn isolated Ralph agents (claude -p) for parallel subtasks
npx skillsauth add sancovp/sanctuary-revolution-alpha spawn-ralphInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Spawn isolated Ralph agents (claude -p) for parallel subtasks. Each Ralph runs in its own process with fresh context.
cd /path/to/workdir && claude -p "Your task description here"
Use Bash with run_in_background: true:
Bash(command="cd /workdir && claude -p 'Implement feature X'", run_in_background=true)
Spawn multiple in ONE message with parallel Bash calls:
Bash(command="cd /dir1 && claude -p 'Task 1: Research API patterns'", run_in_background=true)
Bash(command="cd /dir2 && claude -p 'Task 2: Write unit tests'", run_in_background=true)
Bash(command="cd /dir3 && claude -p 'Task 3: Update documentation'", run_in_background=true)
claude -p "task" --allowedTools "Bash,Read,Write,Glob,Grep"
claude -p "task" --disallowedTools "Edit,WebSearch"
Use TaskOutput(task_id="...", block=false) with the ID from background Bash.
tools
Crystal Ball ontological navigation — composing, folding, and scrying spaces
development
Compile tasks through Map — queue-driven enrich/instance loop. Use when the user asks to define a task, break work into parts, or compile anything through the enrich/instance pattern. Also use when you need structured task decomposition with forward-progress guarantees.
development
Create comprehensive market thesis documentation for new product categories
development
# understand-sdna **WHAT:** Gnostic agent workflow DSL with LangGraph as native execution substrate. Ariadne (threading) + Poimandres (generation) = SDNA spiral. **WHEN:** Building agent workflows with typed composition, context threading, human-in-the-loop patterns, or LangGraph integration. **HOW:** Use the decision tree below, then read the relevant resources. --- ## Decision Tree: What to Build ``` Is this continuous improvement / optimization loop? ├── YES → SDNA^F (SDNAFlowchain) │