[aide] impl: 子计划6: 任务分析阶段增强完成 - 更新aide skill文档,添加flow status/list/show说明

This commit is contained in:
2025-12-15 18:17:20 +08:00
parent 4a7751d7ff
commit c599089eab
3 changed files with 76 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{ {
"task_id": "2025-12-15T17-28-53", "task_id": "2025-12-15T17-28-53",
"current_phase": "impl", "current_phase": "impl",
"current_step": 13, "current_step": 14,
"started_at": "2025-12-15T17:28:53+08:00", "started_at": "2025-12-15T17:28:53+08:00",
"history": [ "history": [
{ {
@@ -106,6 +106,14 @@
"step": 13, "step": 13,
"summary": "子计划3: aide flow 流程图集成完成 - PlantUML 校验/构建钩子增强", "summary": "子计划3: aide flow 流程图集成完成 - PlantUML 校验/构建钩子增强",
"git_commit": "5f7c91afa1723e327f04f14f245c3e51d3e49fc7" "git_commit": "5f7c91afa1723e327f04f14f245c3e51d3e49fc7"
},
{
"timestamp": "2025-12-15T18:15:56+08:00",
"action": "next-step",
"phase": "impl",
"step": 14,
"summary": "子计划4+5: 项目文档体系和Commands重组完成 - 新增setup/load/docs/run命令",
"git_commit": "4a7751d7ff5d0e0cbbdbe15063b1b8bd855c0317"
} }
] ]
} }

View File

@@ -1 +1 @@
122362 123064

View File

@@ -177,6 +177,72 @@ aide flow error "<描述>"
aide flow error "数据库连接失败,无法继续" aide flow error "数据库连接失败,无法继续"
``` ```
### aide flow status
查看当前任务状态。
```bash
aide flow status
```
**输出示例**
```
→ 任务 ID: 2025-12-15T17-28-53
→ 环节: impl
→ 步骤: 11
→ 开始时间: 2025-12-15T17:28:53+08:00
→ 最新操作: 完成数据库模型设计
→ 操作时间: 2025-12-15T18:09:36+08:00
→ Git 提交: 79facec
```
### aide flow list
列出所有任务(当前 + 归档)。
```bash
aide flow list
```
**输出示例**
```
→ 任务列表:
*[1] 2025-12-15T17-28-53 (impl) 开始任务准备: 阅读任务...
[2] 2025-12-14T09-00-00 (finish) 实现用户登录功能
→ 提示: 使用 aide flow show <task_id> 查看详细状态
```
> 注:`*` 标记表示当前活跃任务
### aide flow show
查看指定任务的详细状态历史。
```bash
aide flow show <task_id>
```
**示例**
```bash
aide flow show 2025-12-15T17-28-53
```
**输出示例**
```
→ 任务 ID: 2025-12-15T17-28-53
→ 当前环节: impl
→ 当前步骤: 3
→ 开始时间: 2025-12-15T17:28:53+08:00
→ 历史记录:
[task-optimize] 开始任务准备 [7defeac]
2025-12-15T17:28:53+08:00 (start)
[flow-design] 进入流程设计环节 [7e1f026]
2025-12-15T17:51:56+08:00 (next-part)
[impl] 流程设计完成,进入实现环节 [5f27bb7]
2025-12-15T17:58:58+08:00 (next-part)
```
### 环节名称列表 ### 环节名称列表
| 环节名 | 说明 | 使用场景 | | 环节名 | 说明 | 使用场景 |