English | 한국어 | 日本語 | 中文 | Deutsch | Français
Looking for Codex CLI? → my-codex — same orchestration in native TOML format
All-in-one agent harness for Claude Code. One plugin, 200+ agents ready.
Boss auto-discovers every agent, skill, and MCP tool at runtime,
then routes your task to the right specialist. No config files. No boilerplate.
git clone --depth 1 https://github.com/sehoon787/my-claude.git /tmp/my-claude
bash /tmp/my-claude/install.sh
rm -rf /tmp/my-claudeOr install as a Claude Code plugin first, then run the companion installer:
# Inside a Claude Code session:
/plugin marketplace add sehoon787/my-claude
/plugin install my-claude@my-claude
# Then install companion tools:
git clone --depth 1 https://github.com/sehoon787/my-claude.git /tmp/my-claude
bash /tmp/my-claude/install.sh
rm -rf /tmp/my-claudeRead https://raw.githubusercontent.com/sehoon787/my-claude/main/AI-INSTALL.md and follow every step.
Boss is the meta-orchestrator at the core of my-claude. It never writes code — it discovers, classifies, matches, delegates, and verifies.
User Request
│
▼
┌─────────────────────────────────────────────┐
│ Phase 0 · DISCOVERY │
│ Scan agents, skills, MCP, hooks at runtime │
│ → Build live capability registry │
└──────────────────────┬──────────────────────┘
▼
┌─────────────────────────────────────────────┐
│ Phase 1 · INTENT GATE │
│ Classify: trivial | build | refactor | │
│ mid-sized | architecture | research | ... │
│ → Counter-propose skill if better fit │
└──────────────────────┬──────────────────────┘
▼
┌─────────────────────────────────────────────┐
│ Phase 2 · CAPABILITY MATCHING │
│ P0: gstack skill (if installed) │
│ P1: Exact skill match │
│ P2: Specialist agent (200+) │
│ P3: Multi-agent orchestration │
│ P4: General-purpose fallback │
└──────────────────────┬──────────────────────┘
▼
┌─────────────────────────────────────────────┐
│ Phase 3 · DELEGATION │
│ 6-section structured prompt to specialist │
│ TASK / OUTCOME / TOOLS / DO / DON'T / CTX │
└──────────────────────┬──────────────────────┘
▼
┌─────────────────────────────────────────────┐
│ Phase 4 · VERIFICATION │
│ Read changed files independently │
│ Run tests, lint, build │
│ Cross-reference with original intent │
│ → Retry up to 3× on failure │
└─────────────────────────────────────────────┘
Boss cascades every request through a priority chain until the best match is found:
| Priority | Match Type | When | Example |
|---|---|---|---|
| P1 | Skill match | Task maps to a self-contained skill | "merge PDFs" → pdf skill |
| P2 | Specialist agent | Domain-specific agent exists | "security audit" → Security Engineer |
| P3a | Boss direct | 2-4 independent agents | "fix 3 bugs" → parallel spawn |
| P3b | Sub-orchestrator | Complex multi-step workflow | "refactor + test" → Sisyphus |
| P3c | Agent Teams | Peer-to-peer communication needed | "implement + review" → Review Chain |
| P4 | Fallback | No specialist matches | "explain this" → general agent |
| Complexity | Model | Used For |
|---|---|---|
| Deep analysis, architecture | Opus | Boss, Oracle, Sisyphus |
| Standard implementation | Sonnet | executor, debugger, security-reviewer |
| Quick lookup, exploration | Haiku | explore, simple advisory |
For end-to-end feature implementation, Boss orchestrates a structured sprint:
Phase 1: DESIGN Phase 2: EXECUTE Phase 3: REVIEW
(interactive) (autonomous) (interactive)
───────────────────── ───────────────────── ─────────────────────
User decides scope ralph runs execution Compare vs design doc
Engineering review Auto code review Present comparison table
Confirm "design done" Architect verification User: approve / improve
┌─────────────────────────────────────────────────────┐
│ User Request │
└───────────────────────┬─────────────────────────────┘
▼
┌─────────────────────────────────────────────────────┐
│ Boss · Meta-Orchestrator (Opus) │
│ Discovery → Classification → Matching → Delegation │
└──┬──────────┬──────────┬──────────┬─────────────────┘
│ │ │ │
▼ ▼ ▼ ▼
┌──────┐ ┌────────┐ ┌────────┐ ┌────────┐
│ P3a │ │ P3b │ │ P3c │ │ P1/P2 │
│Direct│ │Sub-orch│ │ Agent │ │ Skill/ │
│2-4 │ │Sisyphus│ │ Teams │ │ Agent │
│agents│ │Atlas │ │ P2P │ │ Direct │
└──────┘ │Hephaes│ └────────┘ └────────┘
└────────┘
┌─────────────────────────────────────────────────────┐
│ Behavioral Layer │
│ Karpathy Guidelines · ECC Rules (87) · Hooks (7) │
├─────────────────────────────────────────────────────┤
│ Specialist Agents (200+) │
│ OMO 9 · OMC 19 · Agency Eng. 26 · Superpowers 1 │
│ + 136 domain packs (on-demand) │
├─────────────────────────────────────────────────────┤
│ Skills (200+) │
│ ECC 180+ · OMC 36 · gstack 40 · Superpowers 14 │
│ + Core 3 · Anthropic 14+ │
├─────────────────────────────────────────────────────┤
│ MCP Layer │
│ Context7 · Exa · grep.app │
└─────────────────────────────────────────────────────┘
| Category | Count | Source |
|---|---|---|
| Core agents (always loaded) | 56 | Boss 1 + OMO 9 + OMC 19 + Agency Engineering 26 + Superpowers 1 |
| Agent packs (on-demand) | 136 | 12 domain categories from agency-agents |
| Skills | 200+ | ECC 180+ · OMC 36 · gstack 40 · Superpowers 14 · Core 3 |
| Anthropic Skills | 14+ | PDF, DOCX, PPTX, XLSX, MCP builder |
| Rules | 87 | ECC common + 14 language directories |
| MCP Servers | 3 | Context7, Exa, grep.app |
| Hooks | 7 | Delegation guard, telemetry, verification |
| CLI Tools | 3 | omc, omo, ast-grep |
Core Agent — Boss meta-orchestrator (1)
| Agent | Model | Role | Source |
|---|---|---|---|
| Boss | Opus | Dynamic runtime discovery → capability matching → optimal routing. Never writes code. | my-claude |
OMO Agents — Sub-orchestrators and specialists (9)
| Agent | Model | Role | Source |
|---|---|---|---|
| Sisyphus | Opus | Intent classification → specialist delegation → verification | oh-my-openagent |
| Hephaestus | Opus | Autonomous explore → plan → execute → verify | oh-my-openagent |
| Atlas | Opus | Task decomposition + 4-stage QA verification | oh-my-openagent |
| Oracle | Opus | Strategic technical consulting (read-only) | oh-my-openagent |
| Metis | Opus | Intent analysis, ambiguity detection | oh-my-openagent |
| Momus | Opus | Plan feasibility review | oh-my-openagent |
| Prometheus | Opus | Interview-based detailed planning | oh-my-openagent |
| Librarian | Sonnet | Open-source documentation search via MCP | oh-my-openagent |
| Multimodal-Looker | Sonnet | Image/screenshot/diagram analysis | oh-my-openagent |
OMC Agents — Specialist workers (19)
| Agent | Role | Source |
|---|---|---|
| analyst | Pre-analysis before planning | oh-my-claudecode |
| architect | System design and architecture | oh-my-claudecode |
| code-reviewer | Focused code review | oh-my-claudecode |
| code-simplifier | Code simplification and cleanup | oh-my-claudecode |
| critic | Critical analysis, alternative proposals | oh-my-claudecode |
| debugger | Focused debugging | oh-my-claudecode |
| designer | UI/UX design guidance | oh-my-claudecode |
| document-specialist | Documentation writing | oh-my-claudecode |
| executor | Task execution | oh-my-claudecode |
| explore | Codebase exploration | oh-my-claudecode |
| git-master | Git workflow management | oh-my-claudecode |
| planner | Rapid planning | oh-my-claudecode |
| qa-tester | Quality assurance testing | oh-my-claudecode |
| scientist | Research and experimentation | oh-my-claudecode |
| security-reviewer | Security review | oh-my-claudecode |
| test-engineer | Test writing and maintenance | oh-my-claudecode |
| tracer | Execution tracing and analysis | oh-my-claudecode |
| verifier | Final verification | oh-my-claudecode |
| writer | Content and documentation | oh-my-claudecode |
Agency Engineering — Always-loaded specialists (26)
| Agent | Role | Source |
|---|---|---|
| AI Engineer | AI/ML engineering | agency-agents |
| Backend Architect | Backend architecture | agency-agents |
| CMS Developer | CMS development | agency-agents |
| Code Reviewer | Code review | agency-agents |
| Data Engineer | Data engineering | agency-agents |
| Database Optimizer | Database optimization | agency-agents |
| DevOps Automator | DevOps automation | agency-agents |
| Embedded Firmware Engineer | Embedded firmware | agency-agents |
| Frontend Developer | Frontend development | agency-agents |
| Git Workflow Master | Git workflow | agency-agents |
| Incident Response Commander | Incident response | agency-agents |
| Mobile App Builder | Mobile apps | agency-agents |
| Rapid Prototyper | Rapid prototyping | agency-agents |
| Security Engineer | Security engineering | agency-agents |
| Senior Developer | Senior development | agency-agents |
| Software Architect | Software architecture | agency-agents |
| SRE | Site reliability | agency-agents |
| Technical Writer | Technical docs | agency-agents |
| AI Data Remediation Engineer | Self-healing data pipelines | agency-agents |
| Autonomous Optimization Architect | API performance governance | agency-agents |
| Email Intelligence Engineer | Email data extraction | agency-agents |
| Feishu Integration Developer | Feishu/Lark platform | agency-agents |
| Filament Optimization Specialist | Filament PHP optimization | agency-agents |
| Solidity Smart Contract Engineer | EVM smart contracts | agency-agents |
| Threat Detection Engineer | SIEM & threat hunting | agency-agents |
| WeChat Mini Program Developer | WeChat 小程序 | agency-agents |
Agent Packs — On-demand domain specialists (136)
Installed to ~/.claude/agent-packs/. Activate by symlinking:
ln -s ~/.claude/agent-packs/marketing/*.md ~/.claude/agents/| Pack | Count | Examples | Source |
|---|---|---|---|
| marketing | 29 | Douyin, Xiaohongshu, TikTok, SEO | agency-agents |
| specialized | 28 | Legal, Finance, Healthcare, MCP Builder | agency-agents |
| game-development | 20 | Unity, Unreal, Godot, Roblox | agency-agents |
| design | 8 | Brand, UI, UX, Visual Storytelling | agency-agents |
| testing | 8 | API, Accessibility, Performance | agency-agents |
| sales | 8 | Deal Strategy, Pipeline Analysis | agency-agents |
| paid-media | 7 | Google Ads, Meta Ads, Programmatic | agency-agents |
| project-management | 6 | Scrum, Kanban, Risk Management | agency-agents |
| spatial-computing | 6 | visionOS, WebXR, Metal | agency-agents |
| support | 6 | Analytics, Infrastructure, Legal | agency-agents |
| academic | 5 | Anthropologist, Historian, Psychologist | agency-agents |
| product | 5 | Product Manager, Sprint, Feedback | agency-agents |
Skills — 200+ from 6 sources
| Source | Count | Key Skills |
|---|---|---|
| everything-claude-code | 180+ | tdd-workflow, autopilot, ralph, security-review, coding-standards |
| oh-my-claudecode | 36 | plan, team, trace, deep-dive, blueprint, ultrawork |
| gstack | 40 | /qa, /review, /ship, /cso, /investigate, /office-hours |
| superpowers | 14 | brainstorming, systematic-debugging, TDD, parallel-agents |
| my-claude Core | 3 | boss-advanced, gstack-sprint, briefing-vault |
| Anthropic Official | 14+ | pdf, docx, pptx, xlsx, canvas-design, mcp-builder |
MCP Servers (3) + Hooks (7)
MCP Servers
| Server | Purpose | Cost |
|---|---|---|
| Real-time library documentation | Free | |
| Semantic web search | Free 1k req/month | |
| GitHub code search | Free |
Behavioral Hooks
| Hook | Event | Behavior |
|---|---|---|
| Session Setup | SessionStart | Auto-detects missing tools + injects Briefing Vault context |
| Delegation Guard | PreToolUse | Blocks Boss from directly modifying files |
| Agent Telemetry | PostToolUse | Logs agent usage to agent-usage.jsonl |
| Subagent Verifier | SubagentStop | Forces independent verification + logs to Briefing Vault |
| Completion Check | Stop | Runs profile fallback + guards /boss-briefing execution |
| Teammate Idle Guide | TeammateIdle | Prompts leader on idle teammates |
| Task Quality Gate | TaskCompleted | Verifies deliverable quality |
| Vault Reminder | UserPromptSubmit | Suggests /boss-briefing after 5+ messages |
Obsidian-compatible persistent memory. Every project maintains a .briefing/ directory that auto-populates across sessions.
.briefing/
├── INDEX.md ← Project context (auto-created once)
├── state.json ← Session metadata, counters, lastVaultSync (auto-managed)
├── sessions/
│ ├── YYYY-MM-DD-<topic>.md ← AI-written session summary (enforced)
│ └── YYYY-MM-DD-auto.md ← Auto-generated scaffold (git diff, agent stats)
├── decisions/
│ └── YYYY-MM-DD-<decision>.md ← AI-written decision record (enforced)
├── learnings/
│ ├── YYYY-MM-DD-<pattern>.md ← AI-written learning note
│ └── YYYY-MM-DD-auto-session.md ← Auto-generated scaffold (agents, files)
├── references/
│ └── auto-links.md ← Auto-collected URLs from web searches
├── agents/
│ ├── agent-log.jsonl ← Subagent execution telemetry
│ └── YYYY-MM-DD-summary.md ← Daily agent usage breakdown
└── persona/
├── profile.md ← Agent affinity stats (auto-updated)
├── suggestions.jsonl ← Routing suggestions (auto-generated)
└── rules/ ← Workflow pattern rules (workflow-*.md)
| Path | Description |
|---|---|
INDEX.md |
Project overview with links to recent decisions and learnings. Auto-created on first session, refreshed by /boss-briefing or Stop hook fallback. |
state.json |
Session metadata: counters (workCounter, messageCount), lastVaultSync timestamp, sessionStartHead. Auto-managed by hooks. |
sessions/ |
Session summaries. *-auto.md — scaffold with git diff stats and agent counts. <topic>.md — AI-written summary enforced by Stop hook guard. |
decisions/ |
Architecture and design decisions with rationale. AI-written, enforced during active work. |
learnings/ |
Patterns, gotchas, non-obvious solutions. *-auto-session.md — scaffold with file lists. <topic>.md — AI-written. |
references/ |
Web research URLs. auto-links.md — auto-collected from WebSearch/WebFetch calls. |
agents/ |
Agent telemetry. agent-log.jsonl — per-call log with enriched fields {ts, agent_type, phase, seq, task_hint}. YYYY-MM-DD-summary.md — daily usage breakdown. |
persona/ |
User work style profile. profile.md — tool affinity stats. suggestions.jsonl — routing recommendations. Workflow sequence patterns in rules/workflow-*.md. Run /boss-briefing to analyze. |
At session start, the current git HEAD is saved to state.json (sessionStartHead field). For non-git projects, a YYYY-MM-DD:cwd identifier is used instead. At session end, diffs are calculated relative to this saved point — showing only changes from the current session, not accumulated uncommitted changes from previous sessions.
- Open Obsidian → Open folder as vault → select
.briefing/ - Notes appear in graph view, linked by
[[wiki-links]] - YAML frontmatter (
date,type,tags) enables structured search - Timeline of decisions and learnings builds automatically over sessions
Run /boss-briefing during or at the end of a session to:
- Sync vault: Update profile.md, INDEX.md, and agent summaries
- Detect workflow patterns: Analyze temporal agent call sequences across sessions
- Recover from gaps: Generate recovery summaries if days have passed since the last session
- Propose persona rules: Suggest workflow-based routing preferences (not just frequency)
- Validate session notes: Check that today's session has a proper summary
The Stop hook checks whether /boss-briefing has run today. If not, it blocks session end with a reminder. The existing stop-profile-update.js continues to run as a fallback.
my-claude bundles content from 5 MIT-licensed upstream repositories via git submodules:
| # | Source | What It Provides |
|---|---|---|
| 1 | 19 specialist agents + 36 skills. Claude Code multi-agent harness with autopilot, ralph, team orchestration. | |
| 2 | 9 OMO agents (Sisyphus, Atlas, Oracle, etc.). Multi-platform agent harness bridging Claude, GPT, Gemini. | |
| 3 | 180+ skills + 87 rules across 14 languages. Comprehensive dev framework with TDD, security, and coding standards. | |
| 4 | 26 engineering agents (always loaded) + 136 domain agent-packs across 12 categories. | |
| 5 | 40 skills for code review, QA, security audit, deployment. Includes Playwright browser daemon. | |
| 6 | 14 skills + 1 agent covering brainstorming, TDD, parallel agents, and code review. | |
| 7 | 14+ official skills for PDF, DOCX, PPTX, XLSX, and MCP builder. | |
| 8 | 4 AI coding behavioral guidelines (Think Before Coding, Simplicity First, Surgical Changes, Goal-Driven Execution). |
| Workflow | Trigger | Purpose |
|---|---|---|
| CI | push, PR | Validates JSON configs, agent frontmatter, skill existence, upstream file counts |
| Update Upstream | weekly / manual | Runs git submodule update --remote and creates auto-merge PR |
| Auto Tag | push to main | Reads plugin.json version and creates git tag if new |
| Pages | push to main | Deploys docs/index.html to GitHub Pages |
| CLA | PR | Contributor License Agreement check |
| Lint Workflows | push, PR | Validates GitHub Actions workflow YAML syntax |
Features built specifically for this project, beyond what upstream sources provide:
| Feature | Description |
|---|---|
| Boss Meta-Orchestrator | Dynamic capability discovery → intent classification → 5-priority routing → delegation → verification |
| 3-Phase Sprint | Design (interactive) → Execute (autonomous via ralph) → Review (interactive vs design doc) |
| Agent Tier Priority | core > omo > omc > agency deduplication. Most specialized agent wins. |
| Agency Cost Optimization | Haiku for advisory, Sonnet for implementation — automatic model routing for 172 domain agents |
| Briefing Vault | Obsidian-compatible .briefing/ directory with sessions, decisions, learnings, references |
| Agent Telemetry | PostToolUse hook logs agent usage to agent-usage.jsonl |
| Smart Packs | Project-type detection recommends relevant agent packs at session start |
| CI SHA Pre-check | Upstream sync skips unchanged sources via git ls-remote SHA comparison |
| Agent Dedup Detection | Normalized name comparison catches duplicates across upstream sources |
Linked via git submodules. Pinned commits tracked natively by .gitmodules.
| Source | SHA | Date | Diff |
|---|---|---|---|
| agency-agents | 4feb0cd |
2026-04-07 | compare |
| everything-claude-code | 7dfdbe0 |
2026-04-07 | compare |
| oh-my-claudecode | 2487d38 |
2026-04-07 | compare |
| gstack | 03973c2 |
2026-04-07 | compare |
| superpowers | b7a8f76 |
2026-04-06 | compare |
Issues and PRs are welcome. When adding a new agent, add a .md file to agents/core/ or agents/omo/ and update SETUP.md.
Built on the work of: oh-my-claudecode (Yeachan Heo), oh-my-openagent (code-yeongyu), everything-claude-code (affaan-m), agency-agents (msitarzewski), gstack (garrytan), superpowers (Jesse Vincent), anthropic/skills (Anthropic), andrej-karpathy-skills (forrestchang).
MIT License. See the LICENSE file for details.