Files
tools-show/.agents/skills/executing-plans/references/execution-state-template.md
2026-04-11 20:46:55 +08:00

56 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 执行状态记录模板
本模板用于记录执行过程中的状态信息。
---
## 使用方式
在会话状态文件 `design/session-state.md` 中记录执行相关内容。
---
## 执行状态记录格式
在会话状态文件中追加以下内容:
```markdown
## 执行状态
### 计划信息
- **计划文档**[计划文件路径]
- **纲领文件**[纲领文件路径](如适用)
- **开始时间**YYYY-MM-DD HH:mm
### 任务进度
| 任务 | 状态 | 完成时间 | 备注 |
|------|------|----------|------|
| 任务1[名称] | 已完成 | HH:mm | - |
| 任务2[名称] | 进行中 | - | 步骤2/4 |
| 任务3[名称] | 待执行 | - | - |
### 遇到的问题
| 问题 | 解决方案 | 解决时间 |
|------|----------|----------|
| [问题描述] | [如何解决] | HH:mm |
```
---
## 多子系统记录
对于多子系统项目,在会话状态文件中追加:
```markdown
## 子系统进度
| 子系统 | 状态 | 计划文档 |
|--------|------|----------|
| 子系统A | 已完成 | plans/subsystem-a.md |
| 子系统B | 进行中 | plans/subsystem-b.md |
| 子系统C | 待执行 | plans/subsystem-c.md |
```