원클릭으로
verify
Run all verification gates (privacy scan, git cleanliness, git pushed) and report results.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run all verification gates (privacy scan, git cleanliness, git pushed) and report results.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Show a comprehensive project status dashboard: task queue, blocked items, session state, verification, and git status.
Generate a QA/UAT test plan from product specifications and task definitions, covering acceptance testing, integration flows, and exploratory testing. Unit tests are out of scope (handled by write-unit-tests skill).
Write comprehensive unit tests with proper setup, assertions, and coverage of happy paths, edge cases, and error scenarios
| name | verify |
| description | Run all verification gates (privacy scan, git cleanliness, git pushed) and report results. |
Run all verification hooks in .bot/hooks/verify/ and present a clear pass/fail report.
Run the privacy/secrets scanner:
pwsh .bot/hooks/verify/00-privacy-scan.ps1
If the user said /verify staged or mentioned "staged only", add the -StagedOnly flag:
pwsh .bot/hooks/verify/00-privacy-scan.ps1 -StagedOnly
Check for uncommitted changes outside .bot/:
pwsh .bot/hooks/verify/01-git-clean.ps1
Check for unpushed commits:
pwsh .bot/hooks/verify/02-git-pushed.ps1
Present results as a verification report:
## Verification Report
| Gate | Result |
|----------------|--------|
| Privacy scan | PASS/FAIL |
| Git clean | PASS/FAIL |
| Git pushed | PASS/FAIL |
Overall: ALL PASSED / N FAILED
### Failures (if any)
#### <Gate name>
- Issue: <description>
- Remediation: <what to do>
issues and details keys — parse these for structured reporting