@adhdev/daemon-standalone 1.0.45-rc.3 → 1.0.45-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 +12 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -37020,10 +37020,10 @@ var require_dist3 = __commonJS({
|
|
|
37020
37020
|
}
|
|
37021
37021
|
function getDaemonBuildInfo() {
|
|
37022
37022
|
if (cached2) return cached2;
|
|
37023
|
-
const commit = readInjected(true ? "
|
|
37024
|
-
const commitShort = readInjected(true ? "
|
|
37025
|
-
const version2 = readInjected(true ? "1.0.45-rc.
|
|
37026
|
-
const builtAt = readInjected(true ? "2026-08-11T16:
|
|
37023
|
+
const commit = readInjected(true ? "c4c08d064cf2ec5754b25d3a73098b518fe14ae0" : void 0) ?? "unknown";
|
|
37024
|
+
const commitShort = readInjected(true ? "c4c08d0" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
37025
|
+
const version2 = readInjected(true ? "1.0.45-rc.4" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
37026
|
+
const builtAt = readInjected(true ? "2026-08-11T16:57:07.456Z" : void 0);
|
|
37027
37027
|
cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
|
|
37028
37028
|
return cached2;
|
|
37029
37029
|
}
|
|
@@ -76351,7 +76351,14 @@ ${lastSnapshot}`;
|
|
|
76351
76351
|
providerSessionId: this.providerSessionId || void 0,
|
|
76352
76352
|
sessionStartedAtMs: this.spawnAt,
|
|
76353
76353
|
envOverrides: this.extraEnv,
|
|
76354
|
-
workspace: this.workingDir
|
|
76354
|
+
workspace: this.workingDir,
|
|
76355
|
+
// Sidecar-claim owner token (== session registry sessionId ==
|
|
76356
|
+
// the read path's targetSessionId). WITHOUT it claiming is
|
|
76357
|
+
// skipped and the sidecar resolution fails closed on
|
|
76358
|
+
// ambiguity — any second kimi session dir in the workspace
|
|
76359
|
+
// (e.g. a probe session) made detection silently dead
|
|
76360
|
+
// (live: coordinator AskUserQuestion never surfaced).
|
|
76361
|
+
instanceId: this.owningSessionId || void 0
|
|
76355
76362
|
});
|
|
76356
76363
|
if ((prompt?.promptId ?? null) !== (this.activeInteractivePrompt?.promptId ?? null)) {
|
|
76357
76364
|
this.activeInteractivePrompt = prompt;
|