cexll 5a50131a13 refactor!: major directory restructuring and npx support
- Create agents/ directory, move bmad, requirements, development-essentials
- Remove docs/, hooks/, dev-workflow/ directories
- Add npx support via github:cexll/myclaude
- Add bin/cli.js with --update command for installed modules
- Add package.json, skills/README.md, PLUGIN_README.md
- Update all references across config.json, README, marketplace.json
- Change default module from dev to do
- Update CHANGELOG with all 59 tags

BREAKING CHANGE: Directory structure changed, docs/hooks removed

Generated with SWE-Agent.ai

Co-Authored-By: SWE-Agent.ai <noreply@swe-agent.ai>
2026-01-26 16:57:06 +08:00
2026-01-23 12:01:04 +08:00
2025-12-13 12:31:49 +08:00

中文 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

Module Description Documentation
do Recommended - 7-phase feature development with codeagent orchestration /do command
omo Multi-agent orchestration with intelligent routing /omo command
bmad BMAD agile workflow with 6 specialized agents /bmad-pilot command
requirements Lightweight requirements-to-code pipeline /requirements-pilot command
essentials Core development commands and utilities /code, /debug, etc.
sparv SPARV workflow (Specify→Plan→Act→Review→Vault) /sparv command
course Course 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

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

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

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

Core Architecture

Role Agent Responsibility
Orchestrator Claude Code Planning, context gathering, verification
Executor codeagent-wrapper Code editing, test execution (Codex/Claude/Gemini/OpenCode)

Backend CLI Requirements

Backend Required Features
Codex codex 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

Issue Solution
"Unknown event format" Logging display issue, can be ignored
Gemini can't read .gitignore files Remove from .gitignore or use different backend
Codex permission denied Set 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

Description
Claude Code and Codex orchestration workflow
Readme AGPL-3.0 9.2 MiB
Languages
Go 74.8%
Python 10.8%
JavaScript 6.6%
Shell 5.3%
Batchfile 1.3%
Other 1.2%