@legna-lnc/legnacode 1.4.1 → 1.4.2
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 +17 -0
- package/README.md +1 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to LegnaCode CLI will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.4.2] - 2026-04-11
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **verbose 默认开启** — 用户默认看到完整的工具执行过程和进度信息
|
|
10
|
+
- **Token/Timer 即时显示** — 去掉 30 秒延迟,token 计数和耗时从第 1 秒就显示
|
|
11
|
+
- **Autocompact 状态可见** — 压缩对话时显示 "Compacting conversation context..." 系统消息
|
|
12
|
+
- **中断原因可见** — abort 时显示中断原因(streaming 和 tool_execution 两个阶段)
|
|
13
|
+
- **Output truncated 重试提示** — max output tokens recovery 时显示重试进度
|
|
14
|
+
- **工具执行日志** — StreamingToolExecutor 输出当前工具名和队列深度
|
|
15
|
+
- **Microcompact/Snip 日志** — 压缩操作添加 debug 日志
|
|
16
|
+
- **ForkedAgent 启动日志** — 子 agent 启动时输出标签和 ID
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- **Apple Terminal 通知逻辑修复** — bell 未禁用时才发 bell(之前逻辑反了)
|
|
21
|
+
|
|
5
22
|
## [1.4.0] - 2026-04-11
|
|
6
23
|
|
|
7
24
|
### Features
|
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ LegnaCode 是一个基于 Anthropic Claude 的智能终端编程助手,让你
|
|
|
12
12
|
|
|
13
13
|
| 版本 | 日期 | 摘要 |
|
|
14
14
|
|------|------|------|
|
|
15
|
+
| [1.4.2](./CHANGELOG.md#142---2026-04-11) | 2026-04-11 | 进度反馈增强(消除 8 个静默代码路径),verbose 默认开启,Token/Timer 即时显示,中断原因可见 |
|
|
15
16
|
| [1.4.0](./CHANGELOG.md#140---2026-04-11) | 2026-04-11 | MiniMax 深度原生兼容(6 个多模态工具),RPC 子进程工具执行,Memory Provider 插件系统,智能模型路由,自主技能检测,上下文压缩增强,跨会话记忆搜索 |
|
|
16
17
|
| [1.3.7](./CHANGELOG.md#137---2026-04-09) | 2026-04-09 | Resume 会话检测修复,Interrupted 诊断日志,后台任务状态可见性增强 |
|
|
17
18
|
| [1.3.6](./CHANGELOG.md#136---2026-04-09) | 2026-04-09 | 修复 Windows 路径分隔符导致 Edit 工具 "File has been unexpectedly modified" 误报 |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legna-lnc/legnacode",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "LegnaCode — legna.lnc's official CLI for coding assistance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -142,11 +142,11 @@
|
|
|
142
142
|
"bun": ">=1.2.0"
|
|
143
143
|
},
|
|
144
144
|
"optionalDependencies": {
|
|
145
|
-
"@legna-lnc/legnacode-darwin-arm64": "1.4.
|
|
146
|
-
"@legna-lnc/legnacode-darwin-x64": "1.4.
|
|
147
|
-
"@legna-lnc/legnacode-linux-x64": "1.4.
|
|
148
|
-
"@legna-lnc/legnacode-linux-arm64": "1.4.
|
|
149
|
-
"@legna-lnc/legnacode-win32-x64": "1.4.
|
|
150
|
-
"@legna-lnc/legnacode-win32-ia32": "1.4.
|
|
145
|
+
"@legna-lnc/legnacode-darwin-arm64": "1.4.2",
|
|
146
|
+
"@legna-lnc/legnacode-darwin-x64": "1.4.2",
|
|
147
|
+
"@legna-lnc/legnacode-linux-x64": "1.4.2",
|
|
148
|
+
"@legna-lnc/legnacode-linux-arm64": "1.4.2",
|
|
149
|
+
"@legna-lnc/legnacode-win32-x64": "1.4.2",
|
|
150
|
+
"@legna-lnc/legnacode-win32-ia32": "1.4.2"
|
|
151
151
|
}
|
|
152
152
|
}
|