@adhdev/daemon-standalone 1.0.21-rc.3 → 1.0.21-rc.4

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/index.js CHANGED
@@ -33262,10 +33262,10 @@ var require_dist3 = __commonJS({
33262
33262
  }
33263
33263
  function getDaemonBuildInfo() {
33264
33264
  if (cached2) return cached2;
33265
- const commit = readInjected(true ? "89c750927f379b7063a2d1481b08aa267e96f790" : void 0) ?? "unknown";
33266
- const commitShort = readInjected(true ? "89c75092" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
33267
- const version2 = readInjected(true ? "1.0.21-rc.3" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
33268
- const builtAt = readInjected(true ? "2026-07-23T16:23:42.870Z" : void 0);
33265
+ const commit = readInjected(true ? "6c7d05ae6b6e0449e7b28773f528a151ae2371df" : void 0) ?? "unknown";
33266
+ const commitShort = readInjected(true ? "6c7d05ae" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
33267
+ const version2 = readInjected(true ? "1.0.21-rc.4" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
33268
+ const builtAt = readInjected(true ? "2026-07-23T18:35:14.928Z" : void 0);
33269
33269
  cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
33270
33270
  return cached2;
33271
33271
  }
@@ -83776,10 +83776,16 @@ ${body}
83776
83776
  if (allowMissingAssistantTimeout && pending.previousStatus === "waiting_approval") {
83777
83777
  return { reason: "missing_final_assistant", terminal: false, holdForTranscript: true };
83778
83778
  }
83779
- return { reason: "missing_final_assistant", terminal: true, allowTimeout: allowMissingAssistantTimeout };
83779
+ const isWriteLagNativeSource = this.type === "claude-cli";
83780
+ return {
83781
+ reason: "missing_final_assistant",
83782
+ terminal: true,
83783
+ allowTimeout: allowMissingAssistantTimeout,
83784
+ ...isWriteLagNativeSource ? {} : { noExternalTranscriptSource: true }
83785
+ };
83780
83786
  }
83781
83787
  if (this.provider.requiresFinalAssistantBeforeIdle === true) {
83782
- return { reason: "missing_final_assistant", terminal: true, allowTimeout: allowMissingAssistantTimeout };
83788
+ return { reason: "missing_final_assistant", terminal: true, allowTimeout: allowMissingAssistantTimeout, noExternalTranscriptSource: true };
83783
83789
  }
83784
83790
  } else {
83785
83791
  LOG2.debug("CLI", `[${this.type}] missing_final_assistant (not ownsExternal) requiresFinalAssistant=${!!this.provider.requiresFinalAssistantBeforeIdle}`);