$npx -y skills add jmstar85/oh-my-githubcopilot --skill ultraworkParallel execution engine for high-throughput task completion. Activate when user says: ulw, ultrawork, parallel execution, run these in parallel.
| 1 | # Ultrawork |
| 2 | |
| 3 | Parallel execution engine that runs multiple agents simultaneously for independent tasks. Component mode -- provides parallelism and smart model routing but not persistence or verification loops. |
| 4 | |
| 5 | ## When to Use |
| 6 | - Multiple independent tasks can run simultaneously |
| 7 | - Need to delegate work to multiple agents at once |
| 8 | |
| 9 | ## When NOT to Use |
| 10 | - Need guaranteed completion with verification → use `/ralph` (includes ultrawork) |
| 11 | - Full autonomous pipeline → use `/omg-autopilot` (includes ralph which includes ultrawork) |
| 12 | - Only one sequential task → delegate directly to @executor |
| 13 | |
| 14 | ## Relationship |
| 15 | ``` |
| 16 | ralph (persistence wrapper) |
| 17 | └── includes: ultrawork (this skill) |
| 18 | |
| 19 | omg-autopilot (autonomous execution) |
| 20 | └── includes: ralph |
| 21 | └── includes: ultrawork (this skill) |
| 22 | ``` |
| 23 | |
| 24 | ## Steps |
| 25 | 1. Classify tasks by independence: parallel vs dependent |
| 26 | 2. Fire independent tasks simultaneously via @executor |
| 27 | 3. Run dependent tasks sequentially after prerequisites |
| 28 | 4. Background long operations (builds, installs, tests) |
| 29 | 5. Verify when all tasks complete (build passes, tests pass) |
| 30 | |
| 31 | ## Execution Policy |
| 32 | - Fire ALL independent tasks simultaneously |
| 33 | - Run builds/tests in background |
| 34 | - Match task complexity to appropriate model routing |