trantor 0.17.58 → 0.17.59
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.
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"name": "trantor",
|
|
14
14
|
"source": "./",
|
|
15
15
|
"description": "The hub-world for AI agent crews. Say \"fire up the crew\" and Claude becomes the architect: a plan-aware Advisor routes the work (solo / cheap inline calls / live crew of Codex, GLM, Kimi & DeepSeek in their own terminal windows), a Kanban/flow command center with a testing gate tracks it, and an economics brain (Scrooge) keeps the receipts. Includes the relay MCP, a SessionStart auto-discovery hook, and a PreCompact context-handoff so a fresh session can take over a full window instead of compacting.",
|
|
16
|
-
"version": "0.17.
|
|
16
|
+
"version": "0.17.59",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "Sasha Bogojevic"
|
|
19
19
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trantor",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.59",
|
|
4
4
|
"description": "Trantor — the hub-world for AI agent crews: live message bus, presence, project Kanban/flow board + crew orchestration for independent AI coding agents (Claude, Codex, Gemini, Kimi, DeepSeek)",
|
|
5
5
|
"mcpServers": {
|
|
6
6
|
"relay": {
|
package/bin/crew-runner.mjs
CHANGED
|
@@ -66,7 +66,13 @@ async function api(path, body) {
|
|
|
66
66
|
// that shows up as a seat that quietly records nothing rather than one that errors.
|
|
67
67
|
const url = HUB + path;
|
|
68
68
|
const sig = signedHeaders(identity, url, opts);
|
|
69
|
-
|
|
69
|
+
// HARD DEADLINE on every call (2026-08-01, crebral-health kimi seat): a long-poll whose socket
|
|
70
|
+
// dies silently (idle NAT/tailscale reset, no RST delivered) otherwise hangs fetch FOREVER —
|
|
71
|
+
// the runner sat "parked" with zero connections and zero retries while its crew was rebuilt
|
|
72
|
+
// around it. Deadline = the poll's own wait window + slack, so a healthy long-poll never trips
|
|
73
|
+
// it and a dead one surfaces as a catchable error that the main loop retries in 5s.
|
|
74
|
+
const waitS = Number((path.match(/[?&]wait=(\d+)/) || [])[1] || 0);
|
|
75
|
+
const r = await fetch(url, { ...opts, headers: { ...opts.headers, ...sig }, signal: AbortSignal.timeout((waitS + 30) * 1000) });
|
|
70
76
|
return r.json();
|
|
71
77
|
}
|
|
72
78
|
|