dev-playbooks-cn 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -73,8 +73,18 @@
|
|
|
73
73
|
主线计划区写法规范(强制):
|
|
74
74
|
- 每个任务包必须有:目的(Why)、交付物(Deliverables)、影响范围(Files/Modules)、验收标准(Acceptance
|
|
75
75
|
Criteria)、依赖(Dependencies)、风险(Risks)。
|
|
76
|
-
-
|
|
77
|
-
-
|
|
76
|
+
- 子任务写到"接口/契约/行为边界"为止,不写函数体实现。
|
|
77
|
+
- 验收标准必须"可观察、可测试":优先写成"新增/更新哪些测试用例、通过哪些验收检查、关键指标达到什么阈值"。
|
|
78
|
+
- **任务勾选框格式(强制)**:每个子任务必须使用 Markdown 任务列表格式 `- [ ]`,以支持 Coder 的断点续做协议。
|
|
79
|
+
- 初始状态全部为 `- [ ]`(未完成)
|
|
80
|
+
- Coder 完成后会标记为 `- [x]`(已完成)
|
|
81
|
+
- 子任务标题必须写在 `- [ ] MPx.y ...` 这一行内,不要用 `#### MPx.y:` 标题替代勾选框
|
|
82
|
+
- 示例格式:
|
|
83
|
+
```markdown
|
|
84
|
+
### MP1: 任务包名称
|
|
85
|
+
- [ ] MP1.1 子任务描述
|
|
86
|
+
- [ ] MP1.2 子任务描述
|
|
87
|
+
```
|
|
78
88
|
|
|
79
89
|
临时计划区写法规范(强制):
|
|
80
90
|
- 仅用于计划外高优任务;需要说明:触发原因、影响面、最小修复范围、回归测试要求。
|