@adhdev/daemon-standalone 1.0.31 → 1.0.32-rc.2
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 +5 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/public/assets/{index-lXuAcqlb.js → index-CYjQsV8D.js} +3 -3
- package/public/assets/{terminal-BZj_X5zy.js → terminal-DiXj2eIR.js} +1 -1
- package/public/assets/{vendor-cL4V2vaO.js → vendor-DyCWA2YZ.js} +57 -49
- package/public/index.html +2 -2
- package/vendor/mcp-server/index.js +20 -24
- package/vendor/mcp-server/index.js.map +1 -1
- package/vendor/session-host-daemon/index.js +0 -0
- package/vendor/session-host-daemon/index.mjs +0 -0
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-CYjQsV8D.js"></script>
|
|
11
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-DyCWA2YZ.js">
|
|
12
12
|
<link rel="stylesheet" crossorigin href="/assets/index-DaANjDZS.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
@@ -6971,17 +6971,15 @@ async function meshSendTask(ctx, args) {
|
|
|
6971
6971
|
via: "p2p_direct",
|
|
6972
6972
|
dispatchedAt
|
|
6973
6973
|
});
|
|
6974
|
-
|
|
6975
|
-
|
|
6976
|
-
|
|
6977
|
-
|
|
6978
|
-
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
6982
|
-
|
|
6983
|
-
});
|
|
6984
|
-
}
|
|
6974
|
+
(0, import_daemon_core4.recordDirectDispatchTask)(ctx.mesh.id, message, {
|
|
6975
|
+
id: taskId,
|
|
6976
|
+
...missionId ? { missionId } : {},
|
|
6977
|
+
assignedNodeId: args.node_id,
|
|
6978
|
+
assignedSessionId: dispatchedSessionId,
|
|
6979
|
+
taskMode,
|
|
6980
|
+
...readonly ? { readonly: true } : {},
|
|
6981
|
+
dispatchedAt
|
|
6982
|
+
});
|
|
6985
6983
|
} catch {
|
|
6986
6984
|
}
|
|
6987
6985
|
}
|
|
@@ -7173,19 +7171,17 @@ async function meshSendTask(ctx, args) {
|
|
|
7173
7171
|
error: dispatchPayload?.error || dispatchResult?.error || "agent_command rejected the task"
|
|
7174
7172
|
});
|
|
7175
7173
|
}
|
|
7176
|
-
|
|
7177
|
-
|
|
7178
|
-
|
|
7179
|
-
|
|
7180
|
-
|
|
7181
|
-
|
|
7182
|
-
|
|
7183
|
-
|
|
7184
|
-
|
|
7185
|
-
|
|
7186
|
-
|
|
7187
|
-
} catch {
|
|
7188
|
-
}
|
|
7174
|
+
try {
|
|
7175
|
+
(0, import_daemon_core4.recordDirectDispatchTask)(ctx.mesh.id, message, {
|
|
7176
|
+
id: taskId,
|
|
7177
|
+
...missionId ? { missionId } : {},
|
|
7178
|
+
assignedNodeId: args.node_id,
|
|
7179
|
+
assignedSessionId: args.session_id,
|
|
7180
|
+
taskMode,
|
|
7181
|
+
...readonly ? { readonly: true } : {},
|
|
7182
|
+
dispatchedAt
|
|
7183
|
+
});
|
|
7184
|
+
} catch {
|
|
7189
7185
|
}
|
|
7190
7186
|
let deliveryId;
|
|
7191
7187
|
try {
|