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


