File contents 每日巡检
按当前 chat / orchestrator 的实际流程执行每日启动与每日收口,确保待办、日志、归档与明日优先级就绪。
教程与方案来源
流程依据 :WORKFLOW.md 中的「A. 每日启动」「C. 每日收口」。
协作依据 :AGENTS_ARCHITECTURE.md 中 orchestrator → secretary → 各专项 Agent → 收口汇总。
产出路径 :Butler 的每日巡检产出统一写入 ./工作区/Butler/...;若任务明确属于研究/项目,再显式写入 ./MyWorkSpace/...。
快速开始
每日启动(约 10 分钟)
调用 orchestrator-agent :汇总输入(昨日日志、新任务、会议安排),生成当日任务板。
调用 secretary-agent :创建当日日志并生成待办看板。
按任务类型分发给专项 Agent(literature / file-manager / research-ops / engineering-tracker / discussion)。
# 飞书工作站通过 Cursor CLI 依次调用,展示层工作区指定为 ./工作区
agent -p --force --trust --approve-mcps --output-format json --workspace "./工作区" "<给 orchestrator:汇总昨日与新任务,生成当日任务板,产出写入 ./工作区/Butler/manager/orchestrator/>"
agent -p --force --trust --approve-mcps --output-format json --workspace "./工作区" "<给 secretary:创建今日日志与待办看板,产出写入 ./工作区/Butler/manager/secretary/>"
每日收口(约 15 分钟)
调用 secretary-agent :汇总「完成 / 未完成 / 阻塞」。
调用 orchestrator-agent :生成明日优先级。
调用 file-manager-agent :执行当日归档动作。
# 收口阶段同样指定展示层工作区 ./工作区,并明确产出路径
agent -p ... "<给 secretary:汇总今日完成/未完成/阻塞,产出写入 ./工作区/Butler/manager/secretary/>"
agent -p ... "<给 orchestrator:生成明日优先级,产出写入 ./工作区/Butler/manager/orchestrator/>"
agent -p ... "<给 file-manager:执行当日归档,产出写入 ./工作区/Butler/governance/workspace_hygiene/file_manager/>"
输出格式
orchestrator :当日任务板、明日优先级(Markdown 或结构化列表)。
secretary :当日日志、待办看板、完成/未完成/阻塞汇总。
file-manager :当日归档记录、目录健康检查结果(若有)。
产出默认位于 ./工作区/Butler/...,便于追溯与周报引用。
方案选择
场景
建议
仅「今日启动」
只执行「每日启动」三步。
仅「今日收口」
只执行「每日收口」三步。
完整每日巡检
先启动后收口;若同一天已做过启动,收口可单独执行。
每周例行
见 reference.md,由飞书工作站做职责冲突巡检与治理产出。
注意事项
调用子 Agent 时必须指定工作区 为 ./工作区(展示层)或显式项目路径 ./MyWorkSpace/...,并在 prompt 中写明目标目录。
每个任务至少两条 chat 记录:开始、结束。
每日巡检与每周巡检 不同:每周巡检为治理层面(角色负载、扩编建议、AGENTS_ARCHITECTURE 更新),由 feishu-workstation-agent 直接处理,产出在 ./工作区/Butler/governance/。
更多说明
与 WORKFLOW / 每周巡检的对应关系及检查清单见 reference.md。
1 --- 2 name: daily-inspection 3 description: 每日巡检 4 --- 5 6 # 每日巡检 7 8 按当前 chat / orchestrator 的实际流程执行每日启动与每日收口,确保待办、日志、归档与明日优先级就绪。 9 10 ## 教程与方案来源 11 12 - **流程依据**:`WORKFLOW.md` 中的「A. 每日启动」「C. 每日收口」。 13 - **协作依据**:`AGENTS_ARCHITECTURE.md` 中 orchestrator → secretary → 各专项 Agent → 收口汇总。 14 - **产出路径**:Butler 的每日巡检产出统一写入 `./工作区/Butler/...`;若任务明确属于研究/项目,再显式写入 `./MyWorkSpace/...`。 15 16 ## 快速开始 17 18 ### 每日启动(约 10 分钟) 19 20 1. 调用 **orchestrator-agent**:汇总输入(昨日日志、新任务、会议安排),生成当日任务板。 21 2. 调用 **secretary-agent**:创建当日日志并生成待办看板。 22 3. 按任务类型分发给专项 Agent(literature / file-manager / research-ops / engineering-tracker / discussion)。 23 24 ```bash 25 # 飞书工作站通过 Cursor CLI 依次调用,展示层工作区指定为 ./工作区 26 agent -p --force --trust --approve-mcps --output-format json --workspace "./工作区" "<给 orchestrator:汇总昨日与新任务,生成当日任务板,产出写入 ./工作区/Butler/manager/orchestrator/>" 27 agent -p --force --trust --approve-mcps --output-format json --workspace "./工作区" "<给 secretary:创建今日日志与待办看板,产出写入 ./工作区/Butler/manager/secretary/>" 28 ``` 29 30 ### 每日收口(约 15 分钟) 31 32 1. 调用 **secretary-agent**:汇总「完成 / 未完成 / 阻塞」。 33 2. 调用 **orchestrator-agent**:生成明日优先级。 34 3. 调用 **file-manager-agent**:执行当日归档动作。 35 36 ```bash 37 # 收口阶段同样指定展示层工作区 ./工作区,并明确产出路径 38 agent -p ... "<给 secretary:汇总今日完成/未完成/阻塞,产出写入 ./工作区/Butler/manager/secretary/>" 39 agent -p ... "<给 orchestrator:生成明日优先级,产出写入 ./工作区/Butler/manager/orchestrator/>" 40 agent -p ... "<给 file-manager:执行当日归档,产出写入 ./工作区/Butler/governance/workspace_hygiene/file_manager/>" 41 ``` 42 43 ## 输出格式 44 45 - **orchestrator**:当日任务板、明日优先级(Markdown 或结构化列表)。 46 - **secretary**:当日日志、待办看板、完成/未完成/阻塞汇总。 47 - **file-manager**:当日归档记录、目录健康检查结果(若有)。 48 49 产出默认位于 `./工作区/Butler/...`,便于追溯与周报引用。 50 51 ## 方案选择 52 53 | 场景 | 建议 | 54 |------------|------| 55 | 仅「今日启动」 | 只执行「每日启动」三步。 | 56 | 仅「今日收口」 | 只执行「每日收口」三步。 | 57 | 完整每日巡检 | 先启动后收口;若同一天已做过启动,收口可单独执行。 | 58 | 每周例行 | 见 [reference.md](reference.md),由飞书工作站做职责冲突巡检与治理产出。 | 59 60 ## 注意事项 61 62 - 调用子 Agent 时**必须指定工作区**为 `./工作区`(展示层)或显式项目路径 `./MyWorkSpace/...`,并在 prompt 中写明目标目录。 63 - 每个任务至少两条 chat 记录:开始、结束。 64 - 每日巡检与**每周巡检**不同:每周巡检为治理层面(角色负载、扩编建议、AGENTS_ARCHITECTURE 更新),由 feishu-workstation-agent 直接处理,产出在 `./工作区/Butler/governance/`。 65 66 ## 更多说明 67 68 - 与 WORKFLOW / 每周巡检的对应关系及检查清单见 [reference.md](reference.md)。
ocean326/butler/tree/main/butler_main/platform/skills/pool/chat/daily-inspection commit ca50c41664
Frequently asked questions How do I install the Daily Inspection skill? Run npx skillmds@latest add ocean326/daily-inspection in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Daily Inspection skill do? 每日巡检 It is listed under Coding & Dev Tools on SkillMD.
Is Daily Inspection safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Daily Inspection? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Daily Inspection free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Daily Inspection? ocean326 (@ocean326) published this skill. Their other Agent Skills are listed on their SkillMD profile.