ワンクリックで
ultrawork
Parallel execution engine for high-throughput task completion. Runs multiple droids simultaneously for independent tasks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Parallel execution engine for high-throughput task completion. Runs multiple droids simultaneously for independent tasks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Full autonomous execution from idea to working code. Handles the full lifecycle - requirements, planning, parallel implementation, QA cycling, and multi-perspective validation.
Web browser automation for testing and data extraction
Automated code cleanup for linting, formatting, and dead code removal
Self-improvement from development sessions
Automated documentation generation and maintenance
Token-efficient execution modifier. Optimizes droid routing to prefer simpler, cheaper tiers while maintaining quality.
| name | ultrawork |
| description | Parallel execution engine for high-throughput task completion. Runs multiple droids simultaneously for independent tasks. |
<Use_When>
<Do_Not_Use_When>
ralph instead (ralph includes ultrawork)autopilot insteadralph
</Do_Not_Use_When><What_You_MUST_Do>
<What_You_MUST_NOT_Do>
<Why_This_Exists> Sequential task execution wastes time when tasks are independent. Ultrawork enables firing multiple droids simultaneously, reducing total execution time. It is designed as a composable component that ralph and autopilot layer on top of. </Why_This_Exists>
<Execution_Policy>
<Parallel_Execution>
Factory Droid does NOT support native background execution (run_in_background: true). For TRUE parallel execution of independent tasks, use background-manager.py:
# Launch multiple droids in TRUE parallel (fire ALL before checking ANY)
python3 hooks/background-manager.py launch "Fix auth" "Fix auth module errors" executor-med "main"
python3 hooks/background-manager.py launch "Fix API" "Fix API route errors" executor-med "main"
python3 hooks/background-manager.py launch "Fix UI" "Fix frontend type errors" executor-med "main"
# Monitor all running tasks
python3 hooks/background-manager.py list
# Check specific task output when done
python3 hooks/background-manager.py output <task_id>
CRITICAL: Launch ALL independent tasks BEFORE checking any results. Do NOT launch-wait-launch sequentially. </Parallel_Execution>
1. **Classify tasks by independence**: Identify which can run in parallel vs which have dependencies 2. **Route to correct droids**: - Simple changes: executor-low - Standard implementation: executor-med (DEFAULT) - Complex work: executor-high or hephaestus 3. **Fire independent tasks simultaneously**: Launch all parallel-safe tasks at once via Task tool 4. **Run dependent tasks sequentially**: Wait for prerequisites before launching dependent work 5. **Verify when all tasks complete** (lightweight): - Build passes - Affected tests pass - No new errors introduced Three independent tasks fired simultaneously: ``` Task(subagent_type="executor-low", prompt="Add missing type export for Config interface") Task(subagent_type="executor-med", prompt="Implement the /api/users endpoint with validation") Task(subagent_type="executor-med", prompt="Add integration tests for the auth middleware") ``` Why good: Independent tasks at appropriate tiers, all fired at once. Sequential execution of independent work: ``` result1 = Task(executor-low, "Add type export") # wait... result2 = Task(executor-med, "Implement endpoint") # wait... result3 = Task(executor-med, "Add tests") # wait... ``` Why bad: Independent tasks serialized, wasting time. Wrong tier selection: ``` Task(subagent_type="hephaestus", prompt="Add a missing semicolon") ``` Why bad: Overkill for a trivial fix. Use executor-low instead.<Escalation_And_Stop_Conditions>
ralph<Final_Checklist>
ralph (persistence wrapper)
└── includes: ultrawork (this skill)
└── provides: parallel execution only
autopilot (autonomous execution)
└── includes: ralph
└── includes: ultrawork (this skill)
ecomode (modifier)
└── modifies: ultrawork's droid selection to prefer cheaper tiers
Ultrawork is the parallelism layer. Ralph adds persistence and verification. Autopilot adds the full lifecycle pipeline. Ecomode adjusts droid routing.