@adhdev/daemon-core 0.9.82-rc.330 → 0.9.82-rc.331
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 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/config/mesh-config.ts +1 -1
- package/src/repo-mesh-types.ts +4 -1
- package/src/status/reporter.ts +3 -0
package/dist/index.mjs
CHANGED
|
@@ -83,7 +83,10 @@ var init_repo_mesh_types = __esm({
|
|
|
83
83
|
requireApprovalForDestructiveGit: true,
|
|
84
84
|
dirtyWorkspaceBehavior: "warn",
|
|
85
85
|
maxParallelTasks: 2,
|
|
86
|
-
|
|
86
|
+
// Coordinator-spawned worker sessions default to hidden so the dashboard is not
|
|
87
|
+
// flooded with mesh noise tabs/notifications. Users can still surface or unmute
|
|
88
|
+
// any specific session manually; that override is preserved per-device.
|
|
89
|
+
spawnedSessionVisibility: "hidden",
|
|
87
90
|
delegatedWorkerAutoApprove: true,
|
|
88
91
|
sessionCleanupOnNodeRemove: "preserve",
|
|
89
92
|
autoFastForward: { enabled: true },
|
|
@@ -308,10 +311,10 @@ function readInjected(value) {
|
|
|
308
311
|
}
|
|
309
312
|
function getDaemonBuildInfo() {
|
|
310
313
|
if (cached) return cached;
|
|
311
|
-
const commit = readInjected(true ? "
|
|
312
|
-
const commitShort = readInjected(true ? "
|
|
313
|
-
const version = readInjected(true ? "0.9.82-rc.
|
|
314
|
-
const builtAt = readInjected(true ? "2026-06-
|
|
314
|
+
const commit = readInjected(true ? "a6ef3a58ea926c6fa42f5ec53fae14e0bd5cac1b" : void 0) ?? "unknown";
|
|
315
|
+
const commitShort = readInjected(true ? "a6ef3a58" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
316
|
+
const version = readInjected(true ? "0.9.82-rc.331" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
317
|
+
const builtAt = readInjected(true ? "2026-06-20T00:34:05.737Z" : void 0);
|
|
315
318
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
316
319
|
return cached;
|
|
317
320
|
}
|
|
@@ -1938,7 +1941,7 @@ function mergeMeshPolicy(base, patch) {
|
|
|
1938
1941
|
policy.sessionCleanupOnNodeRemove = "preserve";
|
|
1939
1942
|
}
|
|
1940
1943
|
if (!SPAWNED_SESSION_VISIBILITY_MODES.has(String(policy.spawnedSessionVisibility))) {
|
|
1941
|
-
policy.spawnedSessionVisibility =
|
|
1944
|
+
policy.spawnedSessionVisibility = DEFAULT_MESH_POLICY.spawnedSessionVisibility;
|
|
1942
1945
|
}
|
|
1943
1946
|
const normalizedStrategy = normalizeMeshSchedulingStrategy(policy.schedulingStrategy);
|
|
1944
1947
|
if (normalizedStrategy === "first_eligible") {
|
|
@@ -50865,7 +50868,10 @@ var DaemonStatusReporter = class {
|
|
|
50865
50868
|
title: session.title,
|
|
50866
50869
|
cdpConnected: session.cdpConnected,
|
|
50867
50870
|
summaryMetadata: session.summaryMetadata,
|
|
50868
|
-
settings: session.settings
|
|
50871
|
+
settings: session.settings,
|
|
50872
|
+
// Forward surfaceHidden so the server can gate push notifications for
|
|
50873
|
+
// coordinator-hidden sessions (the WS path is the only one the server sees).
|
|
50874
|
+
surfaceHidden: session.surfaceHidden
|
|
50869
50875
|
})),
|
|
50870
50876
|
p2p: payload.p2p,
|
|
50871
50877
|
timestamp: now
|