원클릭으로
sdlc-verify
Final verification against spec with full evidence chain. Use after sdlc-execute to confirm feature is complete.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Final verification against spec with full evidence chain. Use after sdlc-execute to confirm feature is complete.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Execute tasks with pre/post drift checks and verification gates. Use after sdlc-plan to implement with accuracy guarantees.
Configure SDLC model tiers. Interactive TUI via /sdlc-choose, quick switch via /sdlc-tier.
Break specs into ordered tasks with acceptance criteria. Use after sdlc-spec to create executable task breakdown.
Create feature specs through collaborative brainstorming. Use when starting new features, writing requirements, or defining acceptance criteria.
SOC 직업 분류 기준
| name | sdlc-verify |
| description | Final verification against spec with full evidence chain. Use after sdlc-execute to confirm feature is complete. |
Model auto-switch: Extension switches to
fasttier automatically (verify just checks, no heavy reasoning needed).Principle: Evidence before claims, always.
Previous:
/skill:sdlc-execute| Next:/skill:sdlc-spec(new feature)
Final verification: full test suite, every acceptance criterion, build check, evidence report.
Core rule: Never claim pass without evidence.
plan_tracker_ide:
action: check_approval
phase: verify
If APPROVED, feature already verified. Show report location, skip re-verification.
docs/specs/{feature}/spec.mdplan_tracker_ide(action: "status")Incomplete tasks? → HARD STOP, suggest /skill:sdlc-execute
{testCommand from config}
Show: full output, total/pass/fail counts, exit code.
Fail: HARD STOP
Walk EVERY criterion from spec:
1. [Criterion]
- Status: ✓ PASS
- Evidence: {test name, manual check, etc.}
2. [Criterion]
- Status: ✗ FAIL
- Gap: {what's missing}
Any fail: HARD STOP
{buildCommand from config}
Show output, exit code. Fail: HARD STOP
Save to docs/specs/{feature}/verification-report.md:
# {Feature} Verification Report
**Date:** YYYY-MM-DD
**Status:** ✓ PASS
## Test Results
- Total: {N}
- Passed: {N}
- Failed: 0
## Acceptance Criteria
| # | Criterion | Status | Evidence |
|---|-----------|--------|----------|
| 1 | {text} | ✓ | {proof} |
## Build
Exit code: 0
## Files Changed
{git diff --stat}
## Conclusion
Ready for: PR / Merge / Deploy
memctx_save:
type: observation
title: {feature} Completed
path: 60-observations/{feature}-completed.md
tags: [sdlc, verify, complete, {feature}]
Completegit commit -m "docs({feature}): verification complete"
plan_tracker_ide:
action: approve
phase: verify
summary: "All {N} criteria passed, tests green, build clean"
plan_tracker_ide:
action: clear
Never claim pass without:
Red flags (STOP):
Pass:
Feature verified. Report:
docs/specs/{feature}/verification-report.mdNext: Create PR, merge, or start new feature with
/skill:sdlc-spec
Fail:
Verification FAILED.
Failures: {list}
Fix issues, then re-run
/skill:sdlc-verify