Agent Skills
› pony-maggie/code_minions
› compile-report
compile-report
GitHub汇总实现结果、审查意见及验收信息,生成最终报告文件。
Trigger Scenarios
需要生成项目或迭代总结报告
汇总多个任务实施与审查结果
Install
npx skills add pony-maggie/code_minions --skill compile-report -g -y
SKILL.md
Frontmatter
{
"llm": {
"temperature": 0,
"max_iterations": 5
},
"name": "compile-report",
"inputs": {
"output_path": {
"type": "string",
"required": true
},
"tickets_output": {
"type": "object",
"required": true
},
"acceptance_output": {
"type": "object",
"required": false
},
"implement_results": {
"type": "array",
"required": true
},
"browser_acceptance_output": {
"type": "object",
"required": false
}
},
"outputs": {
"report_path": {
"type": "string"
},
"evidence_paths": {
"type": "array"
}
},
"description": "Write a final report.md summarizing run results.",
"allowed-tools": [
"Write"
],
"required-mcps": [],
"entrypoint-script": "scripts\/run.py"
}
compile-report
Compose a final report.md summarizing all implemented tickets + their reviews.
Inputs
implement_results(array, required): outputs of each implement-with-tdd iteration.acceptance_output(object, optional): product acceptance summary.browser_acceptance_output(object, optional): browser/e2e visual acceptance summary.tickets_output(object, required): outputs of create-jira-tickets (for Jira links).output_path(string, required): where to write the report (relative to worktree).
Outputs
report_path(string)evidence_paths(string[]): machine-readable evidence artifacts written under.devflow/evidence/
Version History
- ac75593 Current 2026-07-24 17:41


