@adhdev/daemon-standalone 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.js +13 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/index-8rImhlwm.css +1 -0
- package/public/assets/index-Bjlpjihz.js +113 -0
- package/public/index.html +2 -2
package/dist/index.js
CHANGED
|
@@ -30036,10 +30036,10 @@ var require_dist3 = __commonJS({
|
|
|
30036
30036
|
}
|
|
30037
30037
|
function getDaemonBuildInfo() {
|
|
30038
30038
|
if (cached2) return cached2;
|
|
30039
|
-
const commit = readInjected(true ? "
|
|
30040
|
-
const commitShort = readInjected(true ? "
|
|
30041
|
-
const version2 = readInjected(true ? "0.9.82-rc.
|
|
30042
|
-
const builtAt = readInjected(true ? "2026-06-
|
|
30039
|
+
const commit = readInjected(true ? "69dc786812247d8f2e908eec5c7805349fbf1d8d" : void 0) ?? "unknown";
|
|
30040
|
+
const commitShort = readInjected(true ? "69dc7868" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
30041
|
+
const version2 = readInjected(true ? "0.9.82-rc.338" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
30042
|
+
const builtAt = readInjected(true ? "2026-06-20T08:44:59.184Z" : void 0);
|
|
30043
30043
|
cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
|
|
30044
30044
|
return cached2;
|
|
30045
30045
|
}
|
|
@@ -47700,6 +47700,7 @@ ${lastSnapshot}`;
|
|
|
47700
47700
|
getGitFileDiff: () => getGitFileDiff,
|
|
47701
47701
|
getGitRepoStatus: () => getGitRepoStatus,
|
|
47702
47702
|
getHostMemorySnapshot: () => getHostMemorySnapshot,
|
|
47703
|
+
getLastDisplayMessage: () => getLastDisplayMessage,
|
|
47703
47704
|
getLedgerDir: () => getLedgerDir,
|
|
47704
47705
|
getLedgerSummary: () => getLedgerSummary,
|
|
47705
47706
|
getLogLevel: () => getLogLevel,
|
|
@@ -65077,7 +65078,14 @@ ${formatManifestValidationIssues2(validation.issues)}`,
|
|
|
65077
65078
|
chatTitle: pending.chatTitle,
|
|
65078
65079
|
duration: pending.duration,
|
|
65079
65080
|
timestamp: pending.timestamp,
|
|
65080
|
-
|
|
65081
|
+
// When finalization is forced past the timeout on a `parsed_status:` block
|
|
65082
|
+
// (the parser never confirmed a final assistant turn) we previously rode an
|
|
65083
|
+
// empty `finalSummary` unconditionally. That empty value propagates to the
|
|
65084
|
+
// mesh coordinator's mirror preview (meshSessionLastMessagePreview), leaving a
|
|
65085
|
+
// delegated session's inbox preview blank — or, for a LOCAL worktree session,
|
|
65086
|
+
// stuck on the dispatched user task. If the parser DID surface assistant text,
|
|
65087
|
+
// prefer it; only fall back to '' when no assistant summary can be derived.
|
|
65088
|
+
finalSummary: blockReason.startsWith("parsed_status:") ? this.completionFinalSummary(this.adapter?.getScriptParsedStatus()?.messages) ?? "" : this.completionFinalSummary(this.adapter?.getScriptParsedStatus()?.messages),
|
|
65081
65089
|
completionDiagnostic
|
|
65082
65090
|
});
|
|
65083
65091
|
this.completedDebouncePending = null;
|