What problem does it solve?
Non-trivial code changes — whole features, unclear bugs, large refactors — often sprawl or fail when attempted in a single pass. This Skill structures the work by delegating phases to specialized role tools (ccg_analyze, ccg_design, ccg_build, ccg_debug, ccg_optimize, ccg_review, ccg_test), each running a child agent on its own model, so the work converges instead of sprawling.
Core Features & Use Cases
- Four delegation modes: Direct, Standard, Deep, and Team modes let you match the workflow cost to the task size, from a one-line fix to a multi-agent parallel build.
- Deterministic quality gates: Bundled verify-change, verify-quality, verify-security, verify-module, and gen-docs scripts scan diffs and modules before review so the reviewer focuses on judgement.
- Team coordination: ccg_team hires persistent specialist agents with disjoint file ownership, while ccg_roster and ccg_remember track contracts, decisions, and conventions across sessions.
- Use Case: When facing a bug whose cause is unknown, run ccg_debug to diagnose ranked hypotheses, then ccg_build to implement the fix, then verify-change and ccg_review to validate the result.
Quick Start
Ask the assistant to run the CCG workflow on a feature or bug, for example: use the ccg-workflow skill to analyze, design, build, and review the session refresh fix in src/auth/session.ts.