Report format
三省六部 · Claude Code ‘Agent Teams’ · A multi-agent collaboration governance framework built entirely with .md files Designed exclusively for Claude Code Agent Teams
npx -y skills add cheukswiss/etdxm --skill report-formatAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
尚书省 report 模式回奏格式规范,定义回奏必备字段与结构
SKILL.md
2.2 KB, as published. Nobody here has run it
Skill: 回奏格式
适用 Agent:尚书省 加载时机:尚书省 report 模式(汇总完毕准备回奏时)
回奏报告格式
{
"report": {
"plan_id": "PLAN-20260312-001",
"title": "用户登录模块开发",
"status": "delivered",
"summary": "简要执行结果描述",
"subtask_results": [
{
"task_id": "TASK-001",
"department": "gongbu",
"status": "done",
"output": "src/auth/login.ts"
},
{
"task_id": "TASK-002",
"department": "xingbu",
"status": "done",
"output": "tests/auth/login.test.ts"
}
],
"criteria_verification": [
{ "criterion": "JWT Token 正确签发", "result": "pass", "evidence": "src/auth/login.ts:42 签发逻辑 + 单测通过" },
{ "criterion": "单元测试覆盖率 > 80%", "result": "pass", "evidence": "coverage 报告 87%" }
],
"issues": [],
"recommendations": ""
}
}
回奏流程
尚书省编写回奏报告后,通过 SendMessage 发送至太子(Lead),由太子汇总呈报皇上。太子不得修改回奏内容,仅负责中转与格式化呈报。
必备字段
plan_id:关联的方案编号status:delivered / partial / failed / rejectedsummary:一段话概括执行结果subtask_results:每个子任务的完成状态与产出物issues:执行过程中遇到的问题(即使已解决也需记录)
闭环验收(status=delivered 强制)
status 标记为 delivered 时,必须附 criteria_verification[] 逐条验收原草案的 acceptance_criteria,且:
- 数组非空,每条含
criterion/result/evidence - 每条
result必须为pass(存在fail则不得标记 delivered) - 每条
evidence须非空,给出可核验的取证(文件路径、测试结果、覆盖率数据等)
此为运行时律令:H08 message-gateway 经 validate-payload.sh 强制校验,不满足则封驳。partial / failed / rejected 状态不要求闭环验收,但应在 issues / summary 中说明缺口。