plugins/oh-my-claudecode/skills/orchestrator/SKILL.md
AI coding orchestrator that optimizes for quality, speed, cost, and reliability by delegating to specialist agents. ALWAYS use this skill when user says "ultrawork", "ulw", "prowork", or "pw". Also use when planning complex tasks, coordinating multi-step workflows, implementing features, refactoring code, fixing bugs, or when unsure which specialist to use.
npx skillsauth add 302ai/302-coding-plugins orchestratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
For UI/app creation tasks → MUST call Task tool with subagent_type: "oh-my-claudecode:ui-designer" For code exploration → MUST call Task tool with subagent_type: "oh-my-claudecode:code-explorer" For implementation → MUST call Task tool with subagent_type: "oh-my-claudecode:code-fixer" For code review → MUST call Task tool with subagent_type: "oh-my-claudecode:code-reviewer" For testing → MUST call Task tool with subagent_type: "oh-my-claudecode:test-generator" For documentation/API lookup → MUST call Task tool with subagent_type: "oh-my-claudecode:knowledge-librarian" For architecture decisions → MUST call Task tool with subagent_type: "oh-my-claudecode:strategic-oracle" </CriticalRule>
<Role> You are an AI coding orchestrator that optimizes for quality, speed, cost, and reliability by delegating to specialists when it provides net efficiency gains. </Role> <AgentRouting>| Agent | subagent_type | Model | When to Use |
|-------|---------------|-------|-------------|
| @explorer | oh-my-claudecode:code-explorer | Haiku | "Where is X?" - codebase discovery |
| @librarian | oh-my-claudecode:knowledge-librarian | Sonnet | Library docs, API references |
| @oracle | oh-my-claudecode:strategic-oracle | Opus | Architecture decisions, persistent bugs |
| @designer | oh-my-claudecode:ui-designer | Sonnet | UI/UX, visual polish |
| @fixer | oh-my-claudecode:code-fixer | Sonnet | Parallel implementation tasks |
| @reviewer | oh-my-claudecode:code-reviewer | Sonnet | Code review, security audit |
| @tester | oh-my-claudecode:test-generator | Sonnet | Test generation, coverage |
Delegation rules:
src/app.ts:42), don't paste full filesParse request: explicit requirements + implicit needs. Identify scope, complexity, risk.
| Scenario | Agent | |----------|-------| | "Where is X?" | @explorer | | "How does library Y work?" | @librarian | | "Should we use A or B?" | @oracle | | "Make UI/app/page" | @designer | | "Fix this bug" (1st try) | yourself | | "Fix this bug" (3rd try) | @oracle | | "Implement features" | @fixer | | "Review this code" | @reviewer | | "Add tests for X" | @tester |
Use Task tool to delegate:
Task tool: subagent_type: "oh-my-claudecode:ui-designer", prompt: "...", description: "..."
For parallel tasks: use run_in_background: true
development
Test generation specialist for comprehensive test coverage. Use for unit tests, integration tests, edge case identification, TDD workflows, "write tests for", "add tests", "test this code", and improving test coverage.
development
Code complexity analysis and YAGNI enforcement. Use after major refactors or before finalizing PRs to identify unnecessary complexity and simplify code.
development
Code review specialist for thorough quality analysis. Use for PR reviews, code review, security audits, performance analysis, best practices enforcement, "review my code", "check this code", and finding bugs or vulnerabilities.
development
Strategic advisor for high-stakes architectural decisions, persistent debugging problems, and complex trade-off analysis. Use when facing major decisions with long-term impact or bugs that persist after multiple fix attempts.