@legna-lnc/legnacode 2.1.2 → 2.1.4
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 +8 -0
- package/README.md +2 -1
- package/README.zh-CN.md +2 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to LegnaCode CLI will be documented in this file.
|
|
6
6
|
|
|
7
|
+
## [2.1.3] - 2026-05-23
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
- **`/loop` cron not firing** — Removed GrowthBook `tengu_kairos_cron` remote feature flag dependency from `isKairosCronEnabled()` and `isDurableCronEnabled()`. Cron scheduling now only depends on the build-time `AGENT_TRIGGERS` flag + local `CLAUDE_CODE_DISABLE_CRON` env var. LegnaCode controls its own features locally.
|
|
12
|
+
- **OpenAI stream bridge silent empty response** — When an OpenAI-compatible API (DeepSeek, etc.) stream ends without `finish_reason` and has produced no content, throw an error instead of silently treating it as a successful `end_turn`. If the stream has open tool_call blocks, infer `tool_use` stop_reason so the agentic loop continues.
|
|
13
|
+
- **Cron prompt path references** — Fixed `.claude/scheduled_tasks.json` → `.legna/scheduled_tasks.json` in CronDelete/CronList tool prompts.
|
|
14
|
+
|
|
7
15
|
## [2.1.2] - 2026-05-07
|
|
8
16
|
|
|
9
17
|
### Fixes
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**An AI-powered terminal programming assistant, supercharged.**
|
|
6
6
|
|
|
7
|
-
[](./CHANGELOG.md)
|
|
8
8
|
[](#platform-support)
|
|
9
9
|
[](./LICENSE)
|
|
10
10
|
[](https://github.com/anthropics/claude-code)
|
|
@@ -34,6 +34,7 @@ LegnaCode is built on top of [Claude Code CLI](https://github.com/anthropics/cla
|
|
|
34
34
|
|
|
35
35
|
| Version | Summary |
|
|
36
36
|
|---------|---------|
|
|
37
|
+
| **2.1.3** | Remove GrowthBook dependency from /loop cron gate; fix OpenAI stream bridge silently swallowing empty responses |
|
|
37
38
|
| **2.1.2** | Fix ctrl+o crash when sandbox is disabled (SandboxViolationStore.subscribe guard) |
|
|
38
39
|
| **2.1.1** | DeepSeek deep optimization: auto reasoning effort, precise pricing, model alias expansion, tool name encoding |
|
|
39
40
|
| **2.1.0** | Platform-aware publish (Mac→darwin+linux, Win→win32); DeepSeek reasoning_content multi-turn 400 fix; ShellProgressMessage crash fix |
|
package/README.zh-CN.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**AI 驱动的终端编程助手,全面增强。**
|
|
6
6
|
|
|
7
|
-
[](./CHANGELOG.zh-CN.md)
|
|
8
8
|
[](#平台支持)
|
|
9
9
|
[](./LICENSE)
|
|
10
10
|
[](https://github.com/anthropics/claude-code)
|
|
@@ -34,6 +34,7 @@ LegnaCode 基于 [Claude Code CLI](https://github.com/anthropics/claude-code)
|
|
|
34
34
|
|
|
35
35
|
| 版本 | 摘要 |
|
|
36
36
|
|------|------|
|
|
37
|
+
| **2.1.3** | 移除 /loop 定时任务对 GrowthBook 的依赖;修复 OpenAI 流式桥接空响应静默吞错误 |
|
|
37
38
|
| **2.1.2** | 修复 sandbox 未启用时 ctrl+o 崩溃(SandboxViolationStore.subscribe 防御) |
|
|
38
39
|
| **2.1.1** | DeepSeek 深度优化:自适应推理力度、精确定价、模型别名扩展、工具名编码 |
|
|
39
40
|
| **2.1.0** | 平台感知发布(Mac→darwin+linux,Win→win32);DeepSeek reasoning_content 多轮 400 修复;ShellProgressMessage 崩溃修复 |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legna-lnc/legnacode",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "LegnaCode — legna.lnc's official CLI for coding assistance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -142,13 +142,13 @@
|
|
|
142
142
|
"bun": ">=1.2.0"
|
|
143
143
|
},
|
|
144
144
|
"optionalDependencies": {
|
|
145
|
-
"@legna-lnc/legnacode-darwin-arm64": "2.1.
|
|
146
|
-
"@legna-lnc/legnacode-darwin-x64": "2.1.
|
|
147
|
-
"@legna-lnc/legnacode-darwin-x64-baseline": "2.1.
|
|
148
|
-
"@legna-lnc/legnacode-linux-x64": "2.1.
|
|
149
|
-
"@legna-lnc/legnacode-linux-x64-baseline": "2.1.
|
|
150
|
-
"@legna-lnc/legnacode-linux-arm64": "2.1.
|
|
151
|
-
"@legna-lnc/legnacode-win32-x64": "2.1.
|
|
152
|
-
"@legna-lnc/legnacode-win32-ia32": "2.1.
|
|
145
|
+
"@legna-lnc/legnacode-darwin-arm64": "2.1.4",
|
|
146
|
+
"@legna-lnc/legnacode-darwin-x64": "2.1.4",
|
|
147
|
+
"@legna-lnc/legnacode-darwin-x64-baseline": "2.1.4",
|
|
148
|
+
"@legna-lnc/legnacode-linux-x64": "2.1.4",
|
|
149
|
+
"@legna-lnc/legnacode-linux-x64-baseline": "2.1.4",
|
|
150
|
+
"@legna-lnc/legnacode-linux-arm64": "2.1.4",
|
|
151
|
+
"@legna-lnc/legnacode-win32-x64": "2.1.4",
|
|
152
|
+
"@legna-lnc/legnacode-win32-ia32": "2.1.4"
|
|
153
153
|
}
|
|
154
154
|
}
|