speccore 5.27.19 → 5.27.20
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/README.md +21 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,23 +54,29 @@ init → doc2spec → analyze → split → plan → execute → pr → done →
|
|
|
54
54
|
| 管理 | `iteration` `task` `change` |
|
|
55
55
|
| 查看 | `dashboard` `search` `validate` `retro` `ops` |
|
|
56
56
|
|
|
57
|
-
##
|
|
57
|
+
## 目录结构(全英文)
|
|
58
58
|
|
|
59
59
|
```
|
|
60
|
-
Iteration-001
|
|
61
|
-
├──
|
|
62
|
-
|
|
63
|
-
│ ├──
|
|
64
|
-
│ ├──
|
|
65
|
-
│
|
|
66
|
-
├──
|
|
67
|
-
│
|
|
68
|
-
│
|
|
69
|
-
├──
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
60
|
+
Iteration-001-meeting/ ← 会议系统(中文→slug: meeting)
|
|
61
|
+
├── 000-overview/ ← 进度跟踪
|
|
62
|
+
├── 010-requirements/ ← doc2spec 导入
|
|
63
|
+
│ ├── sources/ ← 原始 PRD/Word
|
|
64
|
+
│ ├── assets/ ← 素材
|
|
65
|
+
│ │ ├── prd/ ← PRD 提取图片
|
|
66
|
+
│ │ ├── prototypes/ ← 产品原型
|
|
67
|
+
│ │ └── designs/ ← UI 设计稿
|
|
68
|
+
│ ├── app/ ← APP 端需求
|
|
69
|
+
│ ├── h5/ ← H5 端需求
|
|
70
|
+
│ ├── miniapp/ ← 小程序端需求
|
|
71
|
+
│ ├── admin/ ← 管理后台需求
|
|
72
|
+
│ └── _shared/ ← 跨端通用规则
|
|
73
|
+
├── 020-specs/ ← analyze 输出
|
|
74
|
+
│ ├── app/ANALYSIS.md
|
|
75
|
+
│ ├── h5/ANALYSIS.md
|
|
76
|
+
│ ├── miniapp/ANALYSIS.md
|
|
77
|
+
│ └── admin/ANALYSIS.md
|
|
78
|
+
├── STAFFING.md ← 人员排期
|
|
79
|
+
└── Task-001-*/ ← split 拆分任务
|
|
74
80
|
```
|
|
75
81
|
|
|
76
82
|
## 断点重试
|