A powerful multi-agent orchestration plugin for Claude Code
Inspired by oh-my-opencode, this plugin brings a team of specialized AI agents to Claude Code, enabling efficient task delegation, parallel execution, and domain-specific expertise.
- Magic Word Activation: Say
ultraworkorulwto activate full orchestration - 9 Specialized Skills: Auto-invoked based on context
- 7 Custom Agents: Optimized subagent configurations
- Smart Delegation: Automatic task routing based on expertise
- Parallel Execution: Run multiple agents simultaneously
- Model Selection: Haiku/Sonnet/Opus based on task complexity
# Add the marketplace
/plugin marketplace add 302ai/302-coding-plugins
# Install the plugin
/plugin install oh-my-claudecode@302ai-plugins# Clone the repository
git clone https://github.com/302ai/302-coding-plugins.git
# Run Claude Code with the plugin
claude --plugin-dir ./302-coding-plugins/plugins/oh-my-claudecodeJust include ultrawork (or ulw) in your prompt to activate full orchestration:
ulw help me refactor the authentication module
This automatically activates the orchestrator which will:
- Analyze your request
- Delegate to appropriate specialists (@explorer, @librarian, @oracle, etc.)
- Coordinate parallel execution when beneficial
- Integrate results
Skills are automatically invoked based on your request:
| Your Request | Auto-Invoked Skill |
|---|---|
| "Where is the auth code?" | explorer |
| "How does React hooks work?" | librarian |
| "Should I use microservices?" | oracle |
| "Make the UI look better" | designer |
| "Fix this bug" | fixer |
| "Review my code" | reviewer |
| "Write tests for this" | tester |
| "This code is too complex" | simplify |
| Agent | Role | Model | Triggers |
|---|---|---|---|
| Orchestrator | Master Coordinator | - | ultrawork, ulw, prowork, pw |
| Explorer | Codebase Navigator | Haiku | "where is", "find", "locate" |
| Librarian | Knowledge Retriever | Sonnet | "how to use", "documentation", "best practice" |
| Oracle | Strategic Advisor | Opus | "should I", "architecture", "design decision" |
| Designer | UI/UX Specialist | Sonnet | "UI", "design", "look better" |
| Fixer | Implementation Expert | Sonnet | "fix", "implement", "change" |
| Reviewer | Code Quality Guardian | Sonnet | "review", "check", "audit" |
| Tester | Test Specialist | Sonnet | "test", "coverage", "TDD" |
Add an alias to your ~/.bashrc or ~/.zshrc:
alias claude-pro='claude --plugin-dir /path/to/302-coding-plugins/plugins/oh-my-claudecode'Then use claude-pro instead of claude.
oh-my-claudecode/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Marketplace catalog
├── skills/ # Agent Skills (auto-invoked)
│ └── <name>/SKILL.md
├── agents/ # Subagent configurations
│ └── <name>.md
├── install.sh
├── README.md
└── GUIDE.md
| Method | Example | When to Use |
|---|---|---|
| Magic Word | ulw refactor auth |
Complex tasks needing orchestration |
| Auto-Invoke | "find the login code" | Simple tasks matching skill descriptions |
| Model | Use Case | Cost |
|---|---|---|
| Haiku | Fast exploration, simple searches | Low |
| Sonnet | Balanced tasks, implementation, reviews | Medium |
| Opus | Complex architecture, difficult debugging | High |
This project is inspired by:
MIT