什么是 Mission Control

Mission Control 本质上是一套由 OpenClaw 自行生成的控制台应用。它解决的是三个核心问题:

  • 可观测性:在同一个界面追踪 Agent 正在做什么
  • 流程工具化:把重复操作沉淀为固定模块
  • 记忆系统化:把散落在文件中的上下文升级为可检索的资产

整个过程不需要你手写代码,直接用自然语言指令让 OpenClaw 生成即可。建议技术栈在一开始就锁定:Next.js + Convex,避免后续模块之间的技术选型冲突。

六个核心模块

1. Tasks Board — 任务看板

解决的问题:你和 AI 的工作透明化。谁在做什么、进度如何、卡在哪里,一眼可见。Agent 也能看到你的状态,从而主动接走任务并更新进度。

指令

Please build a task board for us that tracks all the tasks we are working on. I should be able to see the status of every task and who the task is assigned to, me or you. Moving forward please put all tasks you work on into this board and update it in real time. Build it as a Next.js app with a Convex database.

2. Content Pipeline — 内容流水线

解决的问题:把内容创作拆成标准流水线——Idea → Script → Thumbnail → Filming → Publish。你只负责丢灵感,Agent 定时生成脚本、缩略图,自动推进卡片到下一阶段,大幅降低「重复启动」的心理成本。

指令

Please build me a content pipeline tool. I want it to have every stage of content creation in it. I should be able to edit ideas and put full scripts in it and attach images if need be. I want you to manage this pipeline with me and add wherever you can. Build it as a Next.js app with a Convex database.

3. Calendar — 日历

解决的问题:很多人觉得 Agent 不够主动,根本原因往往是「没有可见的排程」。日历充当你对 Agent 的 cron jobs / scheduled tasks 的审计面板——任务有没有排进来、什么时候跑、是否执行成功,一目了然。

指令

Please build a calendar for us in the mission control. All your scheduled tasks and cron jobs should live here. Anytime I have you schedule a task, put it in the calendar so I can ensure you are doing them correctly. Build it as a Next.js app with a Convex database.

4. Memory — 记忆库

解决的问题:把 Agent 产生的每一条记忆变成 UI 中的文档集合,支持全局搜索。你不再需要靠记忆去翻文件,而是像查资料一样检索你们过去的决策、偏好、策略和上下文。

指令

Please build a memory screen in our mission control. It should list all your memories in beautiful documents. We should also have a search component so I can quickly search through all our memories. Build it as a Next.js app with a Convex database.

5. Team — 团队结构

解决的问题:一人公司经常需要切换开发、写作、设计、研究等不同能力。Team 页面把这些常用 sub-agents 固化为组织架构——角色、职责、当前任务、关联记忆与工具都清晰可见,也让 Agent 更明确「该调用谁来做事」。

指令

Please build me a team structure screen. It should show you, plus all the subagents you regularly spin up to do work. If you haven't thought about which sub agents you spin up, please create them and organize them by roles and responsibilities. This should be developers, writers, and designers as examples. Build it as a Next.js app with a Convex database.

6. Office — 数字办公室

解决的问题:一个实时状态总览 + 组织效率仪表板。用头像和工位展示每个 Agent 的当前状态与任务进度——谁空闲、谁卡住、谁在跑流程,视觉化呈现,强化「带团队」的运营感。

指令

Please build me a digital office screen where I can view each agent working. They should be represented by individual avatars and have their own work areas and computers. When they are working they should be at their computer. I should be able to quickly view the status of every team member. Build it as a Next.js app with a Convex database.

落地建议

不必一次搭完六个模块。优先把 Tasks Board + Calendar + Memory 跑起来,你会立刻感受到 Agent 从「问一句答一句的对话工具」变成「可调度、可审计、可检索的运营系统」。之后再根据自己的实际工作流逐步叠加模块,Mission Control 会越用越像你自己的 AI 操作系统。