원클릭으로
ccsm-skills
CCSM skills - quality gates, documentation generator, and multi-agent orchestration. Auto-installed by the CCSM workflow system.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
CCSM skills - quality gates, documentation generator, and multi-agent orchestration. Auto-installed by the CCSM workflow system.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Dispatch execution from Codex and keep acceptance in Codex. Use when the change is planned and ready for implementation.
Run the independent acceptance gate from Codex. Use when a change needs final verification against its spec, design, tasks, and execution evidence.
Orchestrate the full spec-driven workflow (spec-init to spec-review) automatically with bounded rework loops. Use when Codex should drive the complete change lifecycle without manual phase handoffs.
Start or resume the primary OpenSpec change flow from Codex. Use when Codex should pick the active change and create the next OpenSpec artifact directly.
Prepare the execution handoff contract from Codex. Use when a change needs design, task refinement, and a bounded execution packet.
Research a requested change from Codex and turn findings into proposal-ready constraints. Use when a request needs bounded discovery before planning.
| name | ccsm-skills |
| description | CCSM skills - quality gates, documentation generator, and multi-agent orchestration. Auto-installed by the CCSM workflow system. |
| license | MIT |
| user-invocable | false |
| disable-model-invocation | false |
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-security
# Unified runner
node ~/.ccsm/skills/ccsm/run_skill.js <skill-name> [args...]
# Examples
node ~/.ccsm/skills/ccsm/run_skill.js verify-security ./src
node ~/.ccsm/skills/ccsm/run_skill.js verify-quality ./src -v
node ~/.ccsm/skills/ccsm/run_skill.js verify-change --mode staged
node ~/.ccsm/skills/ccsm/run_skill.js verify-module ./my-module
node ~/.ccsm/skills/ccsm/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 ccsm-workflow initialization.
To update: run npx ccsm-workflow update or npx ccsm-workflow again.