@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/dist/index.js +196 -128
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/index--LjGeSoY.js +113 -0
- package/public/assets/index-CRoMHXE0.css +1 -0
- package/public/assets/index-NSq-hUrT.js +113 -0
- package/public/index.html +2 -2
- package/vendor/mcp-server/index.js +3 -8
- package/vendor/mcp-server/index.js.map +1 -1
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-
|
|
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-
|
|
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
|
|
988
|
+
async function triggerMeshQueueAndReport(ctx) {
|
|
989
989
|
try {
|
|
990
|
-
|
|
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
|
|
4002
|
+
const queueTrigger = await triggerMeshQueueAndReport(ctx);
|
|
4008
4003
|
return JSON.stringify({
|
|
4009
4004
|
...launchPayload,
|
|
4010
4005
|
resolvedProviderType,
|