Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

oh-my-claudecode

中文文档 | English

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.

Features

  • Magic Word Activation: Say ultrawork or ulw to 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

Quick Start

Installation from Marketplace (Recommended)

# Add the marketplace
/plugin marketplace add 302ai/302-coding-plugins

# Install the plugin
/plugin install oh-my-claudecode@302ai-plugins

Installation from Source

# 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-claudecode

Magic Word Activation

Just 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:

  1. Analyze your request
  2. Delegate to appropriate specialists (@explorer, @librarian, @oracle, etc.)
  3. Coordinate parallel execution when beneficial
  4. Integrate results

Automatic Skill Invocation

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

The Agent Team

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"

Permanent Setup

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.

Plugin Structure

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

How It Works

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 Selection Strategy

Model Use Case Cost
Haiku Fast exploration, simple searches Low
Sonnet Balanced tasks, implementation, reviews Medium
Opus Complex architecture, difficult debugging High

Credits

This project is inspired by:

License

MIT