npx skills add https://github.com/drillan/speckit-gates --skill progress-reportCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
This skill package extends spec-kit with automated quality gates.
speckit-gates provides automated validation at key phases of the spec kit workflow:
| Skill | Type | Triggers After | Purpose |
|---|---|---|---|
planning-validate |
Automatic | /speckit.plan |
Validates planning artifacts |
implementation-verify |
Automatic | /speckit.implement |
Verifies implementation coverage |
docs-sync |
Automatic | /speckit.implement |
Synchronizes documentation |
progress-report |
Manual | User request | Shows progress dashboard |
release-check |
Manual | User request | Pre-release validation |
npx skills add drillan/speckit-gates
After installation, automatic skills will run when their trigger commands complete:
# Planning phase - planning-validate runs automatically
/speckit.plan
# Implementation phase - implementation-verify and docs-sync run automatically
/speckit.implement
Manual skills can be invoked anytime:
# Check progress
npx skills run progress-report
# Pre-release validation
npx skills run release-check
| Status | Meaning | Action |
|---|---|---|
| GREEN | All checks pass | Proceed to next phase |
| YELLOW | Warnings present | Review warnings, proceed with caution |
| RED | Blockers found | Resolve blockers before proceeding |
MIT