@adhdev/daemon-standalone 0.9.82-rc.542 → 0.9.82-rc.543

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 CHANGED
@@ -30208,10 +30208,10 @@ var require_dist3 = __commonJS({
30208
30208
  }
30209
30209
  function getDaemonBuildInfo() {
30210
30210
  if (cached2) return cached2;
30211
- const commit = readInjected(true ? "eb1fb961d4f22983420fad4c65b982d3ab42b5cf" : void 0) ?? "unknown";
30212
- const commitShort = readInjected(true ? "eb1fb961" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
30213
- const version2 = readInjected(true ? "0.9.82-rc.542" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
30214
- const builtAt = readInjected(true ? "2026-07-16T06:30:45.651Z" : void 0);
30211
+ const commit = readInjected(true ? "ae5a5c1199ad4270aa45c5f938ad931e3bdc7a7d" : void 0) ?? "unknown";
30212
+ const commitShort = readInjected(true ? "ae5a5c11" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
30213
+ const version2 = readInjected(true ? "0.9.82-rc.543" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
30214
+ const builtAt = readInjected(true ? "2026-07-16T07:11:08.120Z" : void 0);
30215
30215
  cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
30216
30216
  return cached2;
30217
30217
  }
@@ -49269,6 +49269,12 @@ ${cleanBody}`;
49269
49269
  if (settings.userMuted === false) return false;
49270
49270
  return isCoordinatorSpawnedHiddenWorker(settings);
49271
49271
  }
49272
+ function resolveSpawnedSessionHideMute(input) {
49273
+ return {
49274
+ surfaceHidden: resolveSurfaceHidden(input),
49275
+ muted: resolveMuted(input)
49276
+ };
49277
+ }
49272
49278
  function getActiveChatOptions(profile) {
49273
49279
  if (profile === "full") return {};
49274
49280
  return LIVE_STATUS_ACTIVE_CHAT_OPTIONS;
@@ -54706,7 +54712,8 @@ ${cleanBody}`;
54706
54712
  const settledPromptLineRe = compile2(settledSpec.regex, (settledSpec.flags ?? "m").includes("m") ? settledSpec.flags ?? "m" : `${settledSpec.flags ?? ""}m`);
54707
54713
  const isSettledLine = (line) => {
54708
54714
  settledPromptLineRe.lastIndex = 0;
54709
- return settledPromptLineRe.test(line);
54715
+ if (settledPromptLineRe.test(line)) return true;
54716
+ return settled.footers.some((f) => f.test(line));
54710
54717
  };
54711
54718
  return below.some((line) => line.trim() !== "" && !isModalCueLine(line) && !isSettledLine(line));
54712
54719
  }
@@ -59241,6 +59248,7 @@ ${lastSnapshot}`;
59241
59248
  isAlwaysOnTraceCategory: () => isAlwaysOnTraceCategory,
59242
59249
  isBuiltinChatMessageKind: () => isBuiltinChatMessageKind,
59243
59250
  isCdpConnected: () => isCdpConnected,
59251
+ isCoordinatorSpawnedHiddenWorker: () => isCoordinatorSpawnedHiddenWorker,
59244
59252
  isExtensionInstalled: () => isExtensionInstalled,
59245
59253
  isGitCommandName: () => isGitCommandName,
59246
59254
  isIdeRunning: () => isIdeRunning,
@@ -59367,11 +59375,14 @@ ${lastSnapshot}`;
59367
59375
  resolveMeshNodeAttribution: () => resolveMeshNodeAttribution,
59368
59376
  resolveMeshRefineValidationPlan: () => resolveMeshRefineValidationPlan,
59369
59377
  resolveMeshSurfacedSessionPreview: () => resolveMeshSurfacedSessionPreview,
59378
+ resolveMuted: () => resolveMuted,
59370
59379
  resolveNodeSchedulingPriority: () => resolveNodeSchedulingPriority,
59371
59380
  resolveNotBefore: () => resolveNotBefore,
59372
59381
  resolveProviderMaxParallel: () => resolveProviderMaxParallel,
59373
59382
  resolveSessionHostAppName: () => resolveSessionHostAppName,
59374
59383
  resolveSessionHostAppNameResolution: () => resolveSessionHostAppNameResolution2,
59384
+ resolveSpawnedSessionHideMute: () => resolveSpawnedSessionHideMute,
59385
+ resolveSurfaceHidden: () => resolveSurfaceHidden,
59375
59386
  resolveWorktreePath: () => resolveWorktreePath,
59376
59387
  runAsyncBatch: () => runAsyncBatch2,
59377
59388
  runGit: () => runGit,
@@ -93720,6 +93731,28 @@ ${e?.stderr || ""}`;
93720
93731
  }
93721
93732
  return nodes;
93722
93733
  }
93734
+ /**
93735
+ * Same flattened node list as getCachedInlineMeshNodes(), but each node is
93736
+ * paired with the `spawnedSessionVisibility` from its OWNING mesh's policy.
93737
+ * The flat node list loses the mesh→node association, yet the cloud daemon's
93738
+ * synthetic mesh-session mirror needs the mesh-level visibility policy to
93739
+ * decide whether a coordinator-spawned worker session should be hidden+muted
93740
+ * on the dashboard (the cached inline-mesh session entry carries no settings
93741
+ * of its own). Falls back to DEFAULT_MESH_POLICY.spawnedSessionVisibility when
93742
+ * the mesh policy is absent, matching the worker-launch stamp.
93743
+ */
93744
+ getCachedInlineMeshNodesWithVisibility() {
93745
+ const out = [];
93746
+ for (const mesh of this.inlineMeshCache.values()) {
93747
+ const spawnedSessionVisibility = mesh?.policy?.spawnedSessionVisibility === "visible" ? "visible" : "hidden";
93748
+ if (Array.isArray(mesh?.nodes)) {
93749
+ for (const node of mesh.nodes) {
93750
+ out.push({ node, spawnedSessionVisibility });
93751
+ }
93752
+ }
93753
+ }
93754
+ return out;
93755
+ }
93723
93756
  // ─── Remote mesh-session owner resolution ───────────────────────────
93724
93757
  // Implementation lives in ./router-mesh-session-owner.ts (behavior-preserving
93725
93758
  // code move). resolveRemoteMeshSessionOwnerDaemonId stays public (the [Z]