Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

CCG - Claude + Codex + Gemini Multi-Model Collaboration

♥️ Sponsor

PackyCode

Thanks to PackyCode for sponsoring this project! PackyCode is a stable, high-throughput API gateway for leading models — one domain, one key, automatic failover, 97% availability. Dedicated high-speed routes for Codex and Claude Code. Pay in RMB 1:1 with no FX markup or top-up fees; new users get a first-charge discount plus $1 in free credits, and eligible groups start from 20% of list price. Sign up here to get started.

💡 PackyCode also exposes an Anthropic-compatible endpoint, so it can serve as your API provider for Claude Code itself — run npx ccg-workflow, pick PackyCode at Step 1, and paste your key.


APIMart

Thanks to APIMart for sponsoring this project! APIMart is a low-cost API platform for AI image & video generation — GPT-Image-2 from $0.006/image, 160+ images per dollar. One async API covers both image and video: submit a task, get an ID, fetch results via polling or callback. Batch tens of thousands of images without timeouts, switch models without changing code. Pay-as-you-go with no monthly fee — sign up here to get started.

💡 APIMart also exposes an Anthropic-compatible endpoint, so it can serve as your API provider for Claude Code itself — run npx ccg-workflow, pick APIMart at Step 1, and paste your key.


Gamma Remover

Gamma Remover — Free browser-local Gamma watermark remover for PDF & PPTX. No signup, instant results, 100% private. Your files never leave your device.


🐳 CCG on DeepSeek Harness — dsh-ccg

The same role matrix, running natively inside DeepSeek Harness. It ships inside this package — no second install, no second version to track.

npx ccg-workflow dsh install    # every profile found; --profile <name> for one
npx ccg-workflow dsh list       # which profiles have it

Or pick D. DeepSeek Harness from npx ccg-workflow.

Seven role-pinned delegation tools, each on its own model with its own expert persona — and two things the Claude Code side cannot do as cleanly:

  • Model panels. Give one role several models and they all answer the same brief independently, rendered side by side in the conversation. Nothing votes, nothing is averaged — disagreement is the finding.
  • Live teammates. ccg_team hires a role as a colleague that stays alive across turns, owns its own files (a colliding hire is refused, not warned about), and reports back on its own. Every hire asks you to approve it first.

No external CLI, no binary bridge, no cold-start tax — every hop is a provider API request. Source lives in dsh-ccg/; full README →

🧩 Also by the author

DSH Marketplace — a directory of DeepSeek Harness plugins. 2,500+ indexed across 14 categories, bilingual EN / 中文.

Not a sponsor — same author as CCG, built out of a plain annoyance: DSH plugins are multiplying fast, but figuring out what one does, whether it still installs, and what the command actually is meant opening one GitHub README after another. So the install commands here are put through a throwaway container first. A plugin only gets a check mark if it really installs — and if it can't, the listing says why (buried in a monorepo subdirectory, never published to npm, and so on). A verified index, not another awesome list.

dsh plugin --profile web add dshmarketplace-plugin   # browse the store from inside DSH
npx dshmarketplace-cli add owner/repo                # install any plugin from your shell

There is also a Python SDK and a public API. Early days — bug reports and plugin submissions are very welcome on GitHub.


What is CCG?

CCG is a workflow engine for Claude Code. It turns Claude into a multi-model orchestrator — Claude stays in control while dispatching specialized work to Codex (OpenAI), Grok (xAI), Kimi Code (Moonshot), and Antigravity through a Go binary bridge.

One command. Describe what you want. The engine handles the rest.

npx ccg-workflow    # Install in 60 seconds

Architecture

CCG Architecture

Claude Code is the lead orchestrator. It analyzes your intent, selects a strategy, and manages the entire workflow. The Hook Engine injects state every turn so Claude never loses context — even after compaction. The codeagent-wrapper (a compiled Go binary) bridges Claude to external models for parallel analysis and review.

How It Works

You: /ccg:go add JWT authentication to this API

CCG Engine:
  1. Reads project context (git status, tech stack, file structure)
  2. Classifies: feature / L complexity / backend / high risk
  3. Selects strategy: full-collaborate
  4. Creates .ccg/tasks/add-jwt-auth/task.json
  5. Launches dual-model analysis (Codex + Gemini in parallel)
  6. Produces plan → HARD STOP for your approval
  7. Spawns Agent Teams Builders for parallel implementation
  8. Runs quality gates + dual-model cross-review
  9. Reports results

Every turn, a hook injects:
  <ccg-state>
  Task: add-jwt-auth (in_progress)
  Strategy: full-collaborate
  Phase: 4-implementation
  </ccg-state>

10 Built-in Strategies

The engine auto-selects the right strategy based on task type and complexity:

StrategyWhenExternal ModelsAgent Teams
direct-fixSimple bug, single file
quick-implementSmall feature, clear scope
guided-developMedium feature, needs planningSingle
full-collaborateComplex feature, multi-moduleDual parallel
debug-investigateComplex bug, unknown causeDual diagnosis
refactor-safelyCode restructuringDual review
deep-researchTechnical researchDual exploration
optimize-measurePerformance optimizationOptional
review-auditCode reviewDual cross-review
git-actioncommit, rollback, branches

Simple tasks run fast with zero overhead. Complex tasks get the full engine.

Core Features

Hook Engine — Never Lose Context

4 JavaScript hooks inject state into every Claude Code session:

HookEventWhat it does
workflow-state.jsEvery turnInjects current task state as breadcrumb
session-start.jsSession start/compactRe-injects full project context
subagent-context.jsAgent/Bash spawnInjects spec directly into subagent prompts
skill-router.jsEvery turnAuto-injects domain knowledge by keyword

Context survives compaction. Sub-agents born with spec in their prompt. Zero state loss.

Task System — Persistent Lifecycle

Medium+ complexity tasks get a persistent directory:

.ccg/tasks/add-jwt-auth/
├── task.json         # Status, strategy, phase, gate
├── requirements.md   # Enhanced requirements
├── plan.md           # Approved implementation plan
├── context.jsonl     # Spec files for sub-agent injection
├── review.md         # Review results
└── research/         # Persisted research findings

Quality Gates — Built-in Security & Quality

GateTrigger
/ccg:verify-securityNew modules, security changes
/ccg:verify-qualityChanges > 30 lines
/ccg:verify-changeDoc sync check
/ccg:verify-moduleModule structure check
/ccg:gen-docsAuto-generate README + DESIGN

100+ Domain Knowledge Files

When your message mentions security, caching, RAG, Kubernetes, etc., the relevant knowledge file is auto-injected. 10 domains, 61 files:

Security · Architecture · DevOps · AI/MLOps · Development · Frontend Design · Infrastructure · Mobile · Data Engineering · Orchestration

Standalone Skills — battle-tested website workflows (v3.5.1)

Self-contained skills, each usable on its own or auto-triggered by intent. Drawn from real site-building work and shipped with their scripts:

SkillWhat it does
/ccg:bt-panelDrive a BaoTa / aaPanel server over its HTTP API — deploy a build, update a live site, read/write files, run shell, run MySQL. No SSH or rsync; just a panel URL + API key. Ships bt_client.py + one-shot bt_deploy.py.
/ccg:seo-page-builderBuild, audit, or optimize SEO tool pages (AI generator / remover / enhancer / converter / editor). SERP-intent driven, with a runnable onpage-audit.py keyword-density meter.
/ccg:adsense-site-auditorAudit a site for Google AdSense readiness against the full official checklist — eligibility, ownership, content quality, ads.txt, privacy, Publisher Policies — before you apply or after a rejection.

bt-panel reads credentials only from env vars / a git-ignored sites.json; nothing is hardcoded. seo-page-builder is adapted from yuzeiki's skill of the same name (see its SKILL.md).

Commands

Core (v3.0 default: 13 commands)

CommandDescription
/ccg:goSmart entry — describe what you want, engine handles the rest
/ccg:commitSmart conventional commit
/ccg:rollbackInteractive rollback
/ccg:clean-branchesClean merged branches
/ccg:worktreeWorktree management
/ccg:initInitialize project CLAUDE.md
/ccg:contextProject context management

OpenSpec Integration

CommandDescription
/ccg:spec-initInitialize OPSX environment
/ccg:spec-researchRequirements → constraints
/ccg:spec-planConstraints → zero-decision plan
/ccg:spec-implExecute plan + archive
/ccg:spec-reviewDual-model cross-review

Legacy Mode (18 additional commands)

Includes /ccg:workflow, /ccg:plan, /ccg:execute, /ccg:frontend, /ccg:backend, /ccg:analyze, /ccg:debug, /ccg:optimize, /ccg:test, /ccg:review, /ccg:team, and more.

Quick Start

Option A — full install (multi-model orchestration + commands + hooks + binary, recommended)

# Install (interactive 4-step wizard)
npx ccg-workflow

# Or non-interactive with defaults
npx ccg-workflow init --skip-prompt

Requires Node.js 20+ and Claude Code CLI. Codex CLI, Grok CLI, Kimi Code CLI, and Antigravity are optional (enable multi-model features).

Option B — native plugin (skills only, zero dependencies, v3.5.1+)

Want just the skills (web-ops toolkit, quality gates, frontend-design, domain knowledge) without the multi-model orchestration?

claude plugin marketplace add fengshao1227/ccg-workflow
claude plugin install ccg@ccg

Skills are invoked as /ccg:<skill>. No npx, no binary. The multi-model commands ship only through Option A (their templates carry install-time placeholders that a native plugin can't resolve).

CLI Commands

npx ccg-workflow                          # Interactive menu
npx ccg-workflow init                     # 4-step install wizard
npx ccg-workflow doctor                   # Environment health check
npx ccg-workflow status                   # Installation overview
npx ccg-workflow codex-mode install       # Install Codex-Led mode
npx ccg-workflow codex-mode uninstall     # Uninstall Codex-Led mode
npx ccg-workflow dsh install              # Install CCG into DeepSeek Harness
npx ccg-workflow dsh list                 # Which dsh profiles have it
npx ccg-workflow dsh uninstall            # Remove it from every profile
npx ccg-workflow uninstall                # Uninstall CCG
npx ccg-workflow config mcp               # Configure MCP tokens
npx ccg-workflow diagnose-mcp             # Diagnose MCP issues

Configuration

~/.claude/
├── commands/ccg/          # Slash commands
├── hooks/ccg/             # Hook scripts (5 files)
├── skills/ccg/            # Quality gates + 100+ domain knowledge
├── rules/                 # Auto-trigger rules
├── .ccg/
│   ├── config.toml        # Model routing, MCP, performance
│   ├── engine/            # 10 strategy files + model router
│   └── prompts/           # Expert prompts (codex/gemini/claude)
└── bin/codeagent-wrapper  # Multi-model bridge (Go binary)

Environment Variables

Set in ~/.claude/settings.json under "env":

VariableDefaultDescription
CODEX_TIMEOUT7200Wrapper timeout (seconds)
CODEAGENT_POST_MESSAGE_DELAY5Post-completion delay
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMSunsetSet 1 for parallel Agent Teams

Update / Uninstall

npx ccg-workflow@latest     # Update to latest
npx ccg-workflow doctor     # Check health after update
npx ccg-workflow uninstall  # Clean uninstall

Credits

Contributors

fengshao1227
fengshao1227
SXP-Simon
SXP-Simon
RebornQ
RebornQ
Sakuranda
Sakuranda
Mriris
Mriris
23q3
23q3
MrNine-666
MrNine-666
GGzili
GGzili

Contact

Star History

Star History Chart

License

MIT


v3.6.7 | Issues | Contributing

关于 About

多模型协作工作流引擎 — /ccg:go 一个命令,AI 自动分析意图、选择策略、编排 Codex + Gemini + Claude 协作执行
agent-teamsaiccgclaude-codeclicodexgeminillmno-denodejsopsxspecpromptworkflow

语言 Languages

TypeScript32.5%
Go31.9%
JavaScript30.3%
Python4.8%
CSS0.4%
Shell0.1%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
324
Total Commits
峰值: 39次/周
Less
More

核心贡献者 Contributors