opencode-acp 1.14.9-dev.1 → 1.14.9

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/README.md CHANGED
@@ -492,6 +492,17 @@ For the complete list with root cause analysis, see the [bug tracker](https://gi
492
492
 
493
493
  ## Changelog
494
494
 
495
+ ### v1.14.9 — Stable Release (3 PRs since v1.14.8)
496
+
497
+ Stable release with nudge loop fix, holistic T2/T3 compression prompts, and multi-entry compress format documentation.
498
+
499
+ **PRs included**:
500
+ - **#252** — Two fixes: (1) **Issue #251**: `filterRecommendedRanges` suppressed ALL recommendations when compressible content was below 5% of modelContextLimit. Rewrote to always show all ranges. (2) **Nudge loop fix**: `lastNudgeShownTokens` reset to `undefined` on `nothingToCompress` caused nudges firing every turn.
501
+ - **#257** — Bump `context-compress-algorithms` 1.2.1 → 1.3.0. Holistic TIER2/TIER3 prompts — summarize by theme instead of per-block, fixing length overflow with 70+ T1 blocks (issue #256).
502
+ - **#259** — Document multi-entry compress format in system prompt and T2/T3 nudge. The compress tool already supported `content` arrays (PR #156), but only single-entry was shown for block-based compression.
503
+
504
+ **Install**: `opencode plugin opencode-acp@stable --global`
505
+
495
506
  ### v1.14.9-dev.1 — Dev Prerelease (1 PR since v1.14.8-dev.5)
496
507
 
497
508
  Dev prerelease covering PR #259. Published to `dev` npm tag for early testing.
package/README.zh-CN.md CHANGED
@@ -446,6 +446,17 @@ ACP 是 DCP 的直接替代品。迁移步骤:
446
446
 
447
447
  ## 更新日志
448
448
 
449
+ ### v1.14.9 — 正式版(v1.14.8 以来 3 个 PR)
450
+
451
+ 正式版发布,包含 nudge 循环修复、整体式 T2/T3 压缩提示词、多条目 compress 格式文档。
452
+
453
+ **包含的 PR**:
454
+ - **#252** — 两个修复:(1) **Issue #251**:`filterRecommendedRanges` 在可压缩内容低于 modelContextLimit 的 5% 时抑制所有推荐。重写为始终显示所有范围。(2) **Nudge 循环修复**:`lastNudgeShownTokens` 在 `nothingToCompress` 时被重置为 `undefined`,导致每轮都触发 nudge。
455
+ - **#257** — 升级 `context-compress-algorithms` 1.2.1 → 1.3.0。整体式 TIER2/TIER3 提示词 — 按主题综述而非逐块处理,修复 70+ T1 块时的长度溢出问题(issue #256)。
456
+ - **#259** — 在系统提示词和 T2/T3 nudge 中文档化多条目 compress 格式。compress 工具已支持 `content` 数组(PR #156),但块压缩只展示了单条目格式。
457
+
458
+ **安装**:`opencode plugin opencode-acp@stable --global`
459
+
449
460
  ### v1.14.9-dev.1 — Dev 预发布(v1.14.8-dev.5 以来 1 个 PR)
450
461
 
451
462
  Dev 预发布,涵盖 PR #259。发布到 `dev` npm tag 供早期测试。
package/dist/index.js CHANGED
@@ -8831,7 +8831,7 @@ import { writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
8831
8831
  import { join as join3 } from "path";
8832
8832
  import { existsSync as existsSync3 } from "fs";
8833
8833
  import { homedir as homedir3 } from "os";
8834
- var LOG_VERSION = true ? "1.14.9-dev.1" : "dev";
8834
+ var LOG_VERSION = true ? "1.14.9" : "dev";
8835
8835
  var Logger = class {
8836
8836
  logDir;
8837
8837
  enabled;