opencode-acp 1.14.16 → 1.14.17-pr.304.13

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,16 @@ For the complete list with root cause analysis, see the [bug tracker](https://gi
492
492
 
493
493
  ## Changelog
494
494
 
495
+ ### v1.14.17 — Eliminate compress retry dead-ends (#301)
496
+
497
+ **Problem**: Two compress arguments hard-failed on first use and produced confusing error loops instead of actionable feedback. (1) The model learned "add `acknowledgeRisk: true` to retry" from quality-gate rejection templates, then carried the flag into *every* retry — including retries after non-quality errors (e.g. a missing topic), where no quality-gate rejection was pending, hitting `Parameter "acknowledgeRisk": true was provided, but no quality gate rejection is pending` (issue #301). (2) `content[0] needs a topic — provide content[0].topic or the top-level topic` hard-failed compress calls whose entries had no topic and no top-level fallback.
498
+
499
+ **Fix**: Both parameters are now tolerant. `acknowledgeRisk` without a pending rejection is a no-op — quality checks still run (the gate's protection is unchanged: bypass is only armed by a real quality-gate rejection), and a successful result carries an `⚠️ acknowledgeRisk was ignored: ...` note teaching correct usage. Topics are fully optional: an entry without its own topic falls back to the top-level topic, then to one derived from the summary's first line (markdown headings stripped, capped at 80 chars), so `search_context` always has something searchable.
500
+
501
+ Files: `lib/compress/range.ts`, `lib/compress/range-utils.ts` (new `deriveFallbackTopic`), `lib/compress/quality-gate/rejection.ts` (removed `buildPreemptiveAcknowledgeError`), `lib/compress/types.ts`, `lib/prompts/compress-range.ts`, `lib/prompts/extensions/tool.ts`, `lib/state/types.ts`. Tests: 976 pass.
502
+
503
+ **Install**: `opencode plugin opencode-acp@latest --global`
504
+
495
505
  ### v1.14.16 — Raise context limits to 80%
496
506
 
497
507
  **Problem**: The compression thresholds were `maxContextLimit: 55%` / `minContextLimit: 45%`. The strong "over-limit" nudge fired as soon as context exceeded 55% of the model window. Combined with the fixed 50K growth threshold (v1.14.15), this still engaged compression relatively early, leaving usable context unused.
package/README.zh-CN.md CHANGED
@@ -446,6 +446,16 @@ ACP 是 DCP 的直接替代品。迁移步骤:
446
446
 
447
447
  ## 更新日志
448
448
 
449
+ ### v1.14.17 — 消除 compress 重试死循环(#301)
450
+
451
+ **问题**:两个 compress 参数在首次使用时硬报错,产生令人困惑的错误循环而非可执行的反馈。(1) 模型从质量门拒绝模板学到「重试要加 `acknowledgeRisk: true`」,于是把它带进了所有重试——包括非质量错误(如缺 topic)之后的重试,此时没有 pending 的质量门拒绝,撞上 `Parameter "acknowledgeRisk": true was provided, but no quality gate rejection is pending`(issue #301)。(2) `content[0] needs a topic — provide content[0].topic or the top-level topic` 在 entry 无 topic 且无顶层 fallback 时硬报错。
452
+
453
+ **修复**:两个参数均改为宽容处理。无 pending 拒绝时的 `acknowledgeRisk` 为 no-op——质量检查照常运行(质量门保护不变:bypass 只由真实的质量门拒绝解锁),成功结果附带 `⚠️ acknowledgeRisk was ignored: ...` 提示教模型正确用法。topic 完全可选:entry 无自有 topic 时依次回退到顶层 topic、再到从 summary 首行派生的 topic(去 markdown 标题符、截断 80 字符),保证 `search_context` 始终有可检索内容。
454
+
455
+ 文件:`lib/compress/range.ts`、`lib/compress/range-utils.ts`(新增 `deriveFallbackTopic`)、`lib/compress/quality-gate/rejection.ts`(移除 `buildPreemptiveAcknowledgeError`)、`lib/compress/types.ts`、`lib/prompts/compress-range.ts`、`lib/prompts/extensions/tool.ts`、`lib/state/types.ts`。测试:976 通过。
456
+
457
+ **安装**:`opencode plugin opencode-acp@latest --global`
458
+
449
459
  ### v1.14.16 — 将上下文 limit 提升至 80%
450
460
 
451
461
  **问题**:压缩阈值原为 `maxContextLimit: 55%` / `minContextLimit: 45%`。上下文一旦超过模型窗口的 55% 就会触发强「超限」nudge。配合 v1.14.15 固定的 50K 增长阈值,压缩仍较早介入,可用上下文未被充分利用。
package/dist/index.js CHANGED
@@ -8949,7 +8949,7 @@ import { writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
8949
8949
  import { join as join3 } from "path";
8950
8950
  import { existsSync as existsSync3 } from "fs";
8951
8951
  import { homedir as homedir3 } from "os";
8952
- var LOG_VERSION = true ? "1.14.16" : "dev";
8952
+ var LOG_VERSION = true ? "1.14.17-pr.304.13" : "dev";
8953
8953
  var Logger = class {
8954
8954
  logDir;
8955
8955
  enabled;