m4l28/workspace/manager/skills/team_retrospective/SKILL.md
团队复盘思考框架(Manager 专用)。当你收到 type=team_retro_trigger 的邮件、或被要求"做团队复盘"时加载此 Skill。从聚合视角分析全员数据,发现跨 Agent 问题,级联触发瓶颈 Agent 的自我复盘,发周报给 Human。
npx skillsauth add kid0317/crewai_mas_demo team_retrospectiveInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
从全局视角分析所有 Agent 的运行状况,发现自我复盘看不到的跨 Agent 问题。
通过 bash 调用 tools/log_query.py(按需使用,不限顺序):
# 全员统计
python3 tools/log_query.py all-agents --days 7
# 单 Agent 任务列表
python3 tools/log_query.py tasks --agent-id <id> --days 7 --sort quality_asc
# 人类纠正记录
python3 tools/log_query.py l1 --days 7 [--keyword "关键词"]
同 self_retrospective 的 JSON 格式,但:
target_file 可以指向任何 Agent 的文件写入 workspace/shared/proposals/manager_team_retro_{date}.json
retro_trigger 邮件给该 Agentweekly_report,内容包含本周恶化指标 + 瓶颈 Agent + 改进提案 + 上周验证结果content-media
技术设计文档 SOP——从需求到设计方案,产出 Markdown 文件到 /workspace/output/
content-media
技术设计文档 SOP——从需求到设计方案,产出 Markdown 文件到 /workspace/output/
content-media
技术设计文档 SOP——从需求到设计方案,产出 Markdown 文件到 /workspace/output/
documentation
将数字员工的产出文件(产品规格文档、验收报告、设计文档等)写入共享工作区或个人工作区。 用于 PM 写 product_spec.md、Manager 写 review_result.md 等场景。 与 memory-save 的区别:本 Skill 专门用于写工作产出,memory-save 用于写记忆/会话状态。