@nick848/sf-cli 1.0.15 → 1.0.17
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/CHANGELOG.md +24 -0
- package/dist/cli/index.js +843 -656
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +250 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +250 -23
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## v1.0.16 (2026-03-22)
|
|
9
|
+
|
|
10
|
+
**新增参考资源分析阶段**
|
|
11
|
+
|
|
12
|
+
- ✨ 新增「阶段 3/9: 参考资源分析」- 自动提取需求中的 URL 并分析
|
|
13
|
+
- ✨ 支持网页、设计稿、图片、API 等多种参考类型
|
|
14
|
+
- ✨ 使用 AI 分析参考内容,提取功能点、UI 结构、交互方式
|
|
15
|
+
- 🔧 规格拆分前先获取并理解参考内容,生成更精准的任务
|
|
16
|
+
|
|
17
|
+
**新工作流**:
|
|
18
|
+
```
|
|
19
|
+
阶段 1: 项目上下文获取
|
|
20
|
+
阶段 2: 需求澄清
|
|
21
|
+
阶段 3: 参考资源分析 ← 新增
|
|
22
|
+
- 自动提取 URL
|
|
23
|
+
- 获取资源内容
|
|
24
|
+
- AI 分析功能/结构
|
|
25
|
+
- 追加到精炼需求
|
|
26
|
+
阶段 4: 复杂度评估
|
|
27
|
+
阶段 5: BDD 场景拆解
|
|
28
|
+
阶段 6: OpenSpec 规格
|
|
29
|
+
阶段 7-9: TDD → 开发 → 审核
|
|
30
|
+
```
|
|
31
|
+
|
|
8
32
|
## v1.0.13 (2026-03-22)
|
|
9
33
|
|
|
10
34
|
**修复 DeepSeek API Key 验证**
|