一键导入
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.