@adhdev/daemon-core 0.9.82-rc.3 → 0.9.82-rc.31
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/boot/daemon-lifecycle.d.ts +2 -0
- package/dist/commands/router.d.ts +5 -0
- package/dist/git/git-commands.d.ts +1 -0
- package/dist/git/git-status.d.ts +5 -0
- package/dist/git/git-types.d.ts +10 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1052 -292
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1051 -292
- package/dist/index.mjs.map +1 -1
- package/dist/mesh/mesh-events.d.ts +17 -5
- package/dist/mesh/mesh-work-queue.d.ts +3 -1
- package/dist/providers/chat-message-normalization.d.ts +1 -0
- package/dist/repo-mesh-types.d.ts +128 -0
- package/package.json +1 -1
- package/src/boot/daemon-lifecycle.ts +3 -0
- package/src/commands/router.ts +836 -149
- package/src/git/git-commands.ts +3 -3
- package/src/git/git-status.ts +97 -6
- package/src/git/git-summary.ts +3 -0
- package/src/git/git-types.ts +11 -0
- package/src/index.ts +9 -1
- package/src/mesh/mesh-events.ts +168 -30
- package/src/mesh/mesh-work-queue.ts +135 -119
- package/src/providers/chat-message-normalization.ts +3 -1
- package/src/repo-mesh-types.ts +138 -0
package/dist/index.js
CHANGED
|
@@ -1360,6 +1360,36 @@ function getQueuePath(meshId) {
|
|
|
1360
1360
|
const safe = meshId.replace(/[^a-zA-Z0-9_-]/g, "_");
|
|
1361
1361
|
return (0, import_path4.join)(getLedgerDir(), `${safe}.queue.json`);
|
|
1362
1362
|
}
|
|
1363
|
+
function getLockPath(meshId) {
|
|
1364
|
+
const safe = meshId.replace(/[^a-zA-Z0-9_-]/g, "_");
|
|
1365
|
+
return (0, import_path4.join)(getLedgerDir(), `${safe}.queue.lock`);
|
|
1366
|
+
}
|
|
1367
|
+
function withQueueLock(meshId, fn) {
|
|
1368
|
+
const lockPath = getLockPath(meshId);
|
|
1369
|
+
let fd = -1;
|
|
1370
|
+
for (let i = 0; i < 10; i++) {
|
|
1371
|
+
try {
|
|
1372
|
+
fd = (0, import_fs4.openSync)(lockPath, "wx");
|
|
1373
|
+
break;
|
|
1374
|
+
} catch {
|
|
1375
|
+
const deadline = Date.now() + 30;
|
|
1376
|
+
while (Date.now() < deadline) {
|
|
1377
|
+
}
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
try {
|
|
1381
|
+
return fn();
|
|
1382
|
+
} finally {
|
|
1383
|
+
if (fd !== -1) try {
|
|
1384
|
+
(0, import_fs4.closeSync)(fd);
|
|
1385
|
+
} catch {
|
|
1386
|
+
}
|
|
1387
|
+
try {
|
|
1388
|
+
(0, import_fs4.unlinkSync)(lockPath);
|
|
1389
|
+
} catch {
|
|
1390
|
+
}
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1363
1393
|
function readQueue(meshId) {
|
|
1364
1394
|
const path28 = getQueuePath(meshId);
|
|
1365
1395
|
if (!(0, import_fs4.existsSync)(path28)) return [];
|
|
@@ -1375,20 +1405,22 @@ function writeQueue(meshId, queue) {
|
|
|
1375
1405
|
(0, import_fs4.writeFileSync)(path28, JSON.stringify(queue, null, 2), "utf-8");
|
|
1376
1406
|
}
|
|
1377
1407
|
function enqueueTask(meshId, message, opts) {
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1408
|
+
return withQueueLock(meshId, () => {
|
|
1409
|
+
const queue = readQueue(meshId);
|
|
1410
|
+
const entry = {
|
|
1411
|
+
id: (0, import_crypto5.randomUUID)(),
|
|
1412
|
+
meshId,
|
|
1413
|
+
message,
|
|
1414
|
+
status: "pending",
|
|
1415
|
+
targetNodeId: opts?.targetNodeId,
|
|
1416
|
+
targetSessionId: opts?.targetSessionId,
|
|
1417
|
+
createdAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
1418
|
+
updatedAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
1419
|
+
};
|
|
1420
|
+
queue.push(entry);
|
|
1421
|
+
writeQueue(meshId, queue);
|
|
1422
|
+
return entry;
|
|
1423
|
+
});
|
|
1392
1424
|
}
|
|
1393
1425
|
function getQueue(meshId, opts) {
|
|
1394
1426
|
let queue = readQueue(meshId);
|
|
@@ -1399,100 +1431,111 @@ function getQueue(meshId, opts) {
|
|
|
1399
1431
|
return queue;
|
|
1400
1432
|
}
|
|
1401
1433
|
function claimNextTask(meshId, nodeId, sessionId) {
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1434
|
+
return withQueueLock(meshId, () => {
|
|
1435
|
+
const queue = readQueue(meshId);
|
|
1436
|
+
const hasActiveAssignment = queue.some((q) => q.status === "assigned" && (q.assignedSessionId === sessionId || q.assignedNodeId === nodeId));
|
|
1437
|
+
if (hasActiveAssignment) return null;
|
|
1438
|
+
let targetIdx = queue.findIndex((q) => q.status === "pending" && q.targetSessionId === sessionId);
|
|
1439
|
+
if (targetIdx === -1) {
|
|
1440
|
+
targetIdx = queue.findIndex((q) => q.status === "pending" && q.targetNodeId === nodeId && !q.targetSessionId);
|
|
1441
|
+
}
|
|
1442
|
+
if (targetIdx === -1) {
|
|
1443
|
+
targetIdx = queue.findIndex((q) => q.status === "pending" && !q.targetNodeId && !q.targetSessionId);
|
|
1444
|
+
}
|
|
1445
|
+
if (targetIdx === -1) return null;
|
|
1446
|
+
const entry = queue[targetIdx];
|
|
1447
|
+
entry.status = "assigned";
|
|
1448
|
+
entry.assignedNodeId = nodeId;
|
|
1449
|
+
entry.assignedSessionId = sessionId;
|
|
1450
|
+
entry.dispatchTimestamp = (/* @__PURE__ */ new Date()).toISOString();
|
|
1451
|
+
entry.updatedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
1452
|
+
writeQueue(meshId, queue);
|
|
1453
|
+
return entry;
|
|
1454
|
+
});
|
|
1421
1455
|
}
|
|
1422
1456
|
function updateTaskStatus(meshId, taskId, status) {
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1457
|
+
return withQueueLock(meshId, () => {
|
|
1458
|
+
const queue = readQueue(meshId);
|
|
1459
|
+
const idx = queue.findIndex((q) => q.id === taskId);
|
|
1460
|
+
if (idx === -1) return null;
|
|
1461
|
+
queue[idx].status = status;
|
|
1462
|
+
queue[idx].updatedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
1463
|
+
writeQueue(meshId, queue);
|
|
1464
|
+
return queue[idx];
|
|
1465
|
+
});
|
|
1430
1466
|
}
|
|
1431
1467
|
function recordTaskAutoLaunch(meshId, taskId, autoLaunch) {
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
...autoLaunch,
|
|
1438
|
-
updatedAt
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
return queue[idx];
|
|
1468
|
+
return withQueueLock(meshId, () => {
|
|
1469
|
+
const queue = readQueue(meshId);
|
|
1470
|
+
const idx = queue.findIndex((q) => q.id === taskId);
|
|
1471
|
+
if (idx === -1) return null;
|
|
1472
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
1473
|
+
queue[idx].autoLaunch = { ...autoLaunch, updatedAt: now };
|
|
1474
|
+
queue[idx].updatedAt = now;
|
|
1475
|
+
writeQueue(meshId, queue);
|
|
1476
|
+
return queue[idx];
|
|
1477
|
+
});
|
|
1443
1478
|
}
|
|
1444
1479
|
function cancelTask(meshId, taskId, opts) {
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1480
|
+
return withQueueLock(meshId, () => {
|
|
1481
|
+
const queue = readQueue(meshId);
|
|
1482
|
+
const idx = queue.findIndex((q) => q.id === taskId);
|
|
1483
|
+
if (idx === -1) return null;
|
|
1484
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
1485
|
+
queue[idx].status = "cancelled";
|
|
1486
|
+
queue[idx].updatedAt = now;
|
|
1487
|
+
queue[idx].cancelledAt = now;
|
|
1488
|
+
if (opts?.reason) queue[idx].cancelReason = opts.reason;
|
|
1489
|
+
writeQueue(meshId, queue);
|
|
1490
|
+
return queue[idx];
|
|
1491
|
+
});
|
|
1455
1492
|
}
|
|
1456
1493
|
function requeueTask(meshId, taskId, opts) {
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1494
|
+
return withQueueLock(meshId, () => {
|
|
1495
|
+
const queue = readQueue(meshId);
|
|
1496
|
+
const idx = queue.findIndex((q) => q.id === taskId);
|
|
1497
|
+
if (idx === -1) return null;
|
|
1498
|
+
const entry = queue[idx];
|
|
1499
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
1500
|
+
entry.status = "pending";
|
|
1501
|
+
delete entry.assignedNodeId;
|
|
1502
|
+
delete entry.assignedSessionId;
|
|
1503
|
+
delete entry.cancelledAt;
|
|
1504
|
+
delete entry.cancelReason;
|
|
1505
|
+
if (opts?.clearTargetNode) delete entry.targetNodeId;
|
|
1506
|
+
if (typeof opts?.targetNodeId === "string") entry.targetNodeId = opts.targetNodeId;
|
|
1507
|
+
if (opts?.clearTargetSession !== false) delete entry.targetSessionId;
|
|
1508
|
+
if (typeof opts?.targetSessionId === "string") entry.targetSessionId = opts.targetSessionId;
|
|
1509
|
+
entry.updatedAt = now;
|
|
1510
|
+
entry.requeuedAt = now;
|
|
1511
|
+
entry.requeueCount = (entry.requeueCount || 0) + 1;
|
|
1512
|
+
if (opts?.reason) entry.requeueReason = opts.reason;
|
|
1513
|
+
writeQueue(meshId, queue);
|
|
1514
|
+
return entry;
|
|
1515
|
+
});
|
|
1516
|
+
}
|
|
1517
|
+
function updateSessionTaskStatus(meshId, sessionId, status, opts) {
|
|
1518
|
+
return withQueueLock(meshId, () => {
|
|
1519
|
+
const queue = readQueue(meshId);
|
|
1520
|
+
const occurredAtTime = opts?.occurredAt ? new Date(opts.occurredAt).getTime() : Number.NaN;
|
|
1521
|
+
const hasOccurredAt = Number.isFinite(occurredAtTime);
|
|
1522
|
+
let bestIdx = -1;
|
|
1523
|
+
let bestTime = 0;
|
|
1524
|
+
for (let i = queue.length - 1; i >= 0; i--) {
|
|
1525
|
+
if (queue[i].assignedSessionId !== sessionId || queue[i].status !== "assigned") continue;
|
|
1484
1526
|
const time = new Date(queue[i].dispatchTimestamp || queue[i].updatedAt).getTime();
|
|
1527
|
+
if (hasOccurredAt && Number.isFinite(time) && time > occurredAtTime) continue;
|
|
1485
1528
|
if (time > bestTime) {
|
|
1486
1529
|
bestTime = time;
|
|
1487
1530
|
bestIdx = i;
|
|
1488
1531
|
}
|
|
1489
1532
|
}
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1533
|
+
if (bestIdx === -1) return null;
|
|
1534
|
+
queue[bestIdx].status = status;
|
|
1535
|
+
queue[bestIdx].updatedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
1536
|
+
writeQueue(meshId, queue);
|
|
1537
|
+
return queue[bestIdx];
|
|
1538
|
+
});
|
|
1496
1539
|
}
|
|
1497
1540
|
function getMeshQueueStats(meshId) {
|
|
1498
1541
|
const queue = readQueue(meshId);
|
|
@@ -1896,18 +1939,75 @@ __export(mesh_events_exports, {
|
|
|
1896
1939
|
drainPendingMeshCoordinatorEvents: () => drainPendingMeshCoordinatorEvents,
|
|
1897
1940
|
getPendingMeshCoordinatorEvents: () => getPendingMeshCoordinatorEvents,
|
|
1898
1941
|
handleMeshForwardEvent: () => handleMeshForwardEvent,
|
|
1942
|
+
queuePendingMeshCoordinatorEvent: () => queuePendingMeshCoordinatorEvent,
|
|
1899
1943
|
setupMeshEventForwarding: () => setupMeshEventForwarding,
|
|
1900
1944
|
triggerMeshQueue: () => triggerMeshQueue,
|
|
1901
1945
|
tryAssignQueueTask: () => tryAssignQueueTask
|
|
1902
1946
|
});
|
|
1903
|
-
function
|
|
1904
|
-
|
|
1947
|
+
function sweepExpiredRemoteIdleSessions() {
|
|
1948
|
+
const now = Date.now();
|
|
1949
|
+
for (const [key, session] of remoteIdleSessions) {
|
|
1950
|
+
if (session.expiresAt <= now) remoteIdleSessions.delete(key);
|
|
1951
|
+
}
|
|
1905
1952
|
}
|
|
1906
|
-
function
|
|
1907
|
-
|
|
1953
|
+
function getPendingEventsPath(meshId) {
|
|
1954
|
+
const safe = meshId.replace(/[^a-zA-Z0-9_-]/g, "_");
|
|
1955
|
+
return (0, import_path5.join)(getLedgerDir(), `${safe}.pending-events.jsonl`);
|
|
1908
1956
|
}
|
|
1909
|
-
function
|
|
1910
|
-
|
|
1957
|
+
function queuePendingMeshCoordinatorEvent(event) {
|
|
1958
|
+
try {
|
|
1959
|
+
(0, import_fs6.appendFileSync)(getPendingEventsPath(event.meshId), JSON.stringify(event) + "\n", "utf-8");
|
|
1960
|
+
return true;
|
|
1961
|
+
} catch (e) {
|
|
1962
|
+
LOG.warn("MeshEvents", `Failed to persist pending coordinator event: ${e?.message || e}`);
|
|
1963
|
+
return false;
|
|
1964
|
+
}
|
|
1965
|
+
}
|
|
1966
|
+
function drainPendingMeshCoordinatorEvents(meshId) {
|
|
1967
|
+
if (!meshId) return [];
|
|
1968
|
+
const path28 = getPendingEventsPath(meshId);
|
|
1969
|
+
if (!(0, import_fs6.existsSync)(path28)) return [];
|
|
1970
|
+
try {
|
|
1971
|
+
const raw = (0, import_fs6.readFileSync)(path28, "utf-8");
|
|
1972
|
+
try {
|
|
1973
|
+
(0, import_fs6.unlinkSync)(path28);
|
|
1974
|
+
} catch {
|
|
1975
|
+
}
|
|
1976
|
+
return raw.split("\n").filter(Boolean).flatMap((line) => {
|
|
1977
|
+
try {
|
|
1978
|
+
return [JSON.parse(line)];
|
|
1979
|
+
} catch {
|
|
1980
|
+
return [];
|
|
1981
|
+
}
|
|
1982
|
+
});
|
|
1983
|
+
} catch {
|
|
1984
|
+
return [];
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
function getPendingMeshCoordinatorEvents(meshId) {
|
|
1988
|
+
if (!meshId) return [];
|
|
1989
|
+
const path28 = getPendingEventsPath(meshId);
|
|
1990
|
+
if (!(0, import_fs6.existsSync)(path28)) return [];
|
|
1991
|
+
try {
|
|
1992
|
+
const raw = (0, import_fs6.readFileSync)(path28, "utf-8");
|
|
1993
|
+
return raw.split("\n").filter(Boolean).flatMap((line) => {
|
|
1994
|
+
try {
|
|
1995
|
+
return [JSON.parse(line)];
|
|
1996
|
+
} catch {
|
|
1997
|
+
return [];
|
|
1998
|
+
}
|
|
1999
|
+
});
|
|
2000
|
+
} catch {
|
|
2001
|
+
return [];
|
|
2002
|
+
}
|
|
2003
|
+
}
|
|
2004
|
+
function clearPendingMeshCoordinatorEvents(meshId) {
|
|
2005
|
+
if (!meshId) return;
|
|
2006
|
+
const path28 = getPendingEventsPath(meshId);
|
|
2007
|
+
if ((0, import_fs6.existsSync)(path28)) try {
|
|
2008
|
+
(0, import_fs6.unlinkSync)(path28);
|
|
2009
|
+
} catch {
|
|
2010
|
+
}
|
|
1911
2011
|
}
|
|
1912
2012
|
function readNonEmptyString(value) {
|
|
1913
2013
|
return typeof value === "string" && value.trim() ? value.trim() : "";
|
|
@@ -1953,6 +2053,38 @@ function shouldSuppressIntentionalCleanupStop(args) {
|
|
|
1953
2053
|
if (isIntentionalCleanupStopMetadata(args.metadataEvent)) return true;
|
|
1954
2054
|
return hasRecentIntentionalCleanupStop(args.meshId, args.sessionId, args.nodeId);
|
|
1955
2055
|
}
|
|
2056
|
+
function readEventTimestamp(value) {
|
|
2057
|
+
if (typeof value === "number" && Number.isFinite(value)) return value;
|
|
2058
|
+
if (typeof value === "string" && value.trim()) {
|
|
2059
|
+
const numeric = Number(value);
|
|
2060
|
+
if (Number.isFinite(numeric)) return numeric;
|
|
2061
|
+
const parsed = Date.parse(value);
|
|
2062
|
+
if (Number.isFinite(parsed)) return parsed;
|
|
2063
|
+
}
|
|
2064
|
+
return null;
|
|
2065
|
+
}
|
|
2066
|
+
function buildMeshCompletionFingerprint(args) {
|
|
2067
|
+
const timestampPart = Number.isFinite(args.timestamp) ? String(args.timestamp) : readNonEmptyString(args.finalSummary).slice(0, 200);
|
|
2068
|
+
return [
|
|
2069
|
+
args.meshId,
|
|
2070
|
+
args.event,
|
|
2071
|
+
args.sessionId,
|
|
2072
|
+
args.providerType || "",
|
|
2073
|
+
args.providerSessionId || "",
|
|
2074
|
+
timestampPart
|
|
2075
|
+
].join("::");
|
|
2076
|
+
}
|
|
2077
|
+
function isDuplicateMeshCompletionEvent(args) {
|
|
2078
|
+
const fingerprint = buildMeshCompletionFingerprint(args);
|
|
2079
|
+
if (!fingerprint) return false;
|
|
2080
|
+
const now = Date.now();
|
|
2081
|
+
for (const [key, seenAt] of recentCompletionFingerprints.entries()) {
|
|
2082
|
+
if (now - seenAt > RECENT_COMPLETION_FINGERPRINT_TTL_MS) recentCompletionFingerprints.delete(key);
|
|
2083
|
+
}
|
|
2084
|
+
if (recentCompletionFingerprints.has(fingerprint)) return true;
|
|
2085
|
+
recentCompletionFingerprints.set(fingerprint, now);
|
|
2086
|
+
return false;
|
|
2087
|
+
}
|
|
1956
2088
|
function tryAssignQueueTask(components, meshId, nodeId, sessionId, providerType) {
|
|
1957
2089
|
const task = claimNextTask(meshId, nodeId, sessionId);
|
|
1958
2090
|
if (!task) {
|
|
@@ -1971,7 +2103,16 @@ function tryAssignQueueTask(components, meshId, nodeId, sessionId, providerType)
|
|
|
1971
2103
|
message: task.message
|
|
1972
2104
|
}).catch((e) => {
|
|
1973
2105
|
LOG.error("MeshQueue", `Failed to dispatch task via P2P to remote node ${nodeId}: ${e?.message}`);
|
|
1974
|
-
updateTaskStatus(meshId, task.id, "
|
|
2106
|
+
updateTaskStatus(meshId, task.id, "pending");
|
|
2107
|
+
try {
|
|
2108
|
+
appendLedgerEntry(meshId, {
|
|
2109
|
+
kind: "dispatch_failed",
|
|
2110
|
+
nodeId,
|
|
2111
|
+
sessionId,
|
|
2112
|
+
payload: { taskId: task.id, error: e?.message, retryable: true }
|
|
2113
|
+
});
|
|
2114
|
+
} catch {
|
|
2115
|
+
}
|
|
1975
2116
|
});
|
|
1976
2117
|
return true;
|
|
1977
2118
|
}
|
|
@@ -2305,18 +2446,36 @@ function injectMeshSystemMessage(components, args) {
|
|
|
2305
2446
|
LOG.info("MeshEvents", `Suppressed ${args.event} for intentionally cleanup-stopped session ${eventSessionId || "(unknown session)"}`);
|
|
2306
2447
|
return { success: true, forwarded: 0, suppressed: true, intentionalCleanupStop: true };
|
|
2307
2448
|
}
|
|
2449
|
+
const eventTimestamp = readEventTimestamp(args.metadataEvent.timestamp);
|
|
2450
|
+
if (args.event === "agent:generating_completed" && eventSessionId) {
|
|
2451
|
+
const duplicateCompletion = isDuplicateMeshCompletionEvent({
|
|
2452
|
+
meshId: args.meshId,
|
|
2453
|
+
event: args.event,
|
|
2454
|
+
sessionId: eventSessionId,
|
|
2455
|
+
providerType: readNonEmptyString(args.metadataEvent.providerType) || void 0,
|
|
2456
|
+
providerSessionId: readNonEmptyString(args.metadataEvent.providerSessionId) || void 0,
|
|
2457
|
+
timestamp: eventTimestamp,
|
|
2458
|
+
finalSummary: readNonEmptyString(args.metadataEvent.finalSummary) || void 0
|
|
2459
|
+
});
|
|
2460
|
+
if (duplicateCompletion) {
|
|
2461
|
+
LOG.info("MeshEvents", `Suppressed duplicate completion for mesh ${args.meshId} session ${eventSessionId}`);
|
|
2462
|
+
return { success: true, forwarded: 0, suppressed: true, duplicateCompletion: true };
|
|
2463
|
+
}
|
|
2464
|
+
}
|
|
2308
2465
|
let completedTaskForLedger = null;
|
|
2309
2466
|
if (args.event === "agent:generating_completed") {
|
|
2310
2467
|
const sessionId = resolveEventSessionId(args.metadataEvent, args.sourceInstanceId);
|
|
2311
2468
|
const nodeId = readNonEmptyString(args.nodeId) || readNonEmptyString(args.metadataEvent.meshNodeId);
|
|
2312
2469
|
const providerType = readNonEmptyString(args.metadataEvent.providerType);
|
|
2313
2470
|
if (sessionId) {
|
|
2314
|
-
const completedTask = updateSessionTaskStatus(args.meshId, sessionId, "completed"
|
|
2471
|
+
const completedTask = updateSessionTaskStatus(args.meshId, sessionId, "completed", {
|
|
2472
|
+
occurredAt: eventTimestamp !== null ? new Date(eventTimestamp).toISOString() : void 0
|
|
2473
|
+
});
|
|
2315
2474
|
completedTaskForLedger = completedTask ? { id: completedTask.id } : null;
|
|
2316
2475
|
if (nodeId && providerType) {
|
|
2317
|
-
|
|
2476
|
+
setImmediate(() => {
|
|
2318
2477
|
tryAssignQueueTask(components, args.meshId, nodeId, sessionId, providerType);
|
|
2319
|
-
}
|
|
2478
|
+
});
|
|
2320
2479
|
}
|
|
2321
2480
|
}
|
|
2322
2481
|
} else if (args.event === "agent:ready") {
|
|
@@ -2354,13 +2513,17 @@ function injectMeshSystemMessage(components, args) {
|
|
|
2354
2513
|
}
|
|
2355
2514
|
}
|
|
2356
2515
|
if (sessionId && nodeId && providerType) {
|
|
2357
|
-
|
|
2358
|
-
|
|
2516
|
+
sweepExpiredRemoteIdleSessions();
|
|
2517
|
+
remoteIdleSessions.set(`${nodeId}:${sessionId}`, {
|
|
2518
|
+
nodeId,
|
|
2519
|
+
sessionId,
|
|
2520
|
+
providerType,
|
|
2521
|
+
expiresAt: Date.now() + REMOTE_IDLE_SESSION_TTL_MS
|
|
2522
|
+
});
|
|
2523
|
+
setImmediate(() => {
|
|
2359
2524
|
const assigned = tryAssignQueueTask(components, args.meshId, nodeId, sessionId, providerType);
|
|
2360
|
-
if (assigned) {
|
|
2361
|
-
|
|
2362
|
-
}
|
|
2363
|
-
}, 500);
|
|
2525
|
+
if (assigned) remoteIdleSessions.delete(`${nodeId}:${sessionId}`);
|
|
2526
|
+
});
|
|
2364
2527
|
}
|
|
2365
2528
|
} else if (args.event === "agent:generating_started") {
|
|
2366
2529
|
const sessionId = resolveEventSessionId(args.metadataEvent, args.sourceInstanceId);
|
|
@@ -2471,17 +2634,18 @@ function injectMeshSystemMessage(components, args) {
|
|
|
2471
2634
|
return true;
|
|
2472
2635
|
});
|
|
2473
2636
|
if (coordinatorInstances.length === 0) {
|
|
2474
|
-
if (
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
}
|
|
2483
|
-
|
|
2484
|
-
|
|
2637
|
+
if (queuePendingMeshCoordinatorEvent({
|
|
2638
|
+
event: args.event,
|
|
2639
|
+
meshId: args.meshId,
|
|
2640
|
+
nodeLabel: args.nodeLabel,
|
|
2641
|
+
nodeId: args.nodeId || void 0,
|
|
2642
|
+
workspace: readNonEmptyString(args.metadataEvent.workspace),
|
|
2643
|
+
metadataEvent: {
|
|
2644
|
+
...args.metadataEvent,
|
|
2645
|
+
...recoveryContext ? { recoveryContext } : {}
|
|
2646
|
+
},
|
|
2647
|
+
queuedAt: Date.now()
|
|
2648
|
+
})) {
|
|
2485
2649
|
LOG.info("MeshEvents", `Queued ${args.event} for MCP coordinator (mesh ${args.meshId})`);
|
|
2486
2650
|
}
|
|
2487
2651
|
return { success: true, forwarded: 0 };
|
|
@@ -2520,6 +2684,7 @@ function handleMeshForwardEvent(components, payload) {
|
|
|
2520
2684
|
providerType: readNonEmptyString(payload.providerType),
|
|
2521
2685
|
providerSessionId: readNonEmptyString(payload.providerSessionId),
|
|
2522
2686
|
finalSummary: readNonEmptyString(payload.finalSummary) || readNonEmptyString(payload.summary),
|
|
2687
|
+
...payload.timestamp !== void 0 ? { timestamp: payload.timestamp } : {},
|
|
2523
2688
|
intentional: payload.intentional === true,
|
|
2524
2689
|
intentionalStop: payload.intentionalStop === true,
|
|
2525
2690
|
operatorCleanup: payload.operatorCleanup === true,
|
|
@@ -2562,19 +2727,20 @@ function setupMeshEventForwarding(components) {
|
|
|
2562
2727
|
});
|
|
2563
2728
|
});
|
|
2564
2729
|
}
|
|
2565
|
-
var
|
|
2730
|
+
var import_fs6, import_path5, REMOTE_IDLE_SESSION_TTL_MS, remoteIdleSessions, MESH_COORDINATOR_EVENTS, EVENT_TO_LEDGER_KIND, INTENTIONAL_CLEANUP_STOP_SUPPRESSION_MS, RECENT_COMPLETION_FINGERPRINT_TTL_MS, recentCompletionFingerprints, autoLaunchInProgress, autoLaunchCooldownUntil, AUTO_LAUNCH_COOLDOWN_MS;
|
|
2566
2731
|
var init_mesh_events = __esm({
|
|
2567
2732
|
"src/mesh/mesh-events.ts"() {
|
|
2568
2733
|
"use strict";
|
|
2734
|
+
import_fs6 = require("fs");
|
|
2735
|
+
import_path5 = require("path");
|
|
2569
2736
|
init_config();
|
|
2570
2737
|
init_mesh_config();
|
|
2571
2738
|
init_cli_detector();
|
|
2572
2739
|
init_logger();
|
|
2573
2740
|
init_mesh_ledger();
|
|
2574
2741
|
init_mesh_work_queue();
|
|
2742
|
+
REMOTE_IDLE_SESSION_TTL_MS = 5 * 60 * 1e3;
|
|
2575
2743
|
remoteIdleSessions = /* @__PURE__ */ new Map();
|
|
2576
|
-
MAX_PENDING_EVENTS = 50;
|
|
2577
|
-
pendingMeshCoordinatorEvents = [];
|
|
2578
2744
|
MESH_COORDINATOR_EVENTS = /* @__PURE__ */ new Set([
|
|
2579
2745
|
"agent:generating_started",
|
|
2580
2746
|
"agent:generating_completed",
|
|
@@ -2590,6 +2756,8 @@ var init_mesh_events = __esm({
|
|
|
2590
2756
|
"monitor:long_generating": "task_stalled"
|
|
2591
2757
|
};
|
|
2592
2758
|
INTENTIONAL_CLEANUP_STOP_SUPPRESSION_MS = 30 * 60 * 1e3;
|
|
2759
|
+
RECENT_COMPLETION_FINGERPRINT_TTL_MS = 10 * 60 * 1e3;
|
|
2760
|
+
recentCompletionFingerprints = /* @__PURE__ */ new Map();
|
|
2593
2761
|
autoLaunchInProgress = /* @__PURE__ */ new Set();
|
|
2594
2762
|
autoLaunchCooldownUntil = /* @__PURE__ */ new Map();
|
|
2595
2763
|
AUTO_LAUNCH_COOLDOWN_MS = 5e3;
|
|
@@ -5860,6 +6028,7 @@ __export(index_exports, {
|
|
|
5860
6028
|
prepareSessionChatTailUpdate: () => prepareSessionChatTailUpdate,
|
|
5861
6029
|
prepareSessionModalUpdate: () => prepareSessionModalUpdate,
|
|
5862
6030
|
probeCdpPort: () => probeCdpPort,
|
|
6031
|
+
queuePendingMeshCoordinatorEvent: () => queuePendingMeshCoordinatorEvent,
|
|
5863
6032
|
readChatHistory: () => readChatHistory,
|
|
5864
6033
|
readLedgerEntries: () => readLedgerEntries,
|
|
5865
6034
|
readLedgerSlice: () => readLedgerSlice,
|
|
@@ -5913,8 +6082,14 @@ async function getGitRepoStatus(workspace, options = {}) {
|
|
|
5913
6082
|
const includeSubmodules = options.includeSubmodules !== false;
|
|
5914
6083
|
try {
|
|
5915
6084
|
const repo = await resolveGitRepository(workspace, options);
|
|
5916
|
-
|
|
5917
|
-
|
|
6085
|
+
let parsed = await readPorcelainStatus(repo, options);
|
|
6086
|
+
let upstreamProbe = getInitialUpstreamProbe(parsed);
|
|
6087
|
+
if (options.refreshUpstream) {
|
|
6088
|
+
upstreamProbe = await refreshTrackedUpstream(repo, parsed, options);
|
|
6089
|
+
if (upstreamProbe.upstreamStatus === "fresh") {
|
|
6090
|
+
parsed = await readPorcelainStatus(repo, options);
|
|
6091
|
+
}
|
|
6092
|
+
}
|
|
5918
6093
|
const head = await readHead(repo, options);
|
|
5919
6094
|
const stashCount = await readStashCount(repo, options);
|
|
5920
6095
|
let submodules;
|
|
@@ -5929,6 +6104,9 @@ async function getGitRepoStatus(workspace, options = {}) {
|
|
|
5929
6104
|
headCommit: head.commit,
|
|
5930
6105
|
headMessage: head.message,
|
|
5931
6106
|
upstream: parsed.upstream,
|
|
6107
|
+
upstreamStatus: parsed.upstream ? upstreamProbe.upstreamStatus : "no_upstream",
|
|
6108
|
+
upstreamFetchedAt: upstreamProbe.upstreamFetchedAt,
|
|
6109
|
+
upstreamFetchError: upstreamProbe.upstreamFetchError,
|
|
5932
6110
|
ahead: parsed.ahead,
|
|
5933
6111
|
behind: parsed.behind,
|
|
5934
6112
|
staged: parsed.staged,
|
|
@@ -5953,6 +6131,60 @@ async function getGitRepoStatus(workspace, options = {}) {
|
|
|
5953
6131
|
);
|
|
5954
6132
|
}
|
|
5955
6133
|
}
|
|
6134
|
+
async function readPorcelainStatus(repo, options) {
|
|
6135
|
+
const statusOutput = await runGit(repo, ["status", "--porcelain=v2", "--branch"], options);
|
|
6136
|
+
return parsePorcelainV2Status(statusOutput.stdout);
|
|
6137
|
+
}
|
|
6138
|
+
function getInitialUpstreamProbe(parsed) {
|
|
6139
|
+
return {
|
|
6140
|
+
upstreamStatus: parsed.upstream ? "unchecked" : "no_upstream"
|
|
6141
|
+
};
|
|
6142
|
+
}
|
|
6143
|
+
async function refreshTrackedUpstream(repo, parsed, options) {
|
|
6144
|
+
if (!parsed.upstream || !parsed.branch) {
|
|
6145
|
+
return { upstreamStatus: "no_upstream" };
|
|
6146
|
+
}
|
|
6147
|
+
const remoteName = await readBranchRemote(repo, parsed.branch, options) ?? inferRemoteName(parsed.upstream);
|
|
6148
|
+
if (!remoteName) {
|
|
6149
|
+
return {
|
|
6150
|
+
upstreamStatus: "stale",
|
|
6151
|
+
upstreamFetchError: `Unable to resolve remote for upstream '${parsed.upstream}'`
|
|
6152
|
+
};
|
|
6153
|
+
}
|
|
6154
|
+
try {
|
|
6155
|
+
await runGit(repo, ["fetch", "--quiet", "--prune", "--no-tags", remoteName], options);
|
|
6156
|
+
return {
|
|
6157
|
+
upstreamStatus: "fresh",
|
|
6158
|
+
upstreamFetchedAt: Date.now()
|
|
6159
|
+
};
|
|
6160
|
+
} catch (error) {
|
|
6161
|
+
return {
|
|
6162
|
+
upstreamStatus: "stale",
|
|
6163
|
+
upstreamFetchError: formatGitError(error)
|
|
6164
|
+
};
|
|
6165
|
+
}
|
|
6166
|
+
}
|
|
6167
|
+
async function readBranchRemote(repo, branch, options) {
|
|
6168
|
+
try {
|
|
6169
|
+
const result = await runGit(repo, ["config", "--get", `branch.${branch}.remote`], options);
|
|
6170
|
+
return result.stdout.trim() || null;
|
|
6171
|
+
} catch {
|
|
6172
|
+
return null;
|
|
6173
|
+
}
|
|
6174
|
+
}
|
|
6175
|
+
function inferRemoteName(upstream) {
|
|
6176
|
+
const [remoteName] = upstream.split("/");
|
|
6177
|
+
return remoteName?.trim() || null;
|
|
6178
|
+
}
|
|
6179
|
+
function formatGitError(error) {
|
|
6180
|
+
if (error instanceof GitCommandError) {
|
|
6181
|
+
return error.stderr || error.message;
|
|
6182
|
+
}
|
|
6183
|
+
if (error instanceof Error) {
|
|
6184
|
+
return error.message;
|
|
6185
|
+
}
|
|
6186
|
+
return String(error);
|
|
6187
|
+
}
|
|
5956
6188
|
function parsePorcelainV2Status(output) {
|
|
5957
6189
|
const parsed = {
|
|
5958
6190
|
branch: null,
|
|
@@ -6047,6 +6279,7 @@ function emptyStatus(workspace, lastCheckedAt, error) {
|
|
|
6047
6279
|
headCommit: null,
|
|
6048
6280
|
headMessage: null,
|
|
6049
6281
|
upstream: null,
|
|
6282
|
+
upstreamStatus: "unavailable",
|
|
6050
6283
|
ahead: 0,
|
|
6051
6284
|
behind: 0,
|
|
6052
6285
|
staged: 0,
|
|
@@ -6327,6 +6560,9 @@ function createGitCompactSummary(status, diffSummary) {
|
|
|
6327
6560
|
isGitRepo: status.isGitRepo,
|
|
6328
6561
|
repoRoot: status.repoRoot,
|
|
6329
6562
|
branch: status.branch,
|
|
6563
|
+
upstreamStatus: status.upstreamStatus,
|
|
6564
|
+
upstreamFetchedAt: status.upstreamFetchedAt,
|
|
6565
|
+
upstreamFetchError: status.upstreamFetchError,
|
|
6330
6566
|
dirty: status.staged > 0 || status.modified > 0 || status.untracked > 0 || status.deleted > 0 || status.renamed > 0 || conflictCount > 0 || changedFiles > 0,
|
|
6331
6567
|
changedFiles,
|
|
6332
6568
|
ahead: status.ahead,
|
|
@@ -6671,7 +6907,7 @@ var defaultSnapshotStore = createGitSnapshotStore({
|
|
|
6671
6907
|
});
|
|
6672
6908
|
function createDefaultGitCommandServices() {
|
|
6673
6909
|
return {
|
|
6674
|
-
getStatus: ({ workspace }) => getGitRepoStatus(workspace),
|
|
6910
|
+
getStatus: ({ workspace, refreshUpstream }) => getGitRepoStatus(workspace, { refreshUpstream }),
|
|
6675
6911
|
getDiffSummary: ({ workspace }) => getGitDiffSummary(workspace),
|
|
6676
6912
|
getDiffFile: ({ workspace, path: filePath }) => getGitFileDiff(workspace, filePath),
|
|
6677
6913
|
createSnapshot: ({ workspace, reason, sessionId, turnId }) => defaultSnapshotStore.create({
|
|
@@ -6757,7 +6993,7 @@ async function handleGitCommand(command, args, services = defaultGitCommandServi
|
|
|
6757
6993
|
switch (command) {
|
|
6758
6994
|
case "git_status": {
|
|
6759
6995
|
if (!services.getStatus) return serviceNotImplemented(command);
|
|
6760
|
-
const status = await runService(() => services.getStatus({ workspace }));
|
|
6996
|
+
const status = await runService(() => services.getStatus({ workspace, refreshUpstream: optionalBoolean(args?.refreshUpstream) }));
|
|
6761
6997
|
return "success" in status ? status : { success: true, status };
|
|
6762
6998
|
}
|
|
6763
6999
|
case "git_diff_summary": {
|
|
@@ -7795,8 +8031,8 @@ var P2pRelayFailureError = class extends Error {
|
|
|
7795
8031
|
};
|
|
7796
8032
|
|
|
7797
8033
|
// src/config/state-store.ts
|
|
7798
|
-
var
|
|
7799
|
-
var
|
|
8034
|
+
var import_fs7 = require("fs");
|
|
8035
|
+
var import_path6 = require("path");
|
|
7800
8036
|
init_config();
|
|
7801
8037
|
var DEFAULT_STATE = {
|
|
7802
8038
|
recentActivity: [],
|
|
@@ -7810,7 +8046,7 @@ function isPlainObject2(value) {
|
|
|
7810
8046
|
return !!value && typeof value === "object" && !Array.isArray(value);
|
|
7811
8047
|
}
|
|
7812
8048
|
function getStatePath() {
|
|
7813
|
-
return (0,
|
|
8049
|
+
return (0, import_path6.join)(getConfigDir(), "state.json");
|
|
7814
8050
|
}
|
|
7815
8051
|
function normalizeState(raw) {
|
|
7816
8052
|
const parsed = isPlainObject2(raw) ? raw : {};
|
|
@@ -7846,11 +8082,11 @@ function normalizeState(raw) {
|
|
|
7846
8082
|
}
|
|
7847
8083
|
function loadState() {
|
|
7848
8084
|
const statePath = getStatePath();
|
|
7849
|
-
if (!(0,
|
|
8085
|
+
if (!(0, import_fs7.existsSync)(statePath)) {
|
|
7850
8086
|
return { ...DEFAULT_STATE };
|
|
7851
8087
|
}
|
|
7852
8088
|
try {
|
|
7853
|
-
const raw = (0,
|
|
8089
|
+
const raw = (0, import_fs7.readFileSync)(statePath, "utf-8");
|
|
7854
8090
|
return normalizeState(JSON.parse(raw));
|
|
7855
8091
|
} catch {
|
|
7856
8092
|
return { ...DEFAULT_STATE };
|
|
@@ -7859,7 +8095,7 @@ function loadState() {
|
|
|
7859
8095
|
function saveState(state) {
|
|
7860
8096
|
const statePath = getStatePath();
|
|
7861
8097
|
const normalized = normalizeState(state);
|
|
7862
|
-
(0,
|
|
8098
|
+
(0, import_fs7.writeFileSync)(statePath, JSON.stringify(normalized, null, 2), { encoding: "utf-8", mode: 384 });
|
|
7863
8099
|
}
|
|
7864
8100
|
function resetState() {
|
|
7865
8101
|
saveState({ ...DEFAULT_STATE });
|
|
@@ -7867,7 +8103,7 @@ function resetState() {
|
|
|
7867
8103
|
|
|
7868
8104
|
// src/detection/ide-detector.ts
|
|
7869
8105
|
var import_child_process2 = require("child_process");
|
|
7870
|
-
var
|
|
8106
|
+
var import_fs8 = require("fs");
|
|
7871
8107
|
var import_os2 = require("os");
|
|
7872
8108
|
var path10 = __toESM(require("path"));
|
|
7873
8109
|
var BUILTIN_IDE_DEFINITIONS = [];
|
|
@@ -7891,7 +8127,7 @@ function findCliCommand(command) {
|
|
|
7891
8127
|
if (path10.isAbsolute(trimmed) || trimmed.includes("/") || trimmed.includes("\\") || trimmed.startsWith("~")) {
|
|
7892
8128
|
const candidate = trimmed.startsWith("~") ? path10.join((0, import_os2.homedir)(), trimmed.slice(1)) : trimmed;
|
|
7893
8129
|
const resolved = path10.isAbsolute(candidate) ? candidate : path10.resolve(candidate);
|
|
7894
|
-
return (0,
|
|
8130
|
+
return (0, import_fs8.existsSync)(resolved) ? resolved : null;
|
|
7895
8131
|
}
|
|
7896
8132
|
try {
|
|
7897
8133
|
const result = (0, import_child_process2.execSync)(
|
|
@@ -7922,9 +8158,9 @@ function checkPathExists(paths) {
|
|
|
7922
8158
|
if (normalized.includes("*")) {
|
|
7923
8159
|
const username = home.split(/[\\/]/).pop() || "";
|
|
7924
8160
|
const resolved = normalized.replace("*", username);
|
|
7925
|
-
if ((0,
|
|
8161
|
+
if ((0, import_fs8.existsSync)(resolved)) return resolved;
|
|
7926
8162
|
} else {
|
|
7927
|
-
if ((0,
|
|
8163
|
+
if ((0, import_fs8.existsSync)(normalized)) return normalized;
|
|
7928
8164
|
}
|
|
7929
8165
|
}
|
|
7930
8166
|
return null;
|
|
@@ -7938,7 +8174,7 @@ async function detectIDEs(providerLoader) {
|
|
|
7938
8174
|
let resolvedCli = cliPath;
|
|
7939
8175
|
if (!resolvedCli && appPath && os22 === "darwin") {
|
|
7940
8176
|
const bundledCli = `${appPath}/Contents/Resources/app/bin/${def.cli}`;
|
|
7941
|
-
if ((0,
|
|
8177
|
+
if ((0, import_fs8.existsSync)(bundledCli)) resolvedCli = bundledCli;
|
|
7942
8178
|
}
|
|
7943
8179
|
if (!resolvedCli && appPath && os22 === "win32") {
|
|
7944
8180
|
const { dirname: dirname9 } = await import("path");
|
|
@@ -7951,7 +8187,7 @@ async function detectIDEs(providerLoader) {
|
|
|
7951
8187
|
`${appDir}\\\\resources\\\\app\\\\bin\\\\${def.cli}.cmd`
|
|
7952
8188
|
];
|
|
7953
8189
|
for (const c of candidates) {
|
|
7954
|
-
if ((0,
|
|
8190
|
+
if ((0, import_fs8.existsSync)(c)) {
|
|
7955
8191
|
resolvedCli = c;
|
|
7956
8192
|
break;
|
|
7957
8193
|
}
|
|
@@ -9843,7 +10079,8 @@ var StatusMonitor = class {
|
|
|
9843
10079
|
};
|
|
9844
10080
|
|
|
9845
10081
|
// src/providers/chat-message-normalization.ts
|
|
9846
|
-
|
|
10082
|
+
var DEFAULT_FINAL_SUMMARY_MAX_CHARS = 4e3;
|
|
10083
|
+
function extractFinalSummaryFromMessages(messages, maxChars = DEFAULT_FINAL_SUMMARY_MAX_CHARS) {
|
|
9847
10084
|
if (!Array.isArray(messages) || messages.length === 0) return "";
|
|
9848
10085
|
for (let i = messages.length - 1; i >= 0; i--) {
|
|
9849
10086
|
const msg = messages[i];
|
|
@@ -17103,7 +17340,7 @@ var DaemonCommandHandler = class {
|
|
|
17103
17340
|
var os13 = __toESM(require("os"));
|
|
17104
17341
|
var path18 = __toESM(require("path"));
|
|
17105
17342
|
var crypto4 = __toESM(require("crypto"));
|
|
17106
|
-
var
|
|
17343
|
+
var import_fs9 = require("fs");
|
|
17107
17344
|
var import_child_process6 = require("child_process");
|
|
17108
17345
|
var import_chalk = __toESM(require("chalk"));
|
|
17109
17346
|
init_provider_cli_adapter();
|
|
@@ -19575,7 +19812,7 @@ function commandExists(command) {
|
|
|
19575
19812
|
const trimmed = command.trim();
|
|
19576
19813
|
if (!trimmed) return false;
|
|
19577
19814
|
if (isExplicitCommand(trimmed)) {
|
|
19578
|
-
return (0,
|
|
19815
|
+
return (0, import_fs9.existsSync)(expandExecutable(trimmed));
|
|
19579
19816
|
}
|
|
19580
19817
|
try {
|
|
19581
19818
|
(0, import_child_process6.execFileSync)(process.platform === "win32" ? "where" : "which", [trimmed], {
|
|
@@ -19604,10 +19841,10 @@ function hasCliArg(args, flag) {
|
|
|
19604
19841
|
}
|
|
19605
19842
|
function ensureEmptyDelegatedMcpConfig(workspace) {
|
|
19606
19843
|
const baseDir = path18.join(os13.tmpdir(), "adhdev-delegated-agent-empty-mcp");
|
|
19607
|
-
(0,
|
|
19844
|
+
(0, import_fs9.mkdirSync)(baseDir, { recursive: true });
|
|
19608
19845
|
const workspaceHash = crypto4.createHash("sha256").update(path18.resolve(workspace || os13.tmpdir())).digest("hex").slice(0, 16);
|
|
19609
19846
|
const filePath = path18.join(baseDir, `${workspaceHash}.json`);
|
|
19610
|
-
(0,
|
|
19847
|
+
(0, import_fs9.writeFileSync)(filePath, JSON.stringify({ mcpServers: {} }, null, 2), "utf-8");
|
|
19611
19848
|
return filePath;
|
|
19612
19849
|
}
|
|
19613
19850
|
function buildCoordinatorDelegatedCliLaunchOptions(input) {
|
|
@@ -23786,7 +24023,7 @@ async function maybeRunDaemonUpgradeHelperFromEnv() {
|
|
|
23786
24023
|
|
|
23787
24024
|
// src/commands/router.ts
|
|
23788
24025
|
var import_os3 = require("os");
|
|
23789
|
-
var
|
|
24026
|
+
var import_path7 = require("path");
|
|
23790
24027
|
var fs10 = __toESM(require("fs"));
|
|
23791
24028
|
var CHANNEL_NPM_TAG = { stable: "latest", preview: "next" };
|
|
23792
24029
|
var CHANNEL_SERVER_URL = {
|
|
@@ -23835,55 +24072,45 @@ function readBooleanValue(...values) {
|
|
|
23835
24072
|
}
|
|
23836
24073
|
return void 0;
|
|
23837
24074
|
}
|
|
23838
|
-
function
|
|
23839
|
-
const
|
|
23840
|
-
const
|
|
23841
|
-
if (
|
|
23842
|
-
|
|
23843
|
-
|
|
23844
|
-
|
|
23845
|
-
|
|
23846
|
-
|
|
23847
|
-
|
|
23848
|
-
|
|
23849
|
-
|
|
23850
|
-
|
|
23851
|
-
|
|
23852
|
-
|
|
23853
|
-
|
|
23854
|
-
|
|
23855
|
-
|
|
23856
|
-
|
|
23857
|
-
|
|
23858
|
-
|
|
23859
|
-
|
|
23860
|
-
|
|
23861
|
-
|
|
23862
|
-
|
|
23863
|
-
|
|
23864
|
-
|
|
23865
|
-
|
|
23866
|
-
|
|
23867
|
-
}
|
|
23868
|
-
}
|
|
23869
|
-
const rawGit = readObjectRecord(node?.lastGit ?? node?.last_git);
|
|
23870
|
-
const gitResult = readObjectRecord(rawGit.result);
|
|
23871
|
-
const directStatus = readObjectRecord(rawGit.status);
|
|
23872
|
-
const nestedStatus = readObjectRecord(gitResult.status);
|
|
23873
|
-
const rawProbe = readObjectRecord(node?.lastProbe ?? node?.last_probe);
|
|
23874
|
-
const probeGit = readObjectRecord(rawProbe.git);
|
|
23875
|
-
const probeGitResult = readObjectRecord(probeGit.result);
|
|
23876
|
-
const probeDirectStatus = readObjectRecord(probeGit.status);
|
|
23877
|
-
const probeNestedStatus = readObjectRecord(probeGitResult.status);
|
|
23878
|
-
const status = Object.keys(directStatus).length ? directStatus : Object.keys(nestedStatus).length ? nestedStatus : Object.keys(probeDirectStatus).length ? probeDirectStatus : Object.keys(probeNestedStatus).length ? probeNestedStatus : {};
|
|
24075
|
+
function joinRepoPath(root, relativePath) {
|
|
24076
|
+
const normalizedRoot = typeof root === "string" ? root.trim().replace(/[\\/]+$/, "") : "";
|
|
24077
|
+
const normalizedPath = typeof relativePath === "string" ? relativePath.trim() : "";
|
|
24078
|
+
if (!normalizedPath) return void 0;
|
|
24079
|
+
if (/^(?:[A-Za-z]:[\\/]|\/)/.test(normalizedPath)) return normalizedPath;
|
|
24080
|
+
if (!normalizedRoot) return void 0;
|
|
24081
|
+
return `${normalizedRoot}/${normalizedPath.replace(/^[\\/]+/, "")}`;
|
|
24082
|
+
}
|
|
24083
|
+
function readGitSubmodules(value, parentRepoRoot) {
|
|
24084
|
+
if (!Array.isArray(value)) return void 0;
|
|
24085
|
+
const submodules = value.map((entry) => {
|
|
24086
|
+
const submodule = readObjectRecord(entry);
|
|
24087
|
+
const path28 = readStringValue(submodule.path);
|
|
24088
|
+
const commit = readStringValue(submodule.commit);
|
|
24089
|
+
const repoPath = readStringValue(submodule.repoPath, submodule.repo_root) ?? joinRepoPath(parentRepoRoot, path28);
|
|
24090
|
+
if (!path28 || !commit || !repoPath) return null;
|
|
24091
|
+
return {
|
|
24092
|
+
path: path28,
|
|
24093
|
+
commit,
|
|
24094
|
+
repoPath,
|
|
24095
|
+
dirty: readBooleanValue(submodule.dirty) ?? false,
|
|
24096
|
+
outOfSync: readBooleanValue(submodule.outOfSync, submodule.out_of_sync) ?? false,
|
|
24097
|
+
lastCheckedAt: readNumberValue(submodule.lastCheckedAt, submodule.last_checked_at) ?? Date.now(),
|
|
24098
|
+
...readStringValue(submodule.error) ? { error: readStringValue(submodule.error) } : {}
|
|
24099
|
+
};
|
|
24100
|
+
}).filter((entry) => entry !== null);
|
|
24101
|
+
return submodules.length > 0 ? submodules : void 0;
|
|
24102
|
+
}
|
|
24103
|
+
function normalizeInlineMeshGitStatus(status, node, options) {
|
|
23879
24104
|
const isGitRepo = readBooleanValue(status.isGitRepo);
|
|
23880
24105
|
if (!Object.keys(status).length || isGitRepo === void 0) return void 0;
|
|
23881
24106
|
const conflictFiles = Array.isArray(status.conflictFiles) ? status.conflictFiles.filter((value) => typeof value === "string") : [];
|
|
23882
24107
|
const conflictCount = readNumberValue(status.conflicts) ?? conflictFiles.length;
|
|
23883
24108
|
const hasConflicts = readBooleanValue(status.hasConflicts) ?? conflictCount > 0;
|
|
24109
|
+
const repoRoot = readStringValue(status.repoRoot, status.repo_root, node?.repoRoot, node?.repo_root, status.workspace, node?.workspace) || void 0;
|
|
24110
|
+
const submodules = readGitSubmodules(status.submodules, repoRoot);
|
|
23884
24111
|
return {
|
|
23885
24112
|
workspace: readStringValue(status.workspace, node?.workspace) || "",
|
|
23886
|
-
repoRoot:
|
|
24113
|
+
repoRoot: repoRoot ?? null,
|
|
23887
24114
|
isGitRepo,
|
|
23888
24115
|
branch: readStringValue(status.branch) ?? null,
|
|
23889
24116
|
headCommit: readStringValue(status.headCommit) ?? null,
|
|
@@ -23899,29 +24126,407 @@ function buildCachedInlineMeshGitStatus(node) {
|
|
|
23899
24126
|
hasConflicts,
|
|
23900
24127
|
conflictFiles,
|
|
23901
24128
|
stashCount: readNumberValue(status.stashCount) ?? 0,
|
|
23902
|
-
lastCheckedAt: Date.now()
|
|
24129
|
+
lastCheckedAt: options?.lastCheckedAt ?? readNumberValue(status.lastCheckedAt) ?? Date.now(),
|
|
24130
|
+
...submodules ? { submodules } : {}
|
|
24131
|
+
};
|
|
24132
|
+
}
|
|
24133
|
+
function buildInlineMeshTransitGitStatus(node) {
|
|
24134
|
+
const rawGit = readObjectRecord(node?.lastGit ?? node?.last_git);
|
|
24135
|
+
const gitResult = readObjectRecord(rawGit.result);
|
|
24136
|
+
const directStatus = readObjectRecord(rawGit.status);
|
|
24137
|
+
const nestedStatus = readObjectRecord(gitResult.status);
|
|
24138
|
+
const rawProbe = readObjectRecord(node?.lastProbe ?? node?.last_probe);
|
|
24139
|
+
const probeGit = readObjectRecord(rawProbe.git);
|
|
24140
|
+
const probeGitResult = readObjectRecord(probeGit.result);
|
|
24141
|
+
const probeDirectStatus = readObjectRecord(probeGit.status);
|
|
24142
|
+
const probeNestedStatus = readObjectRecord(probeGitResult.status);
|
|
24143
|
+
const status = Object.keys(directStatus).length ? directStatus : Object.keys(nestedStatus).length ? nestedStatus : Object.keys(probeDirectStatus).length ? probeDirectStatus : Object.keys(probeNestedStatus).length ? probeNestedStatus : {};
|
|
24144
|
+
return normalizeInlineMeshGitStatus(status, node, { lastCheckedAt: Date.now() });
|
|
24145
|
+
}
|
|
24146
|
+
function recordInlineMeshDirectGitTruth(node, git, source) {
|
|
24147
|
+
if (!node || typeof node !== "object" || Array.isArray(node)) return;
|
|
24148
|
+
const checkedAt = readNumberValue(git.lastCheckedAt) ?? Date.now();
|
|
24149
|
+
const updatedAt = new Date(checkedAt).toISOString();
|
|
24150
|
+
const nextGit = {
|
|
24151
|
+
...git,
|
|
24152
|
+
lastCheckedAt: checkedAt
|
|
24153
|
+
};
|
|
24154
|
+
node.lastGit = {
|
|
24155
|
+
source,
|
|
24156
|
+
checkedAt,
|
|
24157
|
+
status: nextGit
|
|
24158
|
+
};
|
|
24159
|
+
node.last_git = node.lastGit;
|
|
24160
|
+
node.machineStatus = "online";
|
|
24161
|
+
node.updatedAt = updatedAt;
|
|
24162
|
+
node.lastSeenAt = updatedAt;
|
|
24163
|
+
const repoRoot = readStringValue(nextGit.repoRoot);
|
|
24164
|
+
if (repoRoot && !readStringValue(node.repoRoot)) node.repoRoot = repoRoot;
|
|
24165
|
+
}
|
|
24166
|
+
function buildCachedInlineMeshGitStatus(node) {
|
|
24167
|
+
const liveGit = buildInlineMeshTransitGitStatus(node);
|
|
24168
|
+
if (liveGit) return liveGit;
|
|
24169
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
24170
|
+
const cachedGit = readObjectRecord(cachedStatus.git);
|
|
24171
|
+
if (!Object.keys(cachedGit).length) return void 0;
|
|
24172
|
+
return normalizeInlineMeshGitStatus(cachedGit, node);
|
|
24173
|
+
}
|
|
24174
|
+
function shouldDiscardCachedInlineMeshStatus(node) {
|
|
24175
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
24176
|
+
if (!Object.keys(cachedStatus).length) return false;
|
|
24177
|
+
const cachedGit = readObjectRecord(cachedStatus.git);
|
|
24178
|
+
const workspaceError = readStringValue(cachedStatus.error, node?.error);
|
|
24179
|
+
if (workspaceError && /workspace must be an existing directory/i.test(workspaceError)) return true;
|
|
24180
|
+
const isGitRepo = readBooleanValue(cachedGit.isGitRepo);
|
|
24181
|
+
const branch = readStringValue(cachedGit.branch);
|
|
24182
|
+
const headCommit = readStringValue(cachedGit.headCommit);
|
|
24183
|
+
return isGitRepo === false && !branch && !headCommit;
|
|
24184
|
+
}
|
|
24185
|
+
function stripInlineMeshTransientNodeState(node) {
|
|
24186
|
+
if (!node || typeof node !== "object" || Array.isArray(node)) return node;
|
|
24187
|
+
const {
|
|
24188
|
+
cachedStatus,
|
|
24189
|
+
lastGit: _lastGit,
|
|
24190
|
+
last_git: _lastGitLegacy,
|
|
24191
|
+
lastProbe: _lastProbe,
|
|
24192
|
+
last_probe: _lastProbeLegacy,
|
|
24193
|
+
error: _error,
|
|
24194
|
+
health: _health,
|
|
24195
|
+
machineStatus: _machineStatus,
|
|
24196
|
+
lastSeenAt: _lastSeenAt,
|
|
24197
|
+
last_seen_at: _lastSeenAtLegacy,
|
|
24198
|
+
updatedAt: _updatedAt,
|
|
24199
|
+
updated_at: _updatedAtLegacy,
|
|
24200
|
+
activeSession: _activeSession,
|
|
24201
|
+
active_session: _activeSessionLegacy,
|
|
24202
|
+
activeSessionId: _activeSessionId,
|
|
24203
|
+
active_session_id: _activeSessionIdLegacy,
|
|
24204
|
+
sessionId: _sessionId,
|
|
24205
|
+
session_id: _sessionIdLegacy,
|
|
24206
|
+
providerType: _providerType,
|
|
24207
|
+
provider_type: _providerTypeLegacy,
|
|
24208
|
+
...rest
|
|
24209
|
+
} = node;
|
|
24210
|
+
if (cachedStatus && !shouldDiscardCachedInlineMeshStatus(node)) {
|
|
24211
|
+
return { ...rest, cachedStatus };
|
|
24212
|
+
}
|
|
24213
|
+
return rest;
|
|
24214
|
+
}
|
|
24215
|
+
function hasInlineMeshTransientNodeState(node) {
|
|
24216
|
+
if (!node || typeof node !== "object" || Array.isArray(node)) return false;
|
|
24217
|
+
return "cachedStatus" in node || "lastGit" in node || "last_git" in node || "lastProbe" in node || "last_probe" in node || "error" in node || "health" in node || "machineStatus" in node || "lastSeenAt" in node || "last_seen_at" in node || "updatedAt" in node || "updated_at" in node || "activeSession" in node || "active_session" in node || "activeSessionId" in node || "active_session_id" in node || "sessionId" in node || "session_id" in node || "providerType" in node || "provider_type" in node;
|
|
24218
|
+
}
|
|
24219
|
+
function readInlineMeshNodeId(node) {
|
|
24220
|
+
return readStringValue(node?.id, node?.nodeId) || "";
|
|
24221
|
+
}
|
|
24222
|
+
function sanitizeInlineMesh(inlineMesh) {
|
|
24223
|
+
if (!inlineMesh || typeof inlineMesh !== "object" || Array.isArray(inlineMesh)) return inlineMesh;
|
|
24224
|
+
if (!Array.isArray(inlineMesh.nodes)) return inlineMesh;
|
|
24225
|
+
let changed = false;
|
|
24226
|
+
const nodes = inlineMesh.nodes.map((node) => {
|
|
24227
|
+
if (!hasInlineMeshTransientNodeState(node)) return node;
|
|
24228
|
+
changed = true;
|
|
24229
|
+
return stripInlineMeshTransientNodeState(node);
|
|
24230
|
+
});
|
|
24231
|
+
if (!changed) return inlineMesh;
|
|
24232
|
+
return {
|
|
24233
|
+
...inlineMesh,
|
|
24234
|
+
nodes
|
|
24235
|
+
};
|
|
24236
|
+
}
|
|
24237
|
+
function reconcileInlineMeshCache(cached, incoming) {
|
|
24238
|
+
if (!cached || typeof cached !== "object" || Array.isArray(cached)) return incoming;
|
|
24239
|
+
if (!incoming || typeof incoming !== "object" || Array.isArray(incoming)) return cached;
|
|
24240
|
+
const cachedNodes = Array.isArray(cached.nodes) ? cached.nodes : [];
|
|
24241
|
+
const incomingNodes = Array.isArray(incoming.nodes) ? incoming.nodes : [];
|
|
24242
|
+
if (!cachedNodes.length || !incomingNodes.length) return { ...cached, ...incoming };
|
|
24243
|
+
const incomingById = /* @__PURE__ */ new Map();
|
|
24244
|
+
for (const node of incomingNodes) {
|
|
24245
|
+
const nodeId = readInlineMeshNodeId(node);
|
|
24246
|
+
if (nodeId) incomingById.set(nodeId, node);
|
|
24247
|
+
}
|
|
24248
|
+
const nodes = cachedNodes.map((cachedNode) => {
|
|
24249
|
+
const nodeId = readInlineMeshNodeId(cachedNode);
|
|
24250
|
+
const incomingNode = nodeId ? incomingById.get(nodeId) : void 0;
|
|
24251
|
+
if (!incomingNode) return cachedNode;
|
|
24252
|
+
if (hasInlineMeshTransientNodeState(incomingNode)) {
|
|
24253
|
+
return { ...cachedNode, ...incomingNode };
|
|
24254
|
+
}
|
|
24255
|
+
return { ...stripInlineMeshTransientNodeState(cachedNode), ...incomingNode };
|
|
24256
|
+
});
|
|
24257
|
+
return {
|
|
24258
|
+
...cached,
|
|
24259
|
+
...incoming,
|
|
24260
|
+
nodes
|
|
23903
24261
|
};
|
|
23904
24262
|
}
|
|
23905
|
-
function
|
|
24263
|
+
function hasGitWorktreeChanges(git) {
|
|
24264
|
+
if (!git) return false;
|
|
24265
|
+
return Number(git.staged || 0) + Number(git.modified || 0) + Number(git.untracked || 0) + Number(git.deleted || 0) + Number(git.renamed || 0) > 0;
|
|
24266
|
+
}
|
|
24267
|
+
function getGitSubmoduleDriftState(git) {
|
|
24268
|
+
const submodules = Array.isArray(git?.submodules) ? git.submodules : [];
|
|
24269
|
+
let dirty = false;
|
|
24270
|
+
let outOfSync = false;
|
|
24271
|
+
for (const entry of submodules) {
|
|
24272
|
+
const submodule = readObjectRecord(entry);
|
|
24273
|
+
if (readBooleanValue(submodule.dirty) === true) dirty = true;
|
|
24274
|
+
if (readBooleanValue(submodule.outOfSync) === true || !!readStringValue(submodule.error)) outOfSync = true;
|
|
24275
|
+
}
|
|
24276
|
+
return { dirty, outOfSync };
|
|
24277
|
+
}
|
|
24278
|
+
function deriveMeshNodeHealthFromGit(git) {
|
|
24279
|
+
if (!git || readBooleanValue(git.isGitRepo) === false) return "degraded";
|
|
24280
|
+
const branch = readStringValue(git.branch);
|
|
24281
|
+
if (!branch) return "degraded";
|
|
24282
|
+
const submoduleDrift = getGitSubmoduleDriftState(git);
|
|
24283
|
+
if (submoduleDrift.outOfSync) return "degraded";
|
|
24284
|
+
if (submoduleDrift.dirty || hasGitWorktreeChanges(git)) return "dirty";
|
|
24285
|
+
return "online";
|
|
24286
|
+
}
|
|
24287
|
+
function readCachedInlineMeshActiveSessions(node) {
|
|
23906
24288
|
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
23907
|
-
const
|
|
23908
|
-
const
|
|
23909
|
-
const
|
|
24289
|
+
const activeSession = readObjectRecord(cachedStatus.activeSession);
|
|
24290
|
+
const fallbackSession = Object.keys(activeSession).length ? activeSession : readObjectRecord(node?.activeSession ?? node?.active_session);
|
|
24291
|
+
const sessionId = readStringValue(fallbackSession.id, fallbackSession.sessionId, fallbackSession.session_id, node?.activeSessionId, node?.active_session_id, node?.sessionId, node?.session_id);
|
|
24292
|
+
return sessionId ? [sessionId] : [];
|
|
24293
|
+
}
|
|
24294
|
+
function readCachedInlineMeshActiveSessionDetails(node) {
|
|
24295
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
24296
|
+
const activeSession = readObjectRecord(cachedStatus.activeSession);
|
|
24297
|
+
const fallbackSession = Object.keys(activeSession).length ? activeSession : readObjectRecord(node?.activeSession ?? node?.active_session);
|
|
24298
|
+
const sessionId = readStringValue(
|
|
24299
|
+
fallbackSession.id,
|
|
24300
|
+
fallbackSession.sessionId,
|
|
24301
|
+
fallbackSession.session_id,
|
|
24302
|
+
node?.activeSessionId,
|
|
24303
|
+
node?.active_session_id,
|
|
24304
|
+
node?.sessionId,
|
|
24305
|
+
node?.session_id
|
|
24306
|
+
);
|
|
24307
|
+
if (!sessionId) return [];
|
|
24308
|
+
return [{
|
|
24309
|
+
sessionId,
|
|
24310
|
+
providerType: readStringValue(
|
|
24311
|
+
fallbackSession.providerType,
|
|
24312
|
+
fallbackSession.provider_type,
|
|
24313
|
+
fallbackSession.cliType,
|
|
24314
|
+
fallbackSession.cli_type,
|
|
24315
|
+
fallbackSession.provider,
|
|
24316
|
+
node?.providerType,
|
|
24317
|
+
node?.provider_type
|
|
24318
|
+
),
|
|
24319
|
+
state: readStringValue(fallbackSession.status, fallbackSession.state, fallbackSession.lifecycle),
|
|
24320
|
+
lifecycle: readStringValue(fallbackSession.lifecycle),
|
|
24321
|
+
title: readStringValue(fallbackSession.title, fallbackSession.displayName, fallbackSession.display_name) ?? null,
|
|
24322
|
+
workspace: readStringValue(fallbackSession.workspace, node?.workspace) ?? null,
|
|
24323
|
+
lastActivityAt: readStringValue(fallbackSession.lastActivityAt, fallbackSession.last_activity_at) ?? null,
|
|
24324
|
+
recoveryState: readStringValue(fallbackSession.recoveryState, fallbackSession.recovery_state) ?? null,
|
|
24325
|
+
isCached: true
|
|
24326
|
+
}];
|
|
24327
|
+
}
|
|
24328
|
+
function readLiveMeshSessionState(record) {
|
|
24329
|
+
return readStringValue(
|
|
24330
|
+
record?.meta?.sessionStatus,
|
|
24331
|
+
record?.meta?.status,
|
|
24332
|
+
record?.meta?.providerStatus,
|
|
24333
|
+
record?.status,
|
|
24334
|
+
record?.state,
|
|
24335
|
+
record?.lifecycle
|
|
24336
|
+
);
|
|
24337
|
+
}
|
|
24338
|
+
function toIsoTimestamp(value) {
|
|
24339
|
+
if (typeof value === "number" && Number.isFinite(value)) return new Date(value).toISOString();
|
|
24340
|
+
const stringValue = readStringValue(value);
|
|
24341
|
+
return stringValue || null;
|
|
24342
|
+
}
|
|
24343
|
+
function synthesizeMeshNodeFreshnessFromConnection(status) {
|
|
24344
|
+
const connection = readObjectRecord(status.connection);
|
|
24345
|
+
const connectionFreshAt = toIsoTimestamp(connection.lastCommandAt ?? connection.lastConnectedAt ?? connection.lastStateChangeAt);
|
|
24346
|
+
const git = readObjectRecord(status.git);
|
|
24347
|
+
const gitCheckedAt = toIsoTimestamp(git.lastCheckedAt);
|
|
24348
|
+
if (!status.lastSeenAt && connectionFreshAt) status.lastSeenAt = connectionFreshAt;
|
|
24349
|
+
if (!status.updatedAt && (gitCheckedAt || connectionFreshAt)) {
|
|
24350
|
+
status.updatedAt = gitCheckedAt ?? connectionFreshAt;
|
|
24351
|
+
}
|
|
24352
|
+
}
|
|
24353
|
+
function finalizeMeshNodeStatus(args) {
|
|
24354
|
+
const { status, node, daemonId, isSelfNode } = args;
|
|
24355
|
+
if (!readStringValue(status.machineStatus)) {
|
|
24356
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
24357
|
+
const machineStatus = readStringValue(cachedStatus.machineStatus, cachedStatus.machine_status, node?.machineStatus);
|
|
24358
|
+
if (machineStatus) status.machineStatus = machineStatus;
|
|
24359
|
+
}
|
|
24360
|
+
synthesizeMeshNodeFreshnessFromConnection(status);
|
|
24361
|
+
const connectionState = readStringValue(readObjectRecord(status.connection).state);
|
|
24362
|
+
status.launchReady = !!daemonId && (readStringValue(status.machineStatus) === "online" || connectionState === "connected" || isSelfNode);
|
|
24363
|
+
}
|
|
24364
|
+
async function probeRemoteMeshGitStatus(args) {
|
|
24365
|
+
if (!args.dispatchMeshCommand) return null;
|
|
24366
|
+
const remoteResult = await Promise.race([
|
|
24367
|
+
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace }),
|
|
24368
|
+
new Promise((_, reject) => setTimeout(() => reject(new Error("timeout")), args.timeoutMs))
|
|
24369
|
+
]);
|
|
24370
|
+
const remoteGit = remoteResult?.status ?? remoteResult?.git ?? remoteResult;
|
|
24371
|
+
return remoteGit && typeof remoteGit === "object" && typeof remoteGit.isGitRepo === "boolean" ? remoteGit : null;
|
|
24372
|
+
}
|
|
24373
|
+
async function hydrateInlineMeshDirectTruth(args) {
|
|
24374
|
+
const nodes = Array.isArray(args.mesh?.nodes) ? args.mesh.nodes : [];
|
|
24375
|
+
if (!nodes.length) {
|
|
24376
|
+
return {
|
|
24377
|
+
directEvidenceCount: 0,
|
|
24378
|
+
localConfirmedCount: 0,
|
|
24379
|
+
peerAttemptedCount: 0,
|
|
24380
|
+
peerConfirmedCount: 0,
|
|
24381
|
+
unavailableNodeIds: []
|
|
24382
|
+
};
|
|
24383
|
+
}
|
|
24384
|
+
const selectedCoordinatorNodeId = readStringValue(
|
|
24385
|
+
args.mesh?.coordinator?.preferredNodeId,
|
|
24386
|
+
nodes[0]?.id,
|
|
24387
|
+
nodes[0]?.nodeId
|
|
24388
|
+
);
|
|
24389
|
+
let localConfirmedCount = 0;
|
|
24390
|
+
let peerAttemptedCount = 0;
|
|
24391
|
+
let peerConfirmedCount = 0;
|
|
24392
|
+
const unavailableNodeIds = [];
|
|
24393
|
+
for (const [nodeIndex, node] of nodes.entries()) {
|
|
24394
|
+
const nodeId = readStringValue(node?.id, node?.nodeId) || `node_${nodeIndex}`;
|
|
24395
|
+
const workspace = readStringValue(node?.workspace);
|
|
24396
|
+
const daemonId = readStringValue(node?.daemonId);
|
|
24397
|
+
const isSelfNode = Boolean(
|
|
24398
|
+
nodeId && selectedCoordinatorNodeId && nodeId === selectedCoordinatorNodeId
|
|
24399
|
+
) || Boolean(
|
|
24400
|
+
daemonId && (daemonId === args.localMachineId || daemonId === args.statusInstanceId)
|
|
24401
|
+
) || Boolean(args.meshSource !== "local_config" && nodeIndex === 0);
|
|
24402
|
+
if (!workspace) {
|
|
24403
|
+
if (!isSelfNode && daemonId) unavailableNodeIds.push(nodeId);
|
|
24404
|
+
continue;
|
|
24405
|
+
}
|
|
24406
|
+
if (isSelfNode && fs10.existsSync(workspace)) {
|
|
24407
|
+
try {
|
|
24408
|
+
const localGit = await getGitRepoStatus(workspace, { timeoutMs: 1e4, refreshUpstream: true });
|
|
24409
|
+
if (localGit?.isGitRepo) {
|
|
24410
|
+
recordInlineMeshDirectGitTruth(node, localGit, "selected_coordinator_local_git");
|
|
24411
|
+
localConfirmedCount += 1;
|
|
24412
|
+
continue;
|
|
24413
|
+
}
|
|
24414
|
+
} catch {
|
|
24415
|
+
}
|
|
24416
|
+
}
|
|
24417
|
+
if (!daemonId || !args.dispatchMeshCommand) {
|
|
24418
|
+
if (!isSelfNode) unavailableNodeIds.push(nodeId);
|
|
24419
|
+
continue;
|
|
24420
|
+
}
|
|
24421
|
+
peerAttemptedCount += 1;
|
|
24422
|
+
try {
|
|
24423
|
+
const remoteGit = await probeRemoteMeshGitStatus({
|
|
24424
|
+
dispatchMeshCommand: args.dispatchMeshCommand,
|
|
24425
|
+
daemonId,
|
|
24426
|
+
workspace,
|
|
24427
|
+
timeoutMs: 8e3
|
|
24428
|
+
});
|
|
24429
|
+
if (remoteGit) {
|
|
24430
|
+
recordInlineMeshDirectGitTruth(node, remoteGit, "selected_coordinator_mesh_p2p_git");
|
|
24431
|
+
peerConfirmedCount += 1;
|
|
24432
|
+
continue;
|
|
24433
|
+
}
|
|
24434
|
+
} catch {
|
|
24435
|
+
}
|
|
24436
|
+
unavailableNodeIds.push(nodeId);
|
|
24437
|
+
}
|
|
24438
|
+
return {
|
|
24439
|
+
directEvidenceCount: localConfirmedCount + peerConfirmedCount,
|
|
24440
|
+
localConfirmedCount,
|
|
24441
|
+
peerAttemptedCount,
|
|
24442
|
+
peerConfirmedCount,
|
|
24443
|
+
unavailableNodeIds
|
|
24444
|
+
};
|
|
24445
|
+
}
|
|
24446
|
+
function summarizeMeshSessionRecord(record) {
|
|
24447
|
+
return {
|
|
24448
|
+
sessionId: readStringValue(record?.sessionId) || "unknown",
|
|
24449
|
+
providerType: readStringValue(record?.providerType),
|
|
24450
|
+
state: readLiveMeshSessionState(record),
|
|
24451
|
+
lifecycle: readStringValue(record?.lifecycle),
|
|
24452
|
+
surfaceKind: getSessionHostSurfaceKind(record),
|
|
24453
|
+
recoveryState: readStringValue(record?.meta?.runtimeRecoveryState) ?? null,
|
|
24454
|
+
workspace: readStringValue(record?.workspace) ?? null,
|
|
24455
|
+
title: readStringValue(record?.displayName, record?.workspaceLabel) ?? null,
|
|
24456
|
+
lastActivityAt: toIsoTimestamp(record?.updatedAt ?? record?.lastActivityAt ?? record?.last_activity_at),
|
|
24457
|
+
isCached: false
|
|
24458
|
+
};
|
|
24459
|
+
}
|
|
24460
|
+
function liveSessionRecordMatchesMeshNode(record, meshId, nodeId) {
|
|
24461
|
+
const recordNodeId = readStringValue(record?.meta?.meshNodeId);
|
|
24462
|
+
if (!recordNodeId || recordNodeId !== nodeId) return false;
|
|
24463
|
+
const recordMeshId = readStringValue(record?.meta?.meshNodeFor);
|
|
24464
|
+
return !recordMeshId || recordMeshId === meshId;
|
|
24465
|
+
}
|
|
24466
|
+
function liveSessionRecordMatchesMeshWorkspace(record, meshId, workspace) {
|
|
24467
|
+
const recordWorkspace = readStringValue(record?.workspace);
|
|
24468
|
+
if (!recordWorkspace || !workspace || recordWorkspace !== workspace) return false;
|
|
24469
|
+
const recordMeshId = readStringValue(record?.meta?.meshNodeFor);
|
|
24470
|
+
if (recordMeshId) return recordMeshId === meshId;
|
|
24471
|
+
return record?.meta?.launchedByCoordinator === true || !!readStringValue(record?.meta?.meshNodeId);
|
|
24472
|
+
}
|
|
24473
|
+
function readLiveMeshNodeWorkspace(args) {
|
|
24474
|
+
const directNodeWorkspace = args.liveSessionRecords.find((record) => liveSessionRecordMatchesMeshNode(record, args.meshId, args.nodeId) && readStringValue(record?.workspace));
|
|
24475
|
+
if (directNodeWorkspace) {
|
|
24476
|
+
return readStringValue(directNodeWorkspace.workspace) || "";
|
|
24477
|
+
}
|
|
24478
|
+
if (args.allowCoordinatorSession) {
|
|
24479
|
+
const coordinatorWorkspace = args.liveSessionRecords.find((record) => readStringValue(record?.meta?.meshCoordinatorFor) === args.meshId && readStringValue(record?.workspace));
|
|
24480
|
+
if (coordinatorWorkspace) {
|
|
24481
|
+
return readStringValue(coordinatorWorkspace.workspace) || "";
|
|
24482
|
+
}
|
|
24483
|
+
}
|
|
24484
|
+
return "";
|
|
24485
|
+
}
|
|
24486
|
+
function collectLiveMeshSessionRecords(args) {
|
|
24487
|
+
const matches = args.liveSessionRecords.filter((record) => {
|
|
24488
|
+
const nodeWorkspace = readStringValue(args.node?.workspace);
|
|
24489
|
+
if (liveSessionRecordMatchesMeshNode(record, args.meshId, args.nodeId)) return true;
|
|
24490
|
+
return !!nodeWorkspace && liveSessionRecordMatchesMeshWorkspace(record, args.meshId, nodeWorkspace);
|
|
24491
|
+
});
|
|
24492
|
+
if (args.allowCoordinatorSession) {
|
|
24493
|
+
for (const record of args.liveSessionRecords) {
|
|
24494
|
+
if (readStringValue(record?.meta?.meshCoordinatorFor) !== args.meshId) continue;
|
|
24495
|
+
const sessionId = readStringValue(record?.sessionId);
|
|
24496
|
+
if (sessionId && matches.some((entry) => readStringValue(entry?.sessionId) === sessionId)) continue;
|
|
24497
|
+
matches.push(record);
|
|
24498
|
+
}
|
|
24499
|
+
}
|
|
24500
|
+
return matches;
|
|
24501
|
+
}
|
|
24502
|
+
function applyCachedInlineMeshNodeStatus(status, node, options) {
|
|
24503
|
+
const cachedStatus = readObjectRecord(node?.cachedStatus);
|
|
24504
|
+
const liveGit = buildInlineMeshTransitGitStatus(node);
|
|
24505
|
+
const git = options?.skipGit ? void 0 : liveGit ?? buildCachedInlineMeshGitStatus(node);
|
|
24506
|
+
const error = options?.skipError ? void 0 : liveGit ? void 0 : readStringValue(cachedStatus.error, node?.error);
|
|
24507
|
+
const health = options?.skipHealth ? void 0 : liveGit ? void 0 : readStringValue(cachedStatus.health, node?.health);
|
|
23910
24508
|
const machineStatus = readStringValue(cachedStatus.machineStatus, node?.machineStatus);
|
|
23911
|
-
|
|
23912
|
-
|
|
24509
|
+
const lastSeenAt = toIsoTimestamp(cachedStatus.lastSeenAt ?? cachedStatus.last_seen_at ?? node?.lastSeenAt ?? node?.last_seen_at);
|
|
24510
|
+
const updatedAt = toIsoTimestamp(cachedStatus.updatedAt ?? cachedStatus.updated_at ?? node?.updatedAt ?? node?.updated_at);
|
|
24511
|
+
const activeSessions = readCachedInlineMeshActiveSessions(node);
|
|
24512
|
+
const activeSessionDetails = readCachedInlineMeshActiveSessionDetails(node);
|
|
24513
|
+
if (!git && !error && !health && !machineStatus && !lastSeenAt && !updatedAt && activeSessions.length === 0) return false;
|
|
23913
24514
|
if (git) status.git = git;
|
|
23914
24515
|
if (error) status.error = error;
|
|
24516
|
+
if (machineStatus) status.machineStatus = machineStatus;
|
|
24517
|
+
if (lastSeenAt) status.lastSeenAt = lastSeenAt;
|
|
24518
|
+
if (updatedAt) status.updatedAt = updatedAt;
|
|
24519
|
+
if (activeSessions.length > 0) status.activeSessions = activeSessions;
|
|
24520
|
+
if (activeSessionDetails.length > 0) status.activeSessionDetails = activeSessionDetails;
|
|
23915
24521
|
if (health) {
|
|
23916
24522
|
status.health = health;
|
|
23917
24523
|
return true;
|
|
23918
24524
|
}
|
|
23919
24525
|
if (git) {
|
|
23920
|
-
|
|
23921
|
-
status.health = git.isGitRepo === false ? "degraded" : dirty ? "dirty" : "online";
|
|
24526
|
+
status.health = deriveMeshNodeHealthFromGit(git);
|
|
23922
24527
|
return true;
|
|
23923
24528
|
}
|
|
23924
|
-
return
|
|
24529
|
+
return activeSessions.length > 0 || !!machineStatus || !!lastSeenAt || !!updatedAt;
|
|
23925
24530
|
}
|
|
23926
24531
|
async function resolveProviderTypeFromPriority(args) {
|
|
23927
24532
|
if (!args.providerPriority.length) {
|
|
@@ -23959,7 +24564,7 @@ function truncateValidationOutput(value) {
|
|
|
23959
24564
|
}
|
|
23960
24565
|
function readPackageScripts(workspace) {
|
|
23961
24566
|
try {
|
|
23962
|
-
const packageJsonPath = (0,
|
|
24567
|
+
const packageJsonPath = (0, import_path7.join)(workspace, "package.json");
|
|
23963
24568
|
const parsed = JSON.parse(fs10.readFileSync(packageJsonPath, "utf-8"));
|
|
23964
24569
|
return parsed?.scripts && typeof parsed.scripts === "object" && !Array.isArray(parsed.scripts) ? parsed.scripts : {};
|
|
23965
24570
|
} catch {
|
|
@@ -24167,13 +24772,13 @@ function serializeMeshCoordinatorMcpConfig(config, format) {
|
|
|
24167
24772
|
}
|
|
24168
24773
|
function resolveHermesUserHome() {
|
|
24169
24774
|
const explicitHome = process.env.HERMES_HOME?.trim();
|
|
24170
|
-
return explicitHome || (0,
|
|
24775
|
+
return explicitHome || (0, import_path7.join)((0, import_os3.homedir)(), ".hermes");
|
|
24171
24776
|
}
|
|
24172
24777
|
function loadHermesCoordinatorBaseConfig(targetConfigPath) {
|
|
24173
24778
|
const sourceHome = resolveHermesUserHome();
|
|
24174
|
-
const sourceConfigPath = (0,
|
|
24779
|
+
const sourceConfigPath = (0, import_path7.join)(sourceHome, "config.yaml");
|
|
24175
24780
|
if (!fs10.existsSync(sourceConfigPath)) return { config: {}, sourceHome, sourceConfigPath };
|
|
24176
|
-
if ((0,
|
|
24781
|
+
if ((0, import_path7.resolve)(sourceConfigPath) === (0, import_path7.resolve)(targetConfigPath)) return { config: {}, sourceHome, sourceConfigPath };
|
|
24177
24782
|
const parsed = parseMeshCoordinatorMcpConfig(fs10.readFileSync(sourceConfigPath, "utf-8"), "hermes_config_yaml");
|
|
24178
24783
|
const { mcp_servers: _mcpServers, ...baseConfig } = parsed;
|
|
24179
24784
|
return { config: baseConfig, sourceHome, sourceConfigPath };
|
|
@@ -24207,10 +24812,10 @@ function stripHermesCoordinatorTempModelProviderOverrides(config) {
|
|
|
24207
24812
|
return sanitized;
|
|
24208
24813
|
}
|
|
24209
24814
|
function copyHermesCoordinatorCredentialFiles(sourceHome, targetHome) {
|
|
24210
|
-
if ((0,
|
|
24815
|
+
if ((0, import_path7.resolve)(sourceHome) === (0, import_path7.resolve)(targetHome)) return;
|
|
24211
24816
|
for (const fileName of [".env", "auth.json"]) {
|
|
24212
|
-
const sourcePath = (0,
|
|
24213
|
-
const targetPath = (0,
|
|
24817
|
+
const sourcePath = (0, import_path7.join)(sourceHome, fileName);
|
|
24818
|
+
const targetPath = (0, import_path7.join)(targetHome, fileName);
|
|
24214
24819
|
if (!fs10.existsSync(sourcePath)) continue;
|
|
24215
24820
|
try {
|
|
24216
24821
|
fs10.copyFileSync(sourcePath, targetPath);
|
|
@@ -24319,25 +24924,40 @@ var DaemonCommandRouter = class {
|
|
|
24319
24924
|
}
|
|
24320
24925
|
getCachedInlineMesh(meshId, inlineMesh) {
|
|
24321
24926
|
if (inlineMesh && typeof inlineMesh === "object") {
|
|
24322
|
-
this.
|
|
24323
|
-
return inlineMesh;
|
|
24927
|
+
return this.warmInlineMeshCache(meshId, inlineMesh);
|
|
24324
24928
|
}
|
|
24325
24929
|
return this.inlineMeshCache.get(meshId);
|
|
24326
24930
|
}
|
|
24931
|
+
warmInlineMeshCache(meshId, inlineMesh) {
|
|
24932
|
+
if (!inlineMesh || typeof inlineMesh !== "object") return void 0;
|
|
24933
|
+
const sanitizedInlineMesh = sanitizeInlineMesh(inlineMesh);
|
|
24934
|
+
const cached = this.inlineMeshCache.get(meshId);
|
|
24935
|
+
if (cached) {
|
|
24936
|
+
const merged = reconcileInlineMeshCache(cached, sanitizedInlineMesh);
|
|
24937
|
+
this.inlineMeshCache.set(meshId, merged);
|
|
24938
|
+
return merged;
|
|
24939
|
+
}
|
|
24940
|
+
this.inlineMeshCache.set(meshId, sanitizedInlineMesh);
|
|
24941
|
+
return sanitizedInlineMesh;
|
|
24942
|
+
}
|
|
24327
24943
|
async getMeshForCommand(meshId, inlineMesh, options) {
|
|
24328
24944
|
const preferInline = options?.preferInline === true;
|
|
24329
24945
|
if (preferInline) {
|
|
24330
|
-
const cached2 = this.getCachedInlineMesh(meshId
|
|
24331
|
-
if (cached2) return { mesh: cached2, inline: true };
|
|
24946
|
+
const cached2 = this.getCachedInlineMesh(meshId);
|
|
24947
|
+
if (cached2) return { mesh: cached2, inline: true, source: "inline_cache" };
|
|
24948
|
+
const warmedInline2 = this.warmInlineMeshCache(meshId, inlineMesh);
|
|
24949
|
+
if (warmedInline2) return { mesh: warmedInline2, inline: true, source: "inline_bootstrap" };
|
|
24332
24950
|
}
|
|
24333
24951
|
try {
|
|
24334
24952
|
const { getMesh: getMesh3 } = await Promise.resolve().then(() => (init_mesh_config(), mesh_config_exports));
|
|
24335
24953
|
const mesh = getMesh3(meshId);
|
|
24336
|
-
if (mesh) return { mesh, inline: false };
|
|
24954
|
+
if (mesh) return { mesh, inline: false, source: "local_config" };
|
|
24337
24955
|
} catch {
|
|
24338
24956
|
}
|
|
24339
|
-
const cached = this.getCachedInlineMesh(meshId
|
|
24340
|
-
|
|
24957
|
+
const cached = this.getCachedInlineMesh(meshId);
|
|
24958
|
+
if (cached) return { mesh: cached, inline: true, source: "inline_cache" };
|
|
24959
|
+
const warmedInline = this.warmInlineMeshCache(meshId, inlineMesh);
|
|
24960
|
+
return warmedInline ? { mesh: warmedInline, inline: true, source: "inline_bootstrap" } : null;
|
|
24341
24961
|
}
|
|
24342
24962
|
updateInlineMeshNode(meshId, mesh, node) {
|
|
24343
24963
|
if (!mesh || !Array.isArray(mesh.nodes) || !node?.id) return;
|
|
@@ -24402,7 +25022,7 @@ var DaemonCommandRouter = class {
|
|
|
24402
25022
|
}
|
|
24403
25023
|
const { resolveWorktreePath: resolveWorktreePath2, listWorktrees: listWorktrees2, removeWorktree: removeWorktree2 } = await Promise.resolve().then(() => (init_git_worktree(), git_worktree_exports));
|
|
24404
25024
|
const normalizePath = (value) => {
|
|
24405
|
-
const resolved = (0,
|
|
25025
|
+
const resolved = (0, import_path7.resolve)(value);
|
|
24406
25026
|
try {
|
|
24407
25027
|
return fs10.realpathSync(resolved);
|
|
24408
25028
|
} catch {
|
|
@@ -24566,6 +25186,7 @@ var DaemonCommandRouter = class {
|
|
|
24566
25186
|
const deletedSessionIds = [];
|
|
24567
25187
|
const skippedSessionIds = [];
|
|
24568
25188
|
const skippedLiveSessionIds = [];
|
|
25189
|
+
const skippedCoordinatorSessionIds = [];
|
|
24569
25190
|
const deleteUnsupportedSessionIds = [];
|
|
24570
25191
|
const recordsRemainSessionIds = [];
|
|
24571
25192
|
const errors = [];
|
|
@@ -24598,6 +25219,12 @@ var DaemonCommandRouter = class {
|
|
|
24598
25219
|
const completed = this.isCompletedHostedSession(record);
|
|
24599
25220
|
const surfaceKind = getSessionHostSurfaceKind(record);
|
|
24600
25221
|
const liveRuntime = surfaceKind === "live_runtime";
|
|
25222
|
+
const coordinatorSession = readStringValue(record?.meta?.meshCoordinatorFor) === args.meshId;
|
|
25223
|
+
if (!hasExplicitSessionIds && coordinatorSession) {
|
|
25224
|
+
skippedSessionIds.push(sessionId);
|
|
25225
|
+
skippedCoordinatorSessionIds.push(sessionId);
|
|
25226
|
+
continue;
|
|
25227
|
+
}
|
|
24601
25228
|
if (!hasExplicitSessionIds && liveRuntime) {
|
|
24602
25229
|
skippedSessionIds.push(sessionId);
|
|
24603
25230
|
skippedLiveSessionIds.push(sessionId);
|
|
@@ -24663,6 +25290,7 @@ var DaemonCommandRouter = class {
|
|
|
24663
25290
|
deletedSessionIds,
|
|
24664
25291
|
skippedSessionIds,
|
|
24665
25292
|
skippedLiveSessionIds,
|
|
25293
|
+
skippedCoordinatorSessionIds,
|
|
24666
25294
|
...deleteUnsupported ? {
|
|
24667
25295
|
deleteUnsupported: true,
|
|
24668
25296
|
effectiveCleanup: args.mode === "stop_and_delete" ? "stopped_only_records_remain" : "delete_unsupported_records_remain",
|
|
@@ -24795,7 +25423,8 @@ var DaemonCommandRouter = class {
|
|
|
24795
25423
|
return handleMeshForwardEvent({ instanceManager: this.deps.instanceManager }, args);
|
|
24796
25424
|
}
|
|
24797
25425
|
case "get_pending_mesh_events": {
|
|
24798
|
-
const
|
|
25426
|
+
const meshId = typeof args?.meshId === "string" ? args.meshId.trim() : "";
|
|
25427
|
+
const events = drainPendingMeshCoordinatorEvents(meshId || void 0);
|
|
24799
25428
|
return { success: true, events };
|
|
24800
25429
|
}
|
|
24801
25430
|
case "launch_cli":
|
|
@@ -25324,15 +25953,39 @@ var DaemonCommandRouter = class {
|
|
|
25324
25953
|
case "get_mesh": {
|
|
25325
25954
|
const meshId = typeof args?.meshId === "string" ? args.meshId.trim() : "";
|
|
25326
25955
|
if (!meshId) return { success: false, error: "meshId required" };
|
|
25327
|
-
|
|
25328
|
-
|
|
25329
|
-
|
|
25330
|
-
|
|
25331
|
-
|
|
25956
|
+
const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
|
|
25957
|
+
if (!meshRecord?.mesh) return { success: false, error: "Mesh not found" };
|
|
25958
|
+
const requireDirectPeerTruth = args?.requireDirectPeerTruth === true;
|
|
25959
|
+
const directTruth = await hydrateInlineMeshDirectTruth({
|
|
25960
|
+
mesh: meshRecord.mesh,
|
|
25961
|
+
meshSource: meshRecord.source,
|
|
25962
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
25963
|
+
statusInstanceId: this.deps.statusInstanceId,
|
|
25964
|
+
localMachineId: loadConfig().machineId || ""
|
|
25965
|
+
});
|
|
25966
|
+
const directTruthSatisfied = meshRecord.source !== "inline_bootstrap" || directTruth.directEvidenceCount > 0;
|
|
25967
|
+
const sourceOfTruth = {
|
|
25968
|
+
membership: meshRecord.source === "inline_cache" ? "coordinator_inline_mesh_cache" : meshRecord.source === "local_config" ? "local_mesh_config" : "inline_bootstrap_snapshot",
|
|
25969
|
+
coordinatorOwnsLiveTruth: directTruthSatisfied,
|
|
25970
|
+
directPeerTruth: {
|
|
25971
|
+
required: requireDirectPeerTruth,
|
|
25972
|
+
satisfied: directTruthSatisfied,
|
|
25973
|
+
directEvidenceCount: directTruth.directEvidenceCount,
|
|
25974
|
+
localConfirmedCount: directTruth.localConfirmedCount,
|
|
25975
|
+
peerAttemptedCount: directTruth.peerAttemptedCount,
|
|
25976
|
+
peerConfirmedCount: directTruth.peerConfirmedCount,
|
|
25977
|
+
unavailableNodeIds: directTruth.unavailableNodeIds
|
|
25978
|
+
}
|
|
25979
|
+
};
|
|
25980
|
+
if (requireDirectPeerTruth && !directTruthSatisfied) {
|
|
25981
|
+
return {
|
|
25982
|
+
success: false,
|
|
25983
|
+
code: "mesh_direct_peer_truth_unavailable",
|
|
25984
|
+
error: "Selected coordinator could not confirm direct mesh truth yet. Bootstrap inventory stays unavailable until direct get_mesh probes succeed.",
|
|
25985
|
+
sourceOfTruth
|
|
25986
|
+
};
|
|
25332
25987
|
}
|
|
25333
|
-
|
|
25334
|
-
if (cached) return { success: true, mesh: cached };
|
|
25335
|
-
return { success: false, error: "Mesh not found" };
|
|
25988
|
+
return { success: true, mesh: meshRecord.mesh, sourceOfTruth };
|
|
25336
25989
|
}
|
|
25337
25990
|
case "create_mesh": {
|
|
25338
25991
|
const name = typeof args?.name === "string" ? args.name.trim() : "";
|
|
@@ -25853,7 +26506,14 @@ var DaemonCommandRouter = class {
|
|
|
25853
26506
|
cliType
|
|
25854
26507
|
};
|
|
25855
26508
|
}
|
|
25856
|
-
const
|
|
26509
|
+
const sessionHostRecords = this.deps.sessionHostControl?.listSessions ? await this.deps.sessionHostControl.listSessions().catch(() => []) : [];
|
|
26510
|
+
const liveMeshSessions = partitionSessionHostRecords(Array.isArray(sessionHostRecords) ? sessionHostRecords : []).liveRuntimes;
|
|
26511
|
+
const workspace = readLiveMeshNodeWorkspace({
|
|
26512
|
+
meshId,
|
|
26513
|
+
nodeId: String(coordinatorNode.id || coordinatorNode.nodeId || preferredCoordinatorNodeId || ""),
|
|
26514
|
+
liveSessionRecords: liveMeshSessions,
|
|
26515
|
+
allowCoordinatorSession: true
|
|
26516
|
+
}) || (typeof coordinatorNode.workspace === "string" ? coordinatorNode.workspace.trim() : "");
|
|
25857
26517
|
if (!workspace) return { success: false, error: "Coordinator node workspace required", meshId, cliType };
|
|
25858
26518
|
if (!cliType) {
|
|
25859
26519
|
const resolved = await resolveProviderTypeFromPriority({
|
|
@@ -26015,7 +26675,7 @@ ${block}`);
|
|
|
26015
26675
|
workspace
|
|
26016
26676
|
};
|
|
26017
26677
|
}
|
|
26018
|
-
const { existsSync:
|
|
26678
|
+
const { existsSync: existsSync26, readFileSync: readFileSync18, writeFileSync: writeFileSync15, copyFileSync: copyFileSync4, mkdirSync: mkdirSync17 } = await import("fs");
|
|
26019
26679
|
const { dirname: dirname9 } = await import("path");
|
|
26020
26680
|
const mcpConfigPath = coordinatorSetup.configPath;
|
|
26021
26681
|
const hermesManualFallback = cliType === "hermes-cli" && configFormat === "hermes_config_yaml" ? createHermesManualMeshCoordinatorSetup(meshId, workspace) : null;
|
|
@@ -26058,14 +26718,14 @@ ${block}`);
|
|
|
26058
26718
|
if (hermesManualFallback) return returnManualFallback(message);
|
|
26059
26719
|
return { success: false, code: "mesh_coordinator_config_write_failed", error: message, meshId, cliType, workspace };
|
|
26060
26720
|
}
|
|
26061
|
-
const hadExistingMcpConfig =
|
|
26721
|
+
const hadExistingMcpConfig = existsSync26(mcpConfigPath);
|
|
26062
26722
|
let existingMcpConfig = hermesBaseConfig?.config || {};
|
|
26063
26723
|
if (hermesBaseConfig) {
|
|
26064
26724
|
copyHermesCoordinatorCredentialFiles(hermesBaseConfig.sourceHome, dirname9(mcpConfigPath));
|
|
26065
26725
|
}
|
|
26066
26726
|
if (hadExistingMcpConfig) {
|
|
26067
26727
|
try {
|
|
26068
|
-
const parsedExistingMcpConfig = parseMeshCoordinatorMcpConfig(
|
|
26728
|
+
const parsedExistingMcpConfig = parseMeshCoordinatorMcpConfig(readFileSync18(mcpConfigPath, "utf-8"), configFormat);
|
|
26069
26729
|
const existingCoordinatorConfig = hermesManualFallback ? stripHermesCoordinatorTempModelProviderOverrides(parsedExistingMcpConfig) : parsedExistingMcpConfig;
|
|
26070
26730
|
existingMcpConfig = { ...existingMcpConfig, ...existingCoordinatorConfig };
|
|
26071
26731
|
copyFileSync4(mcpConfigPath, mcpConfigPath + ".backup");
|
|
@@ -26161,92 +26821,184 @@ ${block}`);
|
|
|
26161
26821
|
const { readLedgerEntries: readLedgerEntries2, getLedgerSummary: getLedgerSummary2 } = await Promise.resolve().then(() => (init_mesh_ledger(), mesh_ledger_exports));
|
|
26162
26822
|
const ledgerEntries = readLedgerEntries2(meshId, { tail: 20 });
|
|
26163
26823
|
const ledgerSummary = getLedgerSummary2(meshId);
|
|
26824
|
+
const sessionHostRecords = this.deps.sessionHostControl?.listSessions ? await this.deps.sessionHostControl.listSessions().catch(() => []) : [];
|
|
26825
|
+
const liveMeshSessions = partitionSessionHostRecords(Array.isArray(sessionHostRecords) ? sessionHostRecords : []).liveRuntimes;
|
|
26826
|
+
const localMachineId = loadConfig().machineId || "";
|
|
26827
|
+
const selectedCoordinatorNodeId = readStringValue(
|
|
26828
|
+
mesh.coordinator?.preferredNodeId,
|
|
26829
|
+
mesh.nodes?.[0]?.id,
|
|
26830
|
+
mesh.nodes?.[0]?.nodeId
|
|
26831
|
+
);
|
|
26832
|
+
const inlineCoordinatorNodeId = meshRecord?.inline && Array.isArray(mesh.nodes) ? selectedCoordinatorNodeId : void 0;
|
|
26833
|
+
const refreshedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
26164
26834
|
const nodeStatuses = [];
|
|
26165
|
-
for (const node of mesh.nodes || []) {
|
|
26835
|
+
for (const [nodeIndex, node] of (mesh.nodes || []).entries()) {
|
|
26836
|
+
const nodeId = String(node.id || node.nodeId || "");
|
|
26837
|
+
const daemonId = readStringValue(node.daemonId);
|
|
26838
|
+
const providerPriority = readProviderPriorityFromPolicy(node.policy);
|
|
26839
|
+
const isSelfNode = Boolean(
|
|
26840
|
+
nodeId && inlineCoordinatorNodeId && nodeId === inlineCoordinatorNodeId
|
|
26841
|
+
) || Boolean(
|
|
26842
|
+
daemonId && (daemonId === localMachineId || daemonId === this.deps.statusInstanceId)
|
|
26843
|
+
) || Boolean(meshRecord?.inline && nodeIndex === 0);
|
|
26166
26844
|
const status = {
|
|
26167
|
-
nodeId
|
|
26845
|
+
nodeId,
|
|
26168
26846
|
machineLabel: node.machineLabel || node.id || node.nodeId,
|
|
26169
26847
|
workspace: node.workspace,
|
|
26170
26848
|
repoRoot: node.repoRoot,
|
|
26171
26849
|
isLocalWorktree: node.isLocalWorktree,
|
|
26172
26850
|
worktreeBranch: node.worktreeBranch,
|
|
26173
|
-
daemonId
|
|
26851
|
+
daemonId,
|
|
26174
26852
|
machineId: node.machineId,
|
|
26853
|
+
machineStatus: node.machineStatus,
|
|
26175
26854
|
health: "unknown",
|
|
26176
26855
|
providers: node.providers || [],
|
|
26177
|
-
|
|
26856
|
+
providerPriority,
|
|
26857
|
+
activeSessions: [],
|
|
26858
|
+
activeSessionDetails: [],
|
|
26859
|
+
launchReady: false
|
|
26178
26860
|
};
|
|
26179
|
-
if (
|
|
26180
|
-
|
|
26181
|
-
|
|
26182
|
-
|
|
26861
|
+
if (isSelfNode) {
|
|
26862
|
+
status.connection = {
|
|
26863
|
+
perspective: "selected_coordinator",
|
|
26864
|
+
source: "mesh_peer_status",
|
|
26865
|
+
state: "self",
|
|
26866
|
+
transport: "local",
|
|
26867
|
+
reported: true,
|
|
26868
|
+
reason: "Selected coordinator daemon",
|
|
26869
|
+
lastStateChangeAt: refreshedAt
|
|
26870
|
+
};
|
|
26871
|
+
} else if (daemonId) {
|
|
26872
|
+
const connection = this.deps.getMeshPeerConnectionStatus?.(daemonId);
|
|
26873
|
+
status.connection = connection ?? {
|
|
26874
|
+
perspective: "selected_coordinator",
|
|
26875
|
+
source: "not_reported",
|
|
26876
|
+
state: "unknown",
|
|
26877
|
+
transport: "unknown",
|
|
26878
|
+
reported: false,
|
|
26879
|
+
reason: "No live mesh peer telemetry reported by the selected coordinator yet."
|
|
26880
|
+
};
|
|
26881
|
+
} else {
|
|
26882
|
+
status.connection = {
|
|
26883
|
+
perspective: "selected_coordinator",
|
|
26884
|
+
source: "not_reported",
|
|
26885
|
+
state: "unknown",
|
|
26886
|
+
transport: "unknown",
|
|
26887
|
+
reported: false,
|
|
26888
|
+
reason: "Node has no daemon id, so mesh transport cannot be reported from the selected coordinator."
|
|
26889
|
+
};
|
|
26890
|
+
}
|
|
26891
|
+
const matchedLiveSessionRecords = collectLiveMeshSessionRecords({
|
|
26892
|
+
meshId,
|
|
26893
|
+
node,
|
|
26894
|
+
nodeId,
|
|
26895
|
+
liveSessionRecords: liveMeshSessions,
|
|
26896
|
+
allowCoordinatorSession: nodeId === selectedCoordinatorNodeId
|
|
26897
|
+
});
|
|
26898
|
+
const workspace = readLiveMeshNodeWorkspace({
|
|
26899
|
+
meshId,
|
|
26900
|
+
nodeId,
|
|
26901
|
+
liveSessionRecords: matchedLiveSessionRecords,
|
|
26902
|
+
allowCoordinatorSession: nodeId === selectedCoordinatorNodeId
|
|
26903
|
+
}) || (typeof node.workspace === "string" ? node.workspace : "");
|
|
26904
|
+
status.workspace = workspace || node.workspace;
|
|
26905
|
+
if (matchedLiveSessionRecords.length > 0) {
|
|
26906
|
+
const sessionIds = matchedLiveSessionRecords.map((record) => typeof record?.sessionId === "string" ? record.sessionId : "").filter(Boolean);
|
|
26907
|
+
const providerTypes = matchedLiveSessionRecords.map((record) => readStringValue(record?.providerType)).filter(Boolean);
|
|
26908
|
+
status.activeSessions = sessionIds;
|
|
26909
|
+
status.activeSessionDetails = matchedLiveSessionRecords.map(summarizeMeshSessionRecord);
|
|
26910
|
+
if (providerTypes.length > 0) {
|
|
26911
|
+
status.providers = Array.from(/* @__PURE__ */ new Set([...Array.isArray(status.providers) ? status.providers : [], ...providerTypes]));
|
|
26183
26912
|
}
|
|
26184
|
-
|
|
26185
|
-
|
|
26186
|
-
|
|
26187
|
-
const
|
|
26188
|
-
|
|
26189
|
-
|
|
26190
|
-
|
|
26191
|
-
|
|
26192
|
-
|
|
26193
|
-
|
|
26194
|
-
|
|
26195
|
-
|
|
26196
|
-
|
|
26197
|
-
|
|
26198
|
-
|
|
26199
|
-
|
|
26200
|
-
|
|
26201
|
-
|
|
26202
|
-
|
|
26203
|
-
|
|
26204
|
-
|
|
26205
|
-
|
|
26206
|
-
|
|
26207
|
-
|
|
26913
|
+
}
|
|
26914
|
+
if (workspace) {
|
|
26915
|
+
if (!fs10.existsSync(workspace)) {
|
|
26916
|
+
const inlineTransitGit = buildInlineMeshTransitGitStatus(node);
|
|
26917
|
+
let remoteProbeApplied = false;
|
|
26918
|
+
if (inlineTransitGit) {
|
|
26919
|
+
status.git = inlineTransitGit;
|
|
26920
|
+
status.health = inlineTransitGit.isGitRepo ? deriveMeshNodeHealthFromGit(inlineTransitGit) : "degraded";
|
|
26921
|
+
remoteProbeApplied = true;
|
|
26922
|
+
} else if (!isSelfNode && daemonId && this.deps.dispatchMeshCommand) {
|
|
26923
|
+
try {
|
|
26924
|
+
const remoteGit = await probeRemoteMeshGitStatus({
|
|
26925
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
26926
|
+
daemonId,
|
|
26927
|
+
workspace,
|
|
26928
|
+
timeoutMs: 8e3
|
|
26929
|
+
});
|
|
26930
|
+
if (remoteGit) {
|
|
26931
|
+
status.git = remoteGit;
|
|
26932
|
+
status.health = remoteGit.isGitRepo ? deriveMeshNodeHealthFromGit(remoteGit) : "degraded";
|
|
26933
|
+
recordInlineMeshDirectGitTruth(node, remoteGit, "selected_coordinator_mesh_p2p_git");
|
|
26934
|
+
remoteProbeApplied = true;
|
|
26935
|
+
}
|
|
26936
|
+
} catch {
|
|
26937
|
+
const refreshedConnection = this.deps.getMeshPeerConnectionStatus?.(daemonId);
|
|
26938
|
+
const refreshedConnectionState = readStringValue(refreshedConnection?.state);
|
|
26939
|
+
if (refreshedConnection && refreshedConnectionState === "connected") {
|
|
26940
|
+
status.connection = refreshedConnection;
|
|
26941
|
+
try {
|
|
26942
|
+
const remoteGit = await probeRemoteMeshGitStatus({
|
|
26943
|
+
dispatchMeshCommand: this.deps.dispatchMeshCommand,
|
|
26944
|
+
daemonId,
|
|
26945
|
+
workspace,
|
|
26946
|
+
timeoutMs: 12e3
|
|
26947
|
+
});
|
|
26948
|
+
if (remoteGit) {
|
|
26949
|
+
status.git = remoteGit;
|
|
26950
|
+
status.health = remoteGit.isGitRepo ? deriveMeshNodeHealthFromGit(remoteGit) : "degraded";
|
|
26951
|
+
recordInlineMeshDirectGitTruth(node, remoteGit, "selected_coordinator_mesh_p2p_git");
|
|
26952
|
+
remoteProbeApplied = true;
|
|
26953
|
+
}
|
|
26954
|
+
} catch {
|
|
26955
|
+
}
|
|
26956
|
+
}
|
|
26208
26957
|
}
|
|
26209
26958
|
}
|
|
26210
|
-
|
|
26211
|
-
|
|
26212
|
-
|
|
26213
|
-
|
|
26214
|
-
|
|
26215
|
-
|
|
26216
|
-
|
|
26217
|
-
if (
|
|
26218
|
-
|
|
26219
|
-
|
|
26959
|
+
if (!remoteProbeApplied) {
|
|
26960
|
+
const connectionState = readStringValue(status.connection?.state);
|
|
26961
|
+
const pendingPeerGitProbe = !inlineTransitGit && !isSelfNode && !!daemonId && (readStringValue(status.machineStatus) === "online" || readStringValue(status.health) === "online" || connectionState === "connecting" || connectionState === "connected" || connectionState === "unknown");
|
|
26962
|
+
if (pendingPeerGitProbe) {
|
|
26963
|
+
status.gitProbePending = true;
|
|
26964
|
+
status.health = "unknown";
|
|
26965
|
+
}
|
|
26966
|
+
if (applyCachedInlineMeshNodeStatus(
|
|
26967
|
+
status,
|
|
26968
|
+
node,
|
|
26969
|
+
pendingPeerGitProbe ? { skipGit: true, skipError: true, skipHealth: true } : void 0
|
|
26970
|
+
)) {
|
|
26971
|
+
finalizeMeshNodeStatus({ status, node, daemonId, isSelfNode });
|
|
26972
|
+
nodeStatuses.push(status);
|
|
26973
|
+
continue;
|
|
26974
|
+
}
|
|
26975
|
+
if (meshRecord?.source === "inline_cache" && !isSelfNode) {
|
|
26976
|
+
finalizeMeshNodeStatus({ status, node, daemonId, isSelfNode });
|
|
26977
|
+
nodeStatuses.push(status);
|
|
26978
|
+
continue;
|
|
26979
|
+
}
|
|
26220
26980
|
}
|
|
26221
|
-
|
|
26222
|
-
|
|
26223
|
-
|
|
26224
|
-
|
|
26225
|
-
|
|
26226
|
-
|
|
26227
|
-
|
|
26228
|
-
|
|
26229
|
-
|
|
26230
|
-
|
|
26231
|
-
|
|
26232
|
-
|
|
26233
|
-
|
|
26234
|
-
|
|
26235
|
-
|
|
26236
|
-
hasConflicts: false,
|
|
26237
|
-
conflictFiles: [],
|
|
26238
|
-
stashCount: stashCount ? stashCount.split("\n").filter(Boolean).length : 0,
|
|
26239
|
-
lastCheckedAt: Date.now()
|
|
26240
|
-
};
|
|
26241
|
-
status.health = branch ? dirty ? "dirty" : "online" : "degraded";
|
|
26242
|
-
} catch {
|
|
26243
|
-
if (!applyCachedInlineMeshNodeStatus(status, node)) {
|
|
26244
|
-
status.health = "degraded";
|
|
26981
|
+
} else {
|
|
26982
|
+
try {
|
|
26983
|
+
const gitStatus = await getGitRepoStatus(workspace, { timeoutMs: 1e4, refreshUpstream: true });
|
|
26984
|
+
status.git = gitStatus;
|
|
26985
|
+
recordInlineMeshDirectGitTruth(node, gitStatus, "selected_coordinator_local_git");
|
|
26986
|
+
if (gitStatus.isGitRepo) {
|
|
26987
|
+
status.health = deriveMeshNodeHealthFromGit(gitStatus);
|
|
26988
|
+
} else {
|
|
26989
|
+
status.health = "degraded";
|
|
26990
|
+
if (gitStatus.error && !status.error) status.error = gitStatus.error;
|
|
26991
|
+
}
|
|
26992
|
+
} catch {
|
|
26993
|
+
if (!applyCachedInlineMeshNodeStatus(status, node)) {
|
|
26994
|
+
status.health = "degraded";
|
|
26995
|
+
}
|
|
26245
26996
|
}
|
|
26246
26997
|
}
|
|
26247
26998
|
} else {
|
|
26248
26999
|
applyCachedInlineMeshNodeStatus(status, node);
|
|
26249
27000
|
}
|
|
27001
|
+
finalizeMeshNodeStatus({ status, node, daemonId, isSelfNode });
|
|
26250
27002
|
nodeStatuses.push(status);
|
|
26251
27003
|
}
|
|
26252
27004
|
return {
|
|
@@ -26255,6 +27007,12 @@ ${block}`);
|
|
|
26255
27007
|
meshName: mesh.name,
|
|
26256
27008
|
repoIdentity: mesh.repoIdentity,
|
|
26257
27009
|
defaultBranch: mesh.defaultBranch,
|
|
27010
|
+
refreshedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
27011
|
+
sourceOfTruth: {
|
|
27012
|
+
membership: meshRecord?.source === "inline_cache" ? "coordinator_inline_mesh_cache" : meshRecord?.source === "local_config" ? "local_mesh_config" : "inline_bootstrap_snapshot",
|
|
27013
|
+
coordinatorOwnsLiveTruth: meshRecord?.source !== "inline_bootstrap",
|
|
27014
|
+
historicalEvidenceOnly: ["recoveryHints", "ledger.summary", "queue.summary"]
|
|
27015
|
+
},
|
|
26258
27016
|
nodes: nodeStatuses,
|
|
26259
27017
|
queue: { tasks: queue, summary: queueSummary },
|
|
26260
27018
|
ledger: { entries: ledgerEntries, summary: ledgerSummary }
|
|
@@ -34184,6 +34942,7 @@ async function initDaemonComponents(config) {
|
|
|
34184
34942
|
sessionHostControl: config.sessionHostControl,
|
|
34185
34943
|
statusInstanceId: config.statusInstanceId,
|
|
34186
34944
|
statusVersion: config.statusVersion,
|
|
34945
|
+
getMeshPeerConnectionStatus: config.getMeshPeerConnectionStatus,
|
|
34187
34946
|
getCdpLogFn: config.getCdpLogFn || ((ideType) => LOG.forComponent(`CDP:${ideType}`).asLogFn())
|
|
34188
34947
|
});
|
|
34189
34948
|
poller = new AgentStreamPoller({
|
|
@@ -34459,6 +35218,7 @@ async function shutdownDaemonComponents(components) {
|
|
|
34459
35218
|
prepareSessionChatTailUpdate,
|
|
34460
35219
|
prepareSessionModalUpdate,
|
|
34461
35220
|
probeCdpPort,
|
|
35221
|
+
queuePendingMeshCoordinatorEvent,
|
|
34462
35222
|
readChatHistory,
|
|
34463
35223
|
readLedgerEntries,
|
|
34464
35224
|
readLedgerSlice,
|