@foxden-app/foxclaw 0.5.66 → 0.5.67

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 CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable FoxClaw changes are listed here. Each release note is bilingual so GitHub Releases and the npm package are useful to both Chinese and English readers.
4
4
 
5
+ ## 0.5.67 - 2026-07-01
6
+
7
+ ### 中文
8
+ - 修复手动中断 Codex thread 后 Telegram 过程消息残留的问题:中断收尾现在也会折叠已有过程汇报,并按 `TELEGRAM_DELETE_TOOL_DETAILS_AFTER_FINAL` 删除已归档的工具/运行状态明细。
9
+ - 中断时即使没有 final answer,也会被视为已有持久化收尾消息,从而复用正常完成路径的聊天清理逻辑,减少未折叠、未删除的旧消息。
10
+
11
+ ### English
12
+ - Fixed stale Telegram progress messages after manually interrupting a Codex thread. Interrupted turn cleanup now also collapses existing progress updates and deletes archived tool/runtime detail messages according to `TELEGRAM_DELETE_TOOL_DETAILS_AFTER_FINAL`.
13
+ - Interrupted turns are now treated as having a persistent terminal message even when there is no final answer, allowing them to reuse the normal completion cleanup path.
14
+
5
15
  ## 0.5.66 - 2026-06-29
6
16
 
7
17
  ### 中文
@@ -3563,6 +3563,9 @@ export class BridgeSessionCore {
3563
3563
  }
3564
3564
  }
3565
3565
  hasObservedPersistentReply(active) {
3566
+ if (active.interruptRequested) {
3567
+ return true;
3568
+ }
3566
3569
  if ((active.finalText || '').trim()) {
3567
3570
  return true;
3568
3571
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foxden-app/foxclaw",
3
- "version": "0.5.66",
3
+ "version": "0.5.67",
4
4
  "description": "Foxden local execution claw for controlling Codex from trusted chat interfaces.",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",