OMC
Oh My ClaudeCodev4.12.0

Ultrawork

Parallel execution engine that runs independent tasks simultaneously

Overview

Ultrawork is an execution engine that runs multiple agents concurrently to handle independent tasks in parallel. It is designed as a component rather than a standalone mode — it provides parallel execution and smart model routing, but no persistence or verification loop.

Ralph and Autopilot use Ultrawork internally.

Usage

/oh-my-claudecode:ultrawork "implement user authentication with OAuth"

Also activated via magic keywords.

ultrawork implement the API endpoints
ulw add validation to all forms

How It Works

Task Classification

Distinguishes independent tasks from tasks with dependencies.

Model Routing

Selects the appropriate model tier based on task complexity.

ComplexityModelUse Case
Simple lookup / definitionHaikuAdd type exports, fix missing imports
Standard implementationSonnetImplement API endpoints, write tests
Complex analysis / refactoringOpusImplement OAuth flow, architecture refactoring

Parallel Execution

Independent tasks run simultaneously.

Task 1 (Haiku):  Add type exports             ─┐
Task 2 (Sonnet): Implement API endpoints       ─┤── concurrent
Task 3 (Sonnet): Auth middleware tests         ─┘

Tasks with dependencies run after their prerequisites complete. Long-running tasks like builds, installs, and tests run in the background.

Relationship to Other Modes

autopilot (autonomous execution)
 └── ralph (continuous loop)
      └── ultrawork (parallel execution) ← this skill
  • Use ultrawork alone: when you only need parallel execution without persistence or verification
  • Prefer ralph: when persistence and verification are needed (ralph includes ultrawork)
  • Prefer autopilot: when the full lifecycle is needed
  • ralph - adds persistence and verification on top of ultrawork
  • autopilot - full autonomous pipeline that includes ralph

Reference

ItemValue
Invoke/oh-my-claudecode:ultrawork
Magic Keywordsultrawork, ulw
CategoryWorkflow
State File.omc/state/ultrawork-state.json

On this page