Agent Skills
› jjongguet/oh-my-product
› verify
verify
GitHub用于验证任务或功能是否完成,通过检查构建、运行冒烟测试及对照验收标准来评估完成度,并输出包含具体证据和差距分析的通过/失败报告。
Trigger Scenarios
用户希望确认任务已完成
需要核对验收标准与实际结果的一致性
Install
npx skills add jjongguet/oh-my-product --skill verify -g -y
SKILL.md
Frontmatter
{
"name": "verify",
"aliases": [
"\/verify",
"verify work",
"check completion",
"validate"
],
"description": "Verify that acceptance criteria are met and work is complete.",
"primaryRole": "verifier"
}
Verify Skill (oh-my-product)
Use this skill when the user wants to verify that a task or feature is complete.
What it does
Checks evidence of completion against acceptance criteria. Runs smoke tests, inspects state files, and reports any gaps between expected and actual outcomes.
Verification steps
- Build — Confirm the project builds without errors (
npm run build) - Tests — Run the test suite (
npm run test:smoke) - State — Check for required state artifacts (done signals, phase state)
- Criteria — Map each acceptance criterion to concrete evidence
- Report — Output pass/fail with actionable gaps
Output format
## Verification Report
### Build: PASS / FAIL
### Tests: PASS / FAIL (N/M passed)
### Acceptance Criteria:
- [x] Criterion 1 — evidence: <file or output>
- [ ] Criterion 2 — MISSING: <what is expected>
### Overall: PASS / FAIL
Usage
omp skill verify [--criteria "<list of criteria>"]
Version History
- 4f49e99 Current 2026-07-25 06:34


