Agent Skills
› pony-maggie/code_minions
› product-acceptance-review
product-acceptance-review
GitHub基于解析后的PRD约束,对已完成的工作区进行确定性产品验收审查。通过检查交付配置、平台证据、任务覆盖率及测试用例等,生成结构化的验收证据,区分流水线成功与产品验收状态。
Trigger Scenarios
需要验证代码实现是否符合PRD需求
执行产品验收流程
Install
npx skills add pony-maggie/code_minions --skill product-acceptance-review -g -y
SKILL.md
Frontmatter
{
"name": "product-acceptance-review",
"inputs": {
"tasks": {
"type": "array",
"required": true
},
"structured_prd": {
"type": "object",
"required": true
},
"implement_results": {
"type": "array",
"required": true
},
"browser_acceptance_output": {
"type": "object",
"required": false
}
},
"outputs": {
"accepted": {
"type": "boolean"
},
"blockers": {
"type": "array"
},
"coverage": {
"type": "array"
},
"evidence": {
"type": "object"
},
"warnings": {
"type": "array"
},
"artifact_level": {
"type": "string"
},
"verifier_rounds": {
"type": "array"
},
"acceptance_items": {
"type": "array"
}
},
"description": "Deterministic product acceptance review against parsed PRD constraints.",
"allowed-tools": [],
"required-mcps": [],
"entrypoint-script": "scripts\/run.py"
}
product-acceptance-review
Review the completed worktree against the parsed PRD product contract.
This skill is deterministic. It distinguishes pipeline success from product acceptance by checking delivery profile, platform/language/build evidence, task coverage, acceptance criteria test evidence, and obvious prototype/stub mismatches.
It emits qcloop-style structured acceptance evidence:
acceptance_items: deterministic pass/warn/fail rows for tasks, task-level acceptance criteria, delivery profile checks, platform checks, and artifact warnings.- Criteria items use
criterion:<trace_id>:<index>ids and attach the task's changed test files plus test pass/fail status as evidence. - Commitment items use
commitment:<trace_id>ids and compare actual changed files againstimplement-with-tdd'splan_commitment.will_change_paths. verifier_rounds: an independent deterministic verifier pass over those items. Blocking failed items make the verifier fail; warnings are reported but do not fail acceptance.
Version History
- ac75593 Current 2026-07-24 17:41


