cexll/myclaude

Multi-agent orchestration workflow (Claude Code Codex Gemini OpenCode)

2K stars247 forksUpdated Jan 26, 2026
npx skills add cexll/myclaude

README

中文 English

Claude Code Multi-Agent Workflow System

Run in Smithery License: AGPL-3.0 Claude Code Version

AI-powered development automation with multi-backend execution (Codex/Claude/Gemini/OpenCode)

Quick Start

npx github:cexll/myclaude

Modules Overview

ModuleDescriptionDocumentation
doRecommended - 7-phase feature development with codeagent orchestration/do command
omoMulti-agent orchestration with intelligent routing/omo command
bmadBMAD agile workflow with 6 specialized agents/bmad-pilot command
requirementsLightweight requirements-to-code pipeline/requirements-pilot command
essentialsCore development commands and utilities/code, /debug, etc.
sparvSPARV workflow (Specify→Plan→Act→Review→Vault)/sparv command
courseCourse development (combines dev + product-requirements + test-cases)Composite module

Installation

# Interactive installer (recommended)
npx github:cexll/myclaude

# List installable items (modules / skills / wrapper)
npx github:cexll/myclaude --list

# Detect installed modules and update from GitHub
npx github:cexll/myclaude --update

# Custom install directory / overwrite
npx github:cexll/myclaude --install-dir ~/.claude --force

--update detects already installed modules in the target install dir (defaults to ~/.claude, via installed_modules.json when present) and updates them from GitHub (latest release) by overwriting the module files.

Module Configuration

Edit config.json to enable/disable modules:

{
  "modules": {
    "bmad": { "enabled": false },
    "requirements": { "enabled": false },
    "essentials": { "enabled": false },
    "omo": { "enabled": false },
    "sparv": { "enabled": false },
    "do": { "enabled": true },
    "course": { "enabled": false }
  }
}

Workflow Selection Guide

ScenarioRecommended
Feature development (default)/do
Bug investigation + fix/omo
Large enterprise project/bmad-pilot
Quick prototype/requirements-pilot
Simple task/code, /debug

Core Architecture

RoleAgentResponsibility
OrchestratorClaude CodePlanning, context gathering, verification
Executorcodeagent-wrapperCode editing, test execution (Codex/Claude/Gemini/OpenCode)

Backend CLI Requirements

BackendRequired Features
Codexcodex e, --json, -C, resume
Claude--output-format stream-json, -r
Gemini-o stream-json, -y, -r

Directory Structure After Installation

~/.claude/
├── bin/codeagent-wrapper
├── CLAUDE.md
├── commands/
├── agents/
├── skills/
└── config.json

Documentation

Troubleshooting

Common Issues

Codex wrapper not found:

# Select: codeagent-wrapper
npx github:cexll/myclaude

Module not loading:

cat ~/.claude/installed_modules.json
npx github:cexll/myclaude --force

Backend CLI errors:

which codex && codex --version
which claude && claude --version
which gemini && gemini --version

FAQ

IssueSolution
"Unknown event format"Logging display issue, can be ignored
Gemini can't read .gitignore filesRemove from .gitignore or use different backend
Codex permission deniedSet approval_policy = "never" in ~/.codex/config.yaml

See GitHub Issues for more.

License

AGPL-3.0 - see LICENSE

Commercial Licensing

For commercial use without AGPL obligations, contact: evanxian9@gmail.com

Support

Publisher

cexllcexll

Statistics

Stars2K
Forks247
Open Issues3
LicenseGNU Affero General Public License v3.0
CreatedJul 17, 2025