@nick848/sf-cli 1.0.1 → 1.0.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/CHANGELOG.md ADDED
@@ -0,0 +1,44 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## v1.0.3 (2026-03-22)
9
+
10
+ **新增功能**
11
+
12
+ - 📝 CHANGELOG.md - 版本更新历史独立文件
13
+ - 🔄 归档自动更新 - 工作流归档时自动追加变更条目
14
+ - 📦 发布包含 - npm 包包含 CHANGELOG.md
15
+
16
+ ## v1.0.2 (2026-03-22)
17
+
18
+ **新增功能**
19
+
20
+ - ✅ 回归测试机制 - `/opsx:test` 命令执行测试
21
+ - 🔄 归档前自动测试 - 失败则阻止归档
22
+ - 📊 测试覆盖率检查 - 可配置阈值
23
+ - 🔧 code-reviewer Agent 增强 - 新增测试能力
24
+
25
+ ## v1.0.1 (2026-03-21)
26
+
27
+ **新增功能**
28
+
29
+ - 🔒 强制工作流机制 - 所有代码修改必须走工作流流程
30
+ - 📊 状态栏显示工作流阶段
31
+ - 🔐 各阶段权限控制 - 读/写/Shell/Agent 受限
32
+
33
+ ## v1.0.0 (2026-03-21)
34
+
35
+ **首次发布**
36
+
37
+ - 🤖 AI驱动 - 支持 GLM-5、GPT-4o、Claude 等多种AI模型
38
+ - 📋 标准化流程 - BDD+TDD+OpenSpec 规范支持
39
+ - 📚 规范学习 - 自动从代码和对话中学习开发规范
40
+ - 🔧 Sub Agent - 专业化 Agent 协作(前端开发、代码审核、架构师、测试)
41
+ - 🔄 工作流控制 - 三阶段人工确认、回滚机制
42
+ - 🔌 MCP集成 - 支持蓝湖、Figma 设计稿
43
+ - 💻 双命令入口 - `sf-cli` 和 `spfe` 均可启动
44
+ - 📝 交互式命令 - 支持 `/` 斜杠命令和命令行参数模式
package/README.md CHANGED
@@ -184,29 +184,10 @@ await norms.scanProject(projectPath);
184
184
  const result = await runAgent('frontend-dev', ['创建登录组件'], ctx);
185
185
  ```
186
186
 
187
- ## Changelog
188
-
189
- ### v1.0.1 (2026-03-21)
190
-
191
- **新增功能**
192
-
193
- - 🔒 强制工作流机制 - 所有代码修改必须走工作流流程
194
- - 📊 状态栏显示工作流阶段
195
- - 🔐 各阶段权限控制 - 读/写/Shell/Agent 受限
196
-
197
- ### v1.0.0 (2026-03-21)
198
-
199
- **首次发布**
200
-
201
- - 🤖 AI驱动 - 支持 GLM-5、GPT-4o、Claude 等多种AI模型
202
- - 📋 标准化流程 - BDD+TDD+OpenSpec 规范支持
203
- - 📚 规范学习 - 自动从代码和对话中学习开发规范
204
- - 🔧 Sub Agent - 专业化 Agent 协作(前端开发、代码审核、架构师、测试)
205
- - 🔄 工作流控制 - 三阶段人工确认、回滚机制
206
- - 🔌 MCP集成 - 支持蓝湖、Figma 设计稿
207
- - 💻 双命令入口 - `sf-cli` 和 `spfe` 均可启动
208
- - 📝 交互式命令 - 支持 `/` 斜杠命令和命令行参数模式
209
-
210
187
  ## License
211
188
 
212
189
  [MIT](LICENSE)
190
+
191
+ ## Changelog
192
+
193
+ 查看 [CHANGELOG.md](./CHANGELOG.md) 了解版本更新历史。