@adhdev/daemon-standalone 0.9.82-rc.339 → 0.9.82-rc.340
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 +71 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/index-CSQu5pix.css +1 -0
- package/public/assets/index-CVnXcTxG.js +113 -0
- package/public/index.html +2 -2
- package/vendor/mcp-server/index.js +11 -1
- 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-CVnXcTxG.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-CSQu5pix.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
15
15
|
<!-- Apply theme immediately to prevent FOIT (Flash of Incorrect Theme) -->
|
|
@@ -2870,7 +2870,17 @@ async function meshStatus(ctx, args = {}) {
|
|
|
2870
2870
|
status: s.status ?? s.lifecycle ?? s.state,
|
|
2871
2871
|
providerType: s.providerType ?? s.cliType ?? s.type,
|
|
2872
2872
|
...s.activeChat?.status ? { chatStatus: s.activeChat.status } : {},
|
|
2873
|
-
...isSelfCoordinator ? { isSelfCoordinator: true, role: "coordinator" } : {}
|
|
2873
|
+
...isSelfCoordinator ? { isSelfCoordinator: true, role: "coordinator" } : {},
|
|
2874
|
+
// [T2] Carry the worker-computed last-message preview through the slim so
|
|
2875
|
+
// the coordinator's inbox can show the worker's latest ASSISTANT reply
|
|
2876
|
+
// without re-deriving it from a live in-process instance it doesn't host.
|
|
2877
|
+
// The worker's get_status_metadata snapshot already computes these
|
|
2878
|
+
// (status/snapshot.ts) from its real transcript; dropping them here forced
|
|
2879
|
+
// the coordinator down a derive path that fails for genuinely remote
|
|
2880
|
+
// workers, leaving the mobile inbox stuck on the dispatched user task.
|
|
2881
|
+
...typeof s.lastMessagePreview === "string" && s.lastMessagePreview ? { lastMessagePreview: s.lastMessagePreview } : {},
|
|
2882
|
+
...typeof s.lastMessageRole === "string" && s.lastMessageRole ? { lastMessageRole: s.lastMessageRole } : {},
|
|
2883
|
+
...typeof s.lastMessageAt === "number" && Number.isFinite(s.lastMessageAt) ? { lastMessageAt: s.lastMessageAt } : {}
|
|
2874
2884
|
};
|
|
2875
2885
|
}).filter((s) => s.id);
|
|
2876
2886
|
}
|