feat: overhaul task board and cross-conversation workflows
This commit is contained in:
@@ -68,10 +68,9 @@ ccweb 会给 Codex / Codex App 会话注入内置 MCP 配置,让 Agent 可以
|
||||
|
||||
| MCP 工具 | 用途 |
|
||||
|----------|------|
|
||||
| `ccweb_list_conversations` | 列出可投递的 ccweb 对话,只返回轻量元数据 |
|
||||
| `ccweb_list_conversations` | 列出可投递的 ccweb 对话;默认 `scope=all`,使用 `scope=children` 时只返回当前来源直接创建的持久子对话 |
|
||||
| `ccweb_create_conversation` | 创建新的 ccweb 持久对话,可指定 `cwd`、标题、模式和首条消息 |
|
||||
| `ccweb_send_message` | 给指定对话投递消息,目标对话显示“来自某对话”的气泡 |
|
||||
| `ccweb_request_reply` | 投递消息并等待目标对话本轮完成后返回结果 |
|
||||
| `ccweb_send_message` | 给指定对话投递消息;必填 `replyMode=one_way` 时仅单向投递,`replyMode=return_and_continue` 时在目标本轮完成后自动回传并继续来源对话 |
|
||||
| `ccweb_list_pending_replies` | 查看当前来源对话等待中的跨对话回复 |
|
||||
| `ccweb_get_pending_reply` | 按 `requestId` 读取等待回复的状态和正文 |
|
||||
|
||||
@@ -79,7 +78,10 @@ ccweb 会给 Codex / Codex App 会话注入内置 MCP 配置,让 Agent 可以
|
||||
|
||||
- **一次性并行研究** 优先使用 Codex App 原生子代理
|
||||
- **需要长期可追踪、可继续打开聊天的任务** 使用 `ccweb_create_conversation`
|
||||
- `ccweb_list_conversations` 的 `scope=children` 只匹配当前来源通过 `ccweb_create_conversation` 直接创建的对话,不包含分支会话或更深层后代
|
||||
- `ccweb_create_conversation` 默认继承来源对话 Agent;未显式传 `mode` 时默认 `yolo`
|
||||
- `ccweb_send_message` 的两种模式都会立即返回,不会同步等待目标对话;仅当来源后续不需要目标结果时使用 `one_way`,分析、实现、测试、验收或完成后需要汇报时使用 `return_and_continue`
|
||||
- `ccweb_request_reply` 仅作为已加载旧工具定义的存量线程内部兼容别名保留,新调用不要再使用
|
||||
- 跨对话返回内容会以只读展示消息写回来源对话,避免再次触发来源模型浪费 token
|
||||
|
||||
### 子代理状态展示
|
||||
|
||||
Reference in New Issue
Block a user