CtrlK
BlogDocsLog inGet started
Tessl Logo

ccg-skills

CCG Skills - Quality gates, documentation generator, and multi-agent orchestration. Auto-installed by CCG workflow system.

58

Quality

66%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Low

Low-risk findings worth noting

Fix and improve this skill with Tessl

tessl review fix ./templates/skills/SKILL.md
SKILL.md
Quality
Evals
Security

CCG Skills

Directory Structure

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

Quick Navigation

CategoryDescriptionEntry
Quality GatesModule completeness, security, quality, change validationQuality Gates
Multi-AgentMulti-agent coordination and task decompositionMulti-Agent

Quality Gates

Mandatory quality checkpoints to ensure deliverable standards.

SkillTriggerDescription
/verify-moduleNew module completedModule structure & documentation completeness
/verify-securityNew module / security changes / refactoringSecurity vulnerability scanning
/verify-changeDesign-level changes / refactoringDocument sync & change impact analysis
/verify-qualityComplex modules / refactoringCode quality metrics checking
/gen-docsNew module createdREADME.md & DESIGN.md skeleton generator

Auto-trigger Rules

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-security

Running Skills

# 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

Multi-Agent Orchestration

SkillTriggerDescription
multi-agentTeamCreate, parallel tasks, multi-agentAnt colony-inspired multi-agent coordination

Provides:

  • Agent role system (Lead/Scout/Worker/Soldier/Drone)
  • Pheromone-based indirect communication
  • File ownership locking & conflict avoidance
  • Adaptive concurrency control
  • TeamCreate vs single-agent decision tree

Installed by CCG

These skills are automatically installed during npx ccg-workflow initialization. To update: run npx ccg-workflow update or npx ccg-workflow again.

Repository
fengshao1227/ccg-workflow
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.