@foxden-app/foxclaw 0.5.43 → 0.5.44

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.44 - 2026-06-18
6
+
7
+ ### 中文
8
+ - 修复 Codex 真实 `final_answer` phase 在标准化后变成 `finalanswer`、却未被识别为最终答复的问题;该错误会导致 `0.5.43` 的过程汇报折叠逻辑误判“本轮没有最终答复”并直接跳过。
9
+ - 增加真实 phase 分类回归测试,确保最终答复与 commentary 过程汇报正确分离。
10
+
11
+ ### English
12
+ - Fixed classification of Codex's real `final_answer` phase, which normalizes to `finalanswer` but was not recognized as a final response; this caused the `0.5.43` progress-collapse path to incorrectly skip turns as having no final answer.
13
+ - Added a regression test for the real phase value so final responses remain distinct from commentary updates.
14
+
5
15
  ## 0.5.43 - 2026-06-18
6
16
 
7
17
  ### 中文
@@ -166,7 +166,7 @@ export function classifyAgentOutput(phase, completed) {
166
166
  return completed ? 'final_answer' : 'commentary';
167
167
  }
168
168
  const normalized = phase.replace(/[^a-z]/gi, '').toLowerCase();
169
- if (normalized === 'final' || normalized === 'answer' || normalized === 'response') {
169
+ if (normalized === 'final' || normalized === 'finalanswer' || normalized === 'answer' || normalized === 'response') {
170
170
  return 'final_answer';
171
171
  }
172
172
  return 'commentary';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foxden-app/foxclaw",
3
- "version": "0.5.43",
3
+ "version": "0.5.44",
4
4
  "description": "Foxden local execution claw for controlling Codex from trusted chat interfaces.",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",