sdd-full 5.1.5 → 5.1.6

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.
@@ -17,17 +17,18 @@ description: Use when the user provides a vague/high-level requirement (technica
17
17
  ```
18
18
  docs/
19
19
  ├── progress/ # 中途落地文档(每轮研讨快照)
20
- │ └── progress_{timestamp}.md
20
+ │ └── {内容提炼3-8字}_{timestamp}.md
21
21
  ├── solutions/ # 最终方案
22
- │ ├── solution_mvp.md
23
- │ ├── solution_standard.md
24
- │ └── solution_pro.md
22
+ │ ├── {内容提炼3-8字}_mvp_{timestamp}.md
23
+ │ ├── {内容提炼3-8字}_standard_{timestamp}.md
24
+ │ └── {内容提炼3-8字}_pro_{timestamp}.md
25
25
  └── archive/ # 历史归档(可选,用于大任务存档)
26
26
  └── ...
27
27
  ```
28
28
 
29
29
  - 任何文件输出路径必须使用 `docs/` 前缀
30
30
  - 中间产物写入 `docs/progress/`,最终方案写入 `docs/solutions/`
31
+ - 文件名格式:按照讨论内容提炼3-8个字 + 数字时间戳(YYYYMMDDHHMMSS)
31
32
 
32
33
  ## 何时使用
33
34
 
@@ -107,7 +108,7 @@ docs/
107
108
  2. 后续调用只传入【快照+最新发言】,严格压缩上下文。
108
109
  3. 指令:/continue=接续;/new=新建;/check=自检模式条件
109
110
  4. **文件夹规范**:所有输出必须保存到**当前议题文件夹**下,文件夹名根据需求自动生成,**最多 8 个字**。
110
- 5. **中途落地文档**:每轮研讨后在议题文件夹下自动输出 `progress_{timestamp}.md`,包含当前讨论进度、阶段性结论、待确定问题,便于随时查看和追溯。
111
+ 5. **中途落地文档**:每轮研讨后在议题文件夹下自动输出 `{内容提炼3-8字}_{timestamp}.md`,包含当前讨论进度、阶段性结论、待确定问题,便于随时查看和追溯。
111
112
 
112
113
  ## 二、模型绑定
113
114
  模型在技能 frontmatter 的 `model` 字段中固定指定(当前为 `deepseek-v4-flash`),加载技能时自动生效。
@@ -147,5 +148,5 @@ docs/
147
148
 
148
149
  1. **文件夹规范**:所有输出必须保存到**当前议题文件夹**下,文件夹名根据需求自动生成,**最多 8 个字**
149
150
  2. 最终输出必须包含三套完整方案,每套方案独立成章,包含完整的技术选型、架构、配置、Prompt、部署步骤和风险说明
150
- 3. **方案必须输出为 **`solution_mvp.md`、`solution_standard.md`、`solution_pro.md` 三个独立的 Markdown 文件,均放在议题文件夹下
151
+ 3. **方案必须输出为 **`{内容提炼3-8字}_mvp_{timestamp}.md`、`{内容提炼3-8字}_standard_{timestamp}.md`、`{内容提炼3-8字}_pro_{timestamp}.md` 三个独立的 Markdown 文件,均放在议题文件夹下
151
152
  4. 主上下文不堆积中间讨论与冗余信息
package/bin.js CHANGED
@@ -6,7 +6,7 @@ const fs = require('fs');
6
6
  const path = require('path');
7
7
 
8
8
  const SDD = {
9
- version: '5.1.5',
9
+ version: '5.1.6',
10
10
  name: 'sdd-full',
11
11
  description: '完整的软件设计开发技能包'
12
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdd-full",
3
- "version": "5.1.5",
3
+ "version": "5.1.6",
4
4
  "description": "SDD Full - 完整的软件设计开发技能包",
5
5
  "main": "index.js",
6
6
  "bin": "./bin.js",