@adhdev/daemon-standalone 0.9.82-rc.316 → 0.9.82-rc.317
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 +107 -29
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/index-HIDhg3Nt.js +114 -0
- package/public/index.html +2 -2
- package/vendor/mcp-server/index.js +5 -1
- package/vendor/mcp-server/index.js.map +1 -1
package/public/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
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-
|
|
11
|
-
<link rel="modulepreload" crossorigin href="/assets/vendor-
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-HIDhg3Nt.js"></script>
|
|
11
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-BHUMCOj6.js">
|
|
12
12
|
<link rel="stylesheet" crossorigin href="/assets/index-Cw4o3csc.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
@@ -3597,7 +3597,11 @@ async function meshQueueRequeue(ctx, args) {
|
|
|
3597
3597
|
hint: "Use force=true to bypass the retry cap for explicit operator recovery."
|
|
3598
3598
|
}, null, 2);
|
|
3599
3599
|
}
|
|
3600
|
-
|
|
3600
|
+
const triggerPreferredNodeId = targetNodeId || task.targetNodeId || void 0;
|
|
3601
|
+
ctx.transport.command("trigger_mesh_queue", {
|
|
3602
|
+
meshId: ctx.mesh.id,
|
|
3603
|
+
...triggerPreferredNodeId ? { preferredNodeId: triggerPreferredNodeId } : {}
|
|
3604
|
+
}).catch(() => {
|
|
3601
3605
|
});
|
|
3602
3606
|
return JSON.stringify({ success: true, task }, null, 2);
|
|
3603
3607
|
} catch (e) {
|