by fengshao1227
多模型协作开发系统 - Claude 编排 + Codex 后端 + Gemini 前端,28 个命令覆盖开发全流程,一键安装零配置
# Add to your Claude Code skills
git clone https://github.com/fengshao1227/ccg-workflow简体中文 | English
</div>A multi-model collaboration development system where Claude Code orchestrates Codex + Gemini. Frontend tasks route to Gemini, backend tasks route to Codex, and Claude handles orchestration and code review.
/ccg:*.Claude Code (Orchestrator)
│
┌───┴───┐
↓ ↓
Codex Gemini
(Backend) (Frontend)
│ │
└───┬───┘
↓
Unified Patch
External models have no write access — they only return patches, which Claude reviews before applying.
| Dependency | Required | Notes |
|------------|----------|-------|
| Node.js 20+ | Yes | ora@9.x requires Node >= 20. Node 18 causes SyntaxError |
| Claude Code CLI | Yes | Install guide |
| jq | Yes | Used for auto-authorization hook (install) |
| Codex CLI | No | Enables backend routing |
| Gemini CLI | No | Enables frontend routing |
npx ccg-workflow
On first run, CCG prompts you to select a language (English / Chinese). This preference is saved for all future sessions.
# macOS
brew install jq
# Linux (Debian/Ubuntu)
sudo apt install jq
# Linux (RHEL/CentOS)
sudo yum install jq
# Windows
choco install jq # or: scoop install jq
npx ccg-workflow menu # Select "Install Claude Code"
Supports: npm, homebrew, curl, powershell, cmd.
| Command | Description | Model |
|---------|-------------|-------|
| /ccg:workflow | Full 6-phase development workflow | Codex + Gemini |
| /ccg:plan | Multi-model collaborative planning (Phase 1-2) | Codex + Gemini |
| /ccg:execute | Multi-model collaborative execution (Phase 3-5) | Codex + Gemini + Claude |
| /ccg:codex-exec | Codex full execution (plan → code → review) | Codex + multi-model review |
| /ccg:feat | Smart feature development | Auto-rou...
No comments yet. Be the first to share your thoughts!