6aspec 2.0.0-dev.26 → 2.0.0-dev.27
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.
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
```
|
|
31
31
|
问题:"请选择适合的流程深度:"
|
|
32
32
|
选项:
|
|
33
|
-
- 轻量级 -
|
|
34
|
-
- 标准级 - 深入分析(
|
|
33
|
+
- 轻量级 - 无需分析现有系统(proposal → specs → design → tasks)(推荐用于与现有业务低耦合的需求)
|
|
34
|
+
- 标准级 - 深入分析(understand → impact → proposal → specs → design → tasks)(推荐用于需要分析现有业务影响面的需求)
|
|
35
35
|
- 完整级 - 全生命周期(proposal → understand → specs → impact → design → tasks → verify → review)(推荐用于关键变更)
|
|
36
36
|
- 快速通道 - 简单修复(直接实现,适用于Bug修复、单文件改动)
|
|
37
37
|
```
|
|
@@ -41,14 +41,15 @@
|
|
|
41
41
|
**轻量级(Lightweight)**:
|
|
42
42
|
- 阶段:proposal → specs → design → tasks
|
|
43
43
|
- 产出:proposal.md, specs.md, design.md, tasks-overview.md
|
|
44
|
-
-
|
|
45
|
-
-
|
|
44
|
+
- 适用:与现有业务低耦合,无需深入分析现有系统(但可参考现有实现模式)
|
|
45
|
+
- 典型场景:新增独立业务模块/包/Maven模块、新增简单功能、UI调整、配置变更
|
|
46
|
+
- 注意:业务本身可以有一定复杂度,关键是不需要分析现有业务的影响面
|
|
46
47
|
|
|
47
48
|
**标准级(Standard)**:
|
|
48
49
|
- 阶段:understand → impact → proposal → specs → design → tasks
|
|
49
50
|
- 产出:understanding.md, impact-analysis.md, proposal.md, specs.md, design.md, tasks-overview.md
|
|
50
|
-
-
|
|
51
|
-
-
|
|
51
|
+
- 适用:与现有业务高耦合,需要深入理解现有系统并评估影响面
|
|
52
|
+
- 典型场景:修改/扩展现有功能、新增业务字段(多表联动)、复杂报表、工作流改造
|
|
52
53
|
|
|
53
54
|
**完整级(Complete)**:
|
|
54
55
|
- 阶段:understand → impact → proposal → specs → design → tasks → verify → review
|