@adhdev/daemon-core 0.9.82-rc.337 → 0.9.82-rc.338

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.mjs CHANGED
@@ -311,10 +311,10 @@ function readInjected(value) {
311
311
  }
312
312
  function getDaemonBuildInfo() {
313
313
  if (cached) return cached;
314
- const commit = readInjected(true ? "587b2d866182a5b6c086d23d9f6cc32d22ca50f5" : void 0) ?? "unknown";
315
- const commitShort = readInjected(true ? "587b2d86" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
316
- const version = readInjected(true ? "0.9.82-rc.337" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
317
- const builtAt = readInjected(true ? "2026-06-20T06:37:55.432Z" : void 0);
314
+ const commit = readInjected(true ? "69dc786812247d8f2e908eec5c7805349fbf1d8d" : void 0) ?? "unknown";
315
+ const commitShort = readInjected(true ? "69dc7868" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
316
+ const version = readInjected(true ? "0.9.82-rc.338" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
317
+ const builtAt = readInjected(true ? "2026-06-20T08:44:29.162Z" : void 0);
318
318
  cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
319
319
  return cached;
320
320
  }
@@ -35095,7 +35095,14 @@ var CliProviderInstance = class _CliProviderInstance {
35095
35095
  chatTitle: pending.chatTitle,
35096
35096
  duration: pending.duration,
35097
35097
  timestamp: pending.timestamp,
35098
- finalSummary: blockReason.startsWith("parsed_status:") ? "" : this.completionFinalSummary(this.adapter?.getScriptParsedStatus()?.messages),
35098
+ // When finalization is forced past the timeout on a `parsed_status:` block
35099
+ // (the parser never confirmed a final assistant turn) we previously rode an
35100
+ // empty `finalSummary` unconditionally. That empty value propagates to the
35101
+ // mesh coordinator's mirror preview (meshSessionLastMessagePreview), leaving a
35102
+ // delegated session's inbox preview blank — or, for a LOCAL worktree session,
35103
+ // stuck on the dispatched user task. If the parser DID surface assistant text,
35104
+ // prefer it; only fall back to '' when no assistant summary can be derived.
35105
+ finalSummary: blockReason.startsWith("parsed_status:") ? this.completionFinalSummary(this.adapter?.getScriptParsedStatus()?.messages) ?? "" : this.completionFinalSummary(this.adapter?.getScriptParsedStatus()?.messages),
35099
35106
  completionDiagnostic
35100
35107
  });
35101
35108
  this.completedDebouncePending = null;
@@ -59567,6 +59574,7 @@ export {
59567
59574
  getGitFileDiff,
59568
59575
  getGitRepoStatus,
59569
59576
  getHostMemorySnapshot,
59577
+ getLastDisplayMessage,
59570
59578
  getLedgerDir,
59571
59579
  getLedgerSummary,
59572
59580
  getLogLevel,