@adhdev/daemon-standalone 0.9.82-rc.272 → 0.9.82-rc.274

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/public/index.html CHANGED
@@ -7,9 +7,9 @@
7
7
  <meta name="description" content="ADHDev self-hosted dashboard for controlling AI agents" />
8
8
  <link rel="icon" href="/otter-logo.png" />
9
9
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
10
- <script type="module" crossorigin src="/assets/index-C5JKUf-W.js"></script>
10
+ <script type="module" crossorigin src="/assets/index-NSq-hUrT.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="/assets/vendor-BHUMCOj6.js">
12
- <link rel="stylesheet" crossorigin href="/assets/index-CbR_x7-3.css">
12
+ <link rel="stylesheet" crossorigin href="/assets/index-CRoMHXE0.css">
13
13
  </head>
14
14
  <body>
15
15
  <!-- Apply theme immediately to prevent FOIT (Flash of Incorrect Theme) -->
@@ -985,14 +985,9 @@ async function reconcileDirectDispatchesFromTranscriptEvidence(ctx, liveNodes, d
985
985
  }
986
986
  return { attempted, reconciled, skipped };
987
987
  }
988
- async function triggerMeshQueueAndReport(ctx, node, opts) {
988
+ async function triggerMeshQueueAndReport(ctx) {
989
989
  try {
990
- let raw;
991
- if (ctx.transport instanceof IpcTransport && node?.daemonId && opts?.localNode === false) {
992
- raw = await ctx.transport.meshCommand(node.daemonId, "trigger_mesh_queue", { meshId: ctx.mesh.id });
993
- } else {
994
- raw = await ctx.transport.command("trigger_mesh_queue", { meshId: ctx.mesh.id });
995
- }
990
+ const raw = await ctx.transport.command("trigger_mesh_queue", { meshId: ctx.mesh.id });
996
991
  const payload = unwrapCommandPayload(raw);
997
992
  const trigger = payload?.trigger && typeof payload.trigger === "object" ? payload.trigger : payload;
998
993
  return trigger && typeof trigger === "object" ? trigger : { success: true };
@@ -4004,7 +3999,7 @@ async function meshLaunchSession(ctx, args) {
4004
3999
  });
4005
4000
  } catch {
4006
4001
  }
4007
- const queueTrigger = await triggerMeshQueueAndReport(ctx, node, { localNode: isLocalNode });
4002
+ const queueTrigger = await triggerMeshQueueAndReport(ctx);
4008
4003
  return JSON.stringify({
4009
4004
  ...launchPayload,
4010
4005
  resolvedProviderType,