Loading...
Loading...
Compare original and translation side by side
/overseer-plan/overseer-plan/overseer-plan <markdown-file-path>
/overseer-plan <file> --priority 1 # Set priority (0-2, 0=highest)
/overseer-plan <file> --parent <task-id> # Create as child of existing task/overseer-plan <markdown-file-path>
/overseer-plan <file> --priority 1 # 设置优先级(0-2,0为最高)
/overseer-plan <file> --parent <task-id> # 作为现有任务的子任务创建#--parent#--parent| Depth | Name | Example |
|---|---|---|
| 0 | Milestone | "Add user authentication system" |
| 1 | Task | "Implement JWT middleware" |
| 2 | Subtask | "Add token verification function" |
| 深度 | 名称 | 示例 |
|---|---|---|
| 0 | 里程碑 | "添加用户认证系统" |
| 1 | 任务 | "实现JWT中间件" |
| 2 | 子任务 | "添加令牌验证函数" |
await tasks.get("<id>"); // TaskWithContext (full context + learnings)
await tasks.list({ parentId: "<id>" }); // Task[] (children without context chain)
await tasks.start("<id>"); // Task (VCS required - creates bookmark, records start commit)
await tasks.complete("<id>", { result: "...", learnings: [...] }); // Task (VCS required - commits, bubbles learnings)startcompleteNotARepositoryawait tasks.get("<id>"); // TaskWithContext(完整上下文+经验总结)
await tasks.list({ parentId: "<id>" }); // Task[](不含上下文链的子任务列表)
await tasks.start("<id>"); // Task(需要VCS - 创建书签,记录开始提交)
await tasks.complete("<id>", { result: "...", learnings: [...] }); // Task(需要VCS - 提交代码,同步经验总结)startcompleteNotARepository| Task | File |
|---|---|
| Understanding API | @file references/api.md |
| Agent implementation | @file references/implementation.md |
| See examples | @file references/examples.md |
| 任务 | 文件 |
|---|---|
| 理解API | @file references/api.md |
| Agent实现 | @file references/implementation.md |
| 查看示例 | @file references/examples.md |
| File | Purpose |
|---|---|
| Overseer MCP codemode API types/methods |
| Step-by-step execution instructions for agent |
| Complete worked examples |
| 文件 | 用途 |
|---|---|
| Overseer MCP代码模式的API类型/方法 |
| Agent的分步执行说明 |
| 完整的实操示例 |