@nowcrew/daemon 0.5.25 → 0.5.26
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/dist/execution-runner.js +4 -1
- package/package.json +1 -1
package/dist/execution-runner.js
CHANGED
|
@@ -607,7 +607,10 @@ export async function runExecution(config, input, dependencies) {
|
|
|
607
607
|
...(!spec.reporting.captureFinal || result.finalText === null
|
|
608
608
|
? {}
|
|
609
609
|
: { finalText: result.finalText }),
|
|
610
|
-
|
|
610
|
+
// externalAnswer 是本轮完成的权威结果,与 answerStream(增量流式的可选增强)解耦转发;
|
|
611
|
+
// 否则能力协商降级后模型仍可能沿用同线程记住的 marker 契约,回复却永远发不到频道
|
|
612
|
+
// (incident: 2026-07-30, 2026-08-03)。
|
|
613
|
+
...(result.exitCode === 0 && result.externalAnswer
|
|
611
614
|
? { externalAnswer: result.externalAnswer }
|
|
612
615
|
: {}),
|
|
613
616
|
...(result.usage === undefined ? {} : { usage: result.usage }),
|