Install any skill in seconds. Free to start, no credit card required.
Get Started Free →CCG Skills - Quality gates, documentation generator, and multi-agent orchestration. Auto-installed by CCG workflow system.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | -32% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -3% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -41% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -22% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -14% | 0% |
skills/
├── tools/ # Quality gate tools
│ ├── verify-security/ # Security vulnerability scanning
│ ├── verify-quality/ # Code quality checking
│ ├── verify-change/ # Change analysis & doc sync
│ ├── verify-module/ # Module completeness validation
│ ├── gen-docs/ # README.md & DESIGN.md generator
│ └── lib/ # Shared utilities
├── orchestration/ # Multi-agent coordination
│ └── multi-agent/ # Ant colony-inspired coordination
├── run_skill.js # Unified skill runner
└── SKILL.md # This file| Category | Description | Entry | |----------|-------------|-------| | Quality Gates | Module completeness, security, quality, change validation | Quality Gates | | Multi-Agent | Multi-agent coordination and task decomposition | Multi-Agent |
Mandatory quality checkpoints to ensure deliverable standards.
| Skill | Trigger | Description | |-------|---------|-------------| | /verify-module | New module completed | Module structure & documentation completeness | | /verify-security | New module / security changes / refactoring | Security vulnerability scanning | | /verify-change | Design-level changes / refactoring | Document sync & change impact analysis | | /verify-quality | Complex modules / refactoring | Code quality metrics checking | | /gen-docs | New module created | README.md & DESIGN.md skeleton generator |
New module: /gen-docs → develop → /verify-module → /verify-security
Code changes: develop → /verify-change → /verify-quality
Security tasks: execute → /verify-security
Refactoring: refactor → /verify-change → /verify-quality → /verify-securitybash# Unified runner node ~/.claude/skills/ccg/run_skill.js <skill-name> [args...] # Examples node ~/.claude/skills/ccg/run_skill.js verify-security ./src node ~/.claude/skills/ccg/run_skill.js verify-quality ./src -v node ~/.claude/skills/ccg/run_skill.js verify-change --mode staged node ~/.claude/skills/ccg/run_skill.js verify-module ./my-module node ~/.claude/skills/ccg/run_skill.js gen-docs ./new-module --force
| Skill | Trigger | Description | |-------|---------|-------------| | multi-agent | TeamCreate, parallel tasks, multi-agent | Ant colony-inspired multi-agent coordination |
Provides:
These skills are automatically installed during npx ccg-workflow initialization. To update: run npx ccg-workflow update or npx ccg-workflow again.
Other measured skills in the registry, with their headline benchmark lift.