@nick848/sf-cli 1.0.8 → 1.0.10
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 +30 -0
- package/dist/cli/index.js +3536 -3702
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +374 -382
- package/dist/index.d.ts +374 -382
- package/dist/index.js +4085 -4382
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3263 -3564
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,36 @@ 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.10 (2026-03-22)
|
|
9
|
+
|
|
10
|
+
**重大重构 - 工作流系统重写**
|
|
11
|
+
|
|
12
|
+
- ✨ 全新的 `WorkflowSession` 架构 - 7 阶段自动流转
|
|
13
|
+
- 🔄 自动执行流程:context → analysis → bdd → spec → tdd → develop → review
|
|
14
|
+
- ⏸️ 唯一暂停点:spec 阶段等待 y/n 确认
|
|
15
|
+
- 🎯 简化交互:y/n/c 三键操作(确认/重新生成/取消)
|
|
16
|
+
|
|
17
|
+
**架构改进**
|
|
18
|
+
|
|
19
|
+
- 📦 `new.ts` - 完全重写,移除旧 WorkflowEngine 依赖
|
|
20
|
+
- 📦 `natural.ts` - 简化为工作流输入处理
|
|
21
|
+
- 📦 `executor.ts` - 简化权限控制逻辑
|
|
22
|
+
- 📦 `repl.ts` - 使用 `getActiveSession()` 获取状态
|
|
23
|
+
- 📦 `status.ts` - 支持新 WorkflowPhase 类型显示
|
|
24
|
+
- 📦 `types/index.ts` - 新增 `WorkflowPhase` 类型定义
|
|
25
|
+
|
|
26
|
+
**修复问题**
|
|
27
|
+
|
|
28
|
+
- 🐛 修复 TypeScript 编译错误(可选属性处理)
|
|
29
|
+
- 🔧 移除冗余的 opsx 命令依赖
|
|
30
|
+
|
|
31
|
+
## v1.0.9 (2026-03-22)
|
|
32
|
+
|
|
33
|
+
**修复问题**
|
|
34
|
+
|
|
35
|
+
- 🐛 修复有活跃工作流时自然语言输入被阻止的问题
|
|
36
|
+
- 🔧 自然语言输入在有工作流时始终允许(用于 y/n 确认)
|
|
37
|
+
|
|
8
38
|
## v1.0.8 (2026-03-22)
|
|
9
39
|
|
|
10
40
|
**交互改进**
|