@addai/node 0.11.2 → 0.11.3
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/tui/dashboard.js +8 -0
- package/package.json +1 -1
package/dist/tui/dashboard.js
CHANGED
|
@@ -244,6 +244,14 @@ function createDashboardScreen(deps) {
|
|
|
244
244
|
if (recent.length)
|
|
245
245
|
st.recent = recent;
|
|
246
246
|
st.offline = deps.data.offline();
|
|
247
|
+
// The server can unpair a node out from under a running daemon — the
|
|
248
|
+
// machine removed from the fleet, or its token revoked. The heartbeat
|
|
249
|
+
// notices and clears the local pairing, but this screen was reading
|
|
250
|
+
// `paired` once at startup, so it kept showing the old stats and a header
|
|
251
|
+
// that said Online while every call underneath it came back unauthorized.
|
|
252
|
+
// Re-read it: a node that has lost its pairing should say so and tell you
|
|
253
|
+
// how to come back, not sit there looking healthy and empty.
|
|
254
|
+
st.paired = (0, store_1.isPaired)();
|
|
247
255
|
// A selected run that has finished is no longer in the band. nowIndex
|
|
248
256
|
// already reads that as "cursor is in the menu"; drop the id too so the
|
|
249
257
|
// state doesn't keep pointing at a run nobody can see.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@addai/node",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "Daemon that pairs a machine with your +Ai account and runs Claude / Codex / Kimi / Gemini agents on its behalf. Reachable via Supabase from Vault, Entity Studio, or any other +Ai surface.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|