@adhdev/daemon-standalone 1.0.45-rc.2 → 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 +13 -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
|
}
|
|
@@ -76137,6 +76137,7 @@ ${lastSnapshot}`;
|
|
|
76137
76137
|
}
|
|
76138
76138
|
// ─── Public API (CliAdapter) ───────────────────
|
|
76139
76139
|
getStatus(options = {}) {
|
|
76140
|
+
this.refreshKimiPendingQuestion();
|
|
76140
76141
|
const allowParse = options.allowParse !== false;
|
|
76141
76142
|
let startupModal = allowParse && this.startupParseGate ? this.runParseApproval(this.recentOutputBuffer) : null;
|
|
76142
76143
|
if (startupModal && this.engine.isStaleResolvedApproval(startupModal, { screenText: this.terminalScreen.getText(), accumulatedBuffer: this.accumulatedBuffer })) {
|
|
@@ -76350,7 +76351,14 @@ ${lastSnapshot}`;
|
|
|
76350
76351
|
providerSessionId: this.providerSessionId || void 0,
|
|
76351
76352
|
sessionStartedAtMs: this.spawnAt,
|
|
76352
76353
|
envOverrides: this.extraEnv,
|
|
76353
|
-
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
|
|
76354
76362
|
});
|
|
76355
76363
|
if ((prompt?.promptId ?? null) !== (this.activeInteractivePrompt?.promptId ?? null)) {
|
|
76356
76364
|
this.activeInteractivePrompt = prompt;
|