Ultrawork — параллельный движок задач с маршрутизацией по моделям
★ 8.5 · orchestration
ultrawork is a Claude Code skill that implements a parallel execution engine for independent tasks, routing each to the appropriate model tier to minimize total execution time and token costs. All independent tasks fire simultaneously — the skill builds a dependency-aware task graph for non-trivial work, then assigns simple lookups to Haiku, standard implementation to Sonnet, and complex analysis or refactoring to Opus. Long-running operations such as package installs, builds, and test suites run via `run_in_background: true`, while quick checks and file reads execute in the foreground. ultrawork is a composable component, not a standalone mode — it does not provide session persistence or verification loops; those are handled by `ralph` and `autopilot`, both of which layer on top of it. Ideal for developers who need to parallelize a batch of independent coding tasks without manually orchestrating agent dispatch order.
- #parallel-execution
- #task-distribution
- #workload-management
- #performance-optimization
- #concurrent-processing