ultrawork

ultrawork

热门

Activate maximum performance mode with parallel agent orchestration for high-throughput task completion

2.9KStar
244Fork
更新于 1/27/2026
SKILL.md
readonly只读
name
ultrawork
description

Activate maximum performance mode with parallel agent orchestration for high-throughput task completion

Ultrawork Skill

Activates maximum performance mode with parallel agent orchestration.

When Activated

This skill enhances Claude's capabilities by:

  1. Parallel Execution: Running multiple agents simultaneously for independent tasks
  2. Aggressive Delegation: Routing tasks to specialist agents immediately
  3. Background Operations: Using run_in_background: true for long operations
  4. Persistence Enforcement: Never stopping until all tasks are verified complete
  5. Smart Model Routing: Using tiered agents to save tokens

Smart Model Routing (CRITICAL - SAVE TOKENS)

Choose tier based on task complexity: LOW (haiku) → MEDIUM (sonnet) → HIGH (opus)

Available Agents by Tier

Domain LOW (Haiku) MEDIUM (Sonnet) HIGH (Opus)
Analysis architect-low architect-medium architect
Execution executor-low executor executor-high
Search explore explore-medium -
Research researcher-low researcher -
Frontend designer-low designer designer-high
Docs writer - -
Visual - vision -
Planning - - planner, critic, analyst
Testing - qa-tester -
Security security-reviewer-low - security-reviewer
Build build-fixer-low build-fixer -
TDD tdd-guide-low tdd-guide -
Code Review code-reviewer-low - code-reviewer

Tier Selection Guide

Task Complexity Tier Examples
Simple lookups LOW "What does this function return?", "Find where X is defined"
Standard work MEDIUM "Add error handling", "Implement this feature"
Complex analysis HIGH "Debug this race condition", "Refactor auth module across 5 files"

Routing Examples

CRITICAL: Always pass model parameter explicitly - Claude Code does NOT auto-apply models from agent definitions!

// Simple question → LOW tier (saves tokens!)
Task(subagent_type="oh-my-claudecode:architect-low", model="haiku", prompt="What does this function return?")

// Standard implementation → MEDIUM tier
Task(subagent_type="oh-my-claudecode:executor", model="sonnet", prompt="Add error handling to login")

// Complex refactoring → HIGH tier
Task(subagent_type="oh-my-claudecode:executor-high", model="opus", prompt="Refactor auth module using JWT across 5 files")

// Quick file lookup → LOW tier
Task(subagent_type="oh-my-claudecode:explore", model="haiku", prompt="Find where UserService is defined")

// Thorough search → MEDIUM tier
Task(subagent_type="oh-my-claudecode:explore-medium", model="sonnet", prompt="Find all authentication patterns in the codebase")

Background Execution Rules

Run in Background (set run_in_background: true):

  • Package installation: npm install, pip install, cargo build
  • Build processes: npm run build, make, tsc
  • Test suites: npm test, pytest, cargo test
  • Docker operations: docker build, docker pull

Run Blocking (foreground):

  • Quick status checks: git status, ls, pwd
  • File reads, edits
  • Simple commands

Verification Checklist

Before stopping, verify:

  • [ ] TODO LIST: Zero pending/in_progress tasks
  • [ ] FUNCTIONALITY: All requested features work
  • [ ] TESTS: All tests pass (if applicable)
  • [ ] ERRORS: Zero unaddressed errors

If ANY checkbox is unchecked, CONTINUE WORKING.

STATE CLEANUP ON COMPLETION

IMPORTANT: Delete state files on completion - do NOT just set active: false

When all verification passes and work is complete:

# Delete ultrawork state files
rm -f .omc/state/ultrawork-state.json
rm -f ~/.claude/ultrawork-state.json

This ensures clean state for future sessions. Stale state files with active: false should not be left behind.

You Might Also Like

Related Skills

verify

verify

243K

Use when you want to validate changes before committing, or when you need to check all React contribution requirements.

facebook avatarfacebook
获取
test

test

243K

Use when you need to run tests for React core. Supports source, www, stable, and experimental channels.

facebook avatarfacebook
获取

Use when feature flag tests fail, flags need updating, understanding @gate pragmas, debugging channel-specific test failures, or adding new flags to React.

facebook avatarfacebook
获取

Use when adding new error messages to React, or seeing "unknown error code" warnings.

facebook avatarfacebook
获取
flow

flow

243K

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

facebook avatarfacebook
获取
flags

flags

243K

Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.

facebook avatarfacebook
获取