trantor 0.17.30 → 0.17.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/.claude-plugin/plugin.json +1 -1
- package/bin/agents.mjs +63 -0
- package/bin/cli.mjs +2 -0
- package/hooks/lib/handoff.mjs +8 -1
- package/hooks/sessionstart.mjs +12 -0
- package/lib/subagent-manifest.mjs +175 -0
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trantor",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.31",
|
|
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/agents.mjs
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// trantor agents [sessionId] [--json] — the LIVE sub-agent manifest for a session.
|
|
3
|
+
//
|
|
4
|
+
// What were this session's sub-agents (Agent/Task tool, Workflow swarms, agent-teams) doing —
|
|
5
|
+
// what was each tasked with, did it return, what did it write, and do those files still survive
|
|
6
|
+
// on disk? Derived fresh from the on-disk transcripts every run (so it reflects CURRENT disk,
|
|
7
|
+
// catching files an agent finished that were later clobbered — the 2026-06-21 kill corrupted a
|
|
8
|
+
// completed 30KB lib down to a 17-byte stub).
|
|
9
|
+
//
|
|
10
|
+
// trantor agents → the session of the newest handoff for THIS project (the
|
|
11
|
+
// predecessor a fresh session is taking over from)
|
|
12
|
+
// trantor agents <sessionId> → that specific session
|
|
13
|
+
// trantor agents --json → structured manifest (for tools)
|
|
14
|
+
import { readFileSync, readdirSync, existsSync } from "node:fs";
|
|
15
|
+
import { join, basename } from "node:path";
|
|
16
|
+
import { homedir } from "node:os";
|
|
17
|
+
import { deriveSubagentManifest, formatSubagentManifest, resolveTranscriptForSid } from "../lib/subagent-manifest.mjs";
|
|
18
|
+
|
|
19
|
+
const args = process.argv.slice(2);
|
|
20
|
+
const json = args.includes("--json");
|
|
21
|
+
const sid = args.find((a) => !a.startsWith("--"));
|
|
22
|
+
|
|
23
|
+
const HANDOFF_DIR = join(process.env.RELAY_DATA_DIR || join(homedir(), ".agent-bus"), "handoffs");
|
|
24
|
+
|
|
25
|
+
// Newest handoff record whose project matches the cwd — gives us the predecessor's transcript
|
|
26
|
+
// path + project root directly (no glob needed), so `trantor agents` with no arg "just works"
|
|
27
|
+
// for a fresh session taking over.
|
|
28
|
+
function newestHandoffForCwd() {
|
|
29
|
+
try {
|
|
30
|
+
if (!existsSync(HANDOFF_DIR)) return null;
|
|
31
|
+
const cwd = process.cwd(), name = basename(cwd);
|
|
32
|
+
const recs = readdirSync(HANDOFF_DIR)
|
|
33
|
+
.filter((f) => /-\d+\.json$/.test(f))
|
|
34
|
+
.map((f) => { try { return JSON.parse(readFileSync(join(HANDOFF_DIR, f), "utf8")); } catch { return null; } })
|
|
35
|
+
.filter((r) => r && (r.project === cwd || r.projectName === name))
|
|
36
|
+
.sort((a, b) => (Number(b.stamp) || 0) - (Number(a.stamp) || 0));
|
|
37
|
+
return recs[0] || null;
|
|
38
|
+
} catch { return null; }
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
let transcript = "", projectRoot = process.cwd();
|
|
42
|
+
if (sid) {
|
|
43
|
+
transcript = resolveTranscriptForSid(sid);
|
|
44
|
+
if (!transcript) {
|
|
45
|
+
console.error(`No transcript found for session ${sid} under ~/.claude/projects/*/.`);
|
|
46
|
+
process.exit(1);
|
|
47
|
+
}
|
|
48
|
+
} else {
|
|
49
|
+
const h = newestHandoffForCwd();
|
|
50
|
+
if (!h) {
|
|
51
|
+
console.error(`No handoff found for this project. Pass a session id explicitly: trantor agents <sessionId>`);
|
|
52
|
+
process.exit(1);
|
|
53
|
+
}
|
|
54
|
+
transcript = h.transcript_path || resolveTranscriptForSid(h.session_id);
|
|
55
|
+
projectRoot = h.project || projectRoot;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const manifest = deriveSubagentManifest(transcript, { projectRoot });
|
|
59
|
+
if (json) {
|
|
60
|
+
process.stdout.write(JSON.stringify(manifest, null, 2) + "\n");
|
|
61
|
+
} else {
|
|
62
|
+
process.stdout.write(formatSubagentManifest(manifest) + "\n");
|
|
63
|
+
}
|
package/bin/cli.mjs
CHANGED
|
@@ -26,6 +26,7 @@ switch (cmd) {
|
|
|
26
26
|
case "hub": run("hub.mjs"); break;
|
|
27
27
|
case "watch": run("bin/relay-watch.mjs"); break;
|
|
28
28
|
case "catchup": run("bin/catchup.mjs"); break;
|
|
29
|
+
case "agents": run("bin/agents.mjs"); break;
|
|
29
30
|
case "backfill": run("bin/git-backfill.mjs"); break;
|
|
30
31
|
case "handoff": run("bin/baton.mjs"); break;
|
|
31
32
|
case "ui": {
|
|
@@ -48,6 +49,7 @@ switch (cmd) {
|
|
|
48
49
|
trantor down tear the crew down (kills processes, closes windows, no dialogs)
|
|
49
50
|
trantor ui open the live dashboard (board + flow views)
|
|
50
51
|
trantor catchup "where are we?" — the continuous board + git, with a synthesized brief
|
|
52
|
+
trantor agents what this session's sub-agents did (task · returned? · files written · survived on disk) — [<sessionId>] [--json]
|
|
51
53
|
trantor backfill card past GIT work onto the board (solo commits that were never carded) — [--since "14 days ago"] [--dry-run]
|
|
52
54
|
trantor handoff finish this session NOW: write a handoff, open a fresh session that takes over, and close this one (manual baton)
|
|
53
55
|
trantor advise ask the Advisor directly (JSON on stdin; --demo to see it)
|
package/hooks/lib/handoff.mjs
CHANGED
|
@@ -15,6 +15,7 @@ import { join, basename, dirname } from "node:path";
|
|
|
15
15
|
import { homedir, hostname } from "node:os";
|
|
16
16
|
import { execSync, spawn } from "node:child_process";
|
|
17
17
|
import { fileURLToPath } from "node:url";
|
|
18
|
+
import { deriveSubagentManifest } from "../../lib/subagent-manifest.mjs";
|
|
18
19
|
|
|
19
20
|
export const HANDOFF_DIR = join(process.env.RELAY_DATA_DIR || join(homedir(), ".agent-bus"), "handoffs");
|
|
20
21
|
const HERE = dirname(fileURLToPath(import.meta.url));
|
|
@@ -220,6 +221,12 @@ export function writeHandoff({ projectDir, sessionId, transcript, trigger, summa
|
|
|
220
221
|
try { gitStatus = execSync("git -C " + JSON.stringify(projectDir) + " status --short 2>/dev/null | head -30", { encoding: "utf8" }).trim(); } catch {}
|
|
221
222
|
const narrative = summary ?? buildSummary(transcript);
|
|
222
223
|
const tail = verbatimRecentTail(transcript);
|
|
224
|
+
// Sub-agent manifest SNAPSHOT (fallback). The successor should re-derive it LIVE via
|
|
225
|
+
// `trantor agents <sid>` (catches files an agent finished that were clobbered AFTER this
|
|
226
|
+
// snapshot — the kill that motivated this corrupted a completed 30KB lib post-handoff). This
|
|
227
|
+
// baked copy is just orientation if the live command isn't available. Best-effort; never throws.
|
|
228
|
+
let subagents = null;
|
|
229
|
+
try { subagents = deriveSubagentManifest(transcript, { projectRoot: projectDir }); } catch {}
|
|
223
230
|
const record = {
|
|
224
231
|
id: `${projectName}-${stamp}`,
|
|
225
232
|
project: projectDir, projectName, machine: hostname(),
|
|
@@ -227,7 +234,7 @@ export function writeHandoff({ projectDir, sessionId, transcript, trigger, summa
|
|
|
227
234
|
transcript_path: transcript || "", stamp: Number(stamp) || 0,
|
|
228
235
|
// narrative + a verbatim recent-exchange block so exact in-flight state always survives
|
|
229
236
|
summary: narrative + (tail ? `\n\n---\n## Verbatim recent exchange (exact in-flight state — continue from here)\n${tail}` : ""),
|
|
230
|
-
gitStatus, consumed: false,
|
|
237
|
+
gitStatus, subagents, consumed: false,
|
|
231
238
|
};
|
|
232
239
|
const file = join(HANDOFF_DIR, `${record.id}.json`);
|
|
233
240
|
writeFileSync(file, JSON.stringify(record, null, 2));
|
package/hooks/sessionstart.mjs
CHANGED
|
@@ -11,6 +11,7 @@ import { join, basename } from "node:path";
|
|
|
11
11
|
import { homedir, hostname } from "node:os";
|
|
12
12
|
import { execSync } from "node:child_process";
|
|
13
13
|
import { resolveProject, hostId } from "../lib/project.mjs";
|
|
14
|
+
import { formatSubagentManifest } from "../lib/subagent-manifest.mjs";
|
|
14
15
|
import { updateAvailable, maybeNotifyDesktop, readConfig } from "./lib/update-check.mjs";
|
|
15
16
|
|
|
16
17
|
// Load the most recent UNCONSUMED handoff for this project (written by precompact.mjs
|
|
@@ -198,6 +199,17 @@ try {
|
|
|
198
199
|
additionalContext += `🔄 **You are taking over from a prior session that hit its context limit.** This is a fresh full window. Resume the work below — the prior session's summary, git state, and a pointer to its full transcript (searchable; Foundation/Gaia has it ingested) follow. Continue from "OPEN THREADS & NEXT STEPS"; do not restart from scratch.\n\n`;
|
|
199
200
|
additionalContext += `## Handoff summary\n${sanitize(handoff.summary)}\n`;
|
|
200
201
|
if (handoff.gitStatus) additionalContext += `\n## Git working-tree at handoff\n\`\`\`\n${sanitize(handoff.gitStatus)}\n\`\`\`\n`;
|
|
202
|
+
// Sub-agent manifest: LIVE-primary, snapshot-as-fallback. The prior session may have had
|
|
203
|
+
// sub-agents (Agent/Task, Workflow) building things you can't see in its narrative — and a
|
|
204
|
+
// kill can corrupt an agent's finished file on disk. Direct the successor to re-derive LIVE
|
|
205
|
+
// (reconciles against current disk) and trust that over the baked snapshot.
|
|
206
|
+
if (handoff.subagents && handoff.subagents.counts && handoff.subagents.counts.total) {
|
|
207
|
+
const sa = handoff.subagents;
|
|
208
|
+
additionalContext += `\n## Sub-agents the prior session ran (${sa.counts.total}: ${sa.counts.completed} completed, ${sa.counts.inFlight} in-flight at handoff)\n`;
|
|
209
|
+
additionalContext += `**Before continuing, get the LIVE manifest** — run \`trantor agents ${sanitize(handoff.session_id)}\` (or \`trantor agents\` from this project). It re-derives from CURRENT disk, flagging any file an agent finished that was later clobbered — do NOT assume "nothing survived"; recover from the agent's transcript. Trust the live command over the snapshot below.\n`;
|
|
210
|
+
if (sa.counts.suspectFiles) additionalContext += `⚠️ ${sa.counts.suspectFiles} file(s) an agent wrote looked CLOBBERED at handoff time — verify with the live command and recover.\n`;
|
|
211
|
+
additionalContext += `\n\`\`\`\n${sanitize(formatSubagentManifest(sa, { heading: false }))}\n\`\`\`\n`;
|
|
212
|
+
}
|
|
201
213
|
if (handoff.transcript_path) additionalContext += `\n_Full prior transcript: ${sanitize(handoff.transcript_path)}_\n`;
|
|
202
214
|
additionalContext += `</trantor-handoff>\n`;
|
|
203
215
|
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
// trantor sub-agent manifest — reconstruct what a session's sub-agents (Agent/Task tool,
|
|
2
|
+
// Workflow swarms, agent-teams) were doing, purely from on-disk transcripts. No new runtime
|
|
3
|
+
// instrumentation: it's a READ-TIME projection of primary sources, so it can't drift and the
|
|
4
|
+
// successor can re-derive it itself (that's the point — live-primary, snapshot-as-fallback).
|
|
5
|
+
//
|
|
6
|
+
// Born from the 2026-06-21 incident: an auto baton-pass SIGKILLed a session mid 2-agent build.
|
|
7
|
+
// The fresh session had no idea two agents were even running, and one agent's COMPLETED 30KB
|
|
8
|
+
// implementation had been clobbered on disk to a 17-byte stub by the kill — so the successor
|
|
9
|
+
// rebuilt it from scratch believing "nothing survived." The manifest surfaces exactly that:
|
|
10
|
+
// what each agent was tasked with, whether it returned, what it wrote, and — via a disk
|
|
11
|
+
// reconcile — whether the files it wrote still survive or look clobbered.
|
|
12
|
+
//
|
|
13
|
+
// Four primary sources (all already on disk under ~/.claude/projects/<proj>/<sid>/):
|
|
14
|
+
// 1. subagents/*.meta.json → {name, agentType, description (the task), toolUseId}
|
|
15
|
+
// 2. parent <sid>.jsonl → tool_result ids ⇒ which agents RETURNED (completed)
|
|
16
|
+
// 3. each subagents/agent-*.jsonl → files written, last activity, the result it reported
|
|
17
|
+
// 4. disk reconcile → agent wrote X@N bytes; does X still exist & match? (suspect)
|
|
18
|
+
import { readFileSync, readdirSync, existsSync, statSync } from "node:fs";
|
|
19
|
+
import { join, dirname, basename, relative } from "node:path";
|
|
20
|
+
import { homedir } from "node:os";
|
|
21
|
+
|
|
22
|
+
const EDIT_TOOLS = /^(Write|Edit|MultiEdit|NotebookEdit)$/;
|
|
23
|
+
|
|
24
|
+
function parseLines(path) {
|
|
25
|
+
let raw; try { raw = readFileSync(path, "utf8"); } catch { return []; }
|
|
26
|
+
const out = [];
|
|
27
|
+
for (const ln of raw.split("\n")) { if (!ln) continue; try { out.push(JSON.parse(ln)); } catch {} }
|
|
28
|
+
return out;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// Resolve a bare session id to its transcript path by scanning ~/.claude/projects/*/<sid>.jsonl.
|
|
32
|
+
export function resolveTranscriptForSid(sid) {
|
|
33
|
+
if (!sid) return "";
|
|
34
|
+
const base = join(homedir(), ".claude", "projects");
|
|
35
|
+
try {
|
|
36
|
+
for (const proj of readdirSync(base)) {
|
|
37
|
+
const p = join(base, proj, `${sid}.jsonl`);
|
|
38
|
+
if (existsSync(p)) return p;
|
|
39
|
+
}
|
|
40
|
+
} catch {}
|
|
41
|
+
return "";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Walk subagents/ (recursing into workflows/<wf>/) collecting every *.meta.json paired with its
|
|
45
|
+
// .jsonl. `workflow` is the workflow id when the agent lives under workflows/<wf>/, else null.
|
|
46
|
+
function collectMetas(subdir) {
|
|
47
|
+
const out = [];
|
|
48
|
+
const walk = (dir, workflow) => {
|
|
49
|
+
let entries; try { entries = readdirSync(dir, { withFileTypes: true }); } catch { return; }
|
|
50
|
+
for (const e of entries) {
|
|
51
|
+
const p = join(dir, e.name);
|
|
52
|
+
if (e.isDirectory()) { walk(p, e.name === "workflows" ? workflow : e.name); continue; }
|
|
53
|
+
if (!e.name.endsWith(".meta.json")) continue;
|
|
54
|
+
let meta; try { meta = JSON.parse(readFileSync(p, "utf8")); } catch { continue; }
|
|
55
|
+
out.push({ ...meta, jsonlPath: p.replace(/\.meta\.json$/, ".jsonl"), workflow: workflow || null });
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
walk(subdir, null);
|
|
59
|
+
return out;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function shortPath(absPath, projectRoot) {
|
|
63
|
+
try {
|
|
64
|
+
if (projectRoot && absPath.startsWith(projectRoot)) return relative(projectRoot, absPath) || absPath;
|
|
65
|
+
} catch {}
|
|
66
|
+
return absPath.split("/").slice(-4).join("/");
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Does the file the agent wrote still survive intact? agentBytes = the size the agent last wrote.
|
|
70
|
+
// suspect = the file is gone, or shrank far below what the agent wrote (clobbered, e.g. by a kill).
|
|
71
|
+
function reconcileFile(absPath, agentBytes, projectRoot) {
|
|
72
|
+
let onDiskNow = null, suspect = false;
|
|
73
|
+
try {
|
|
74
|
+
if (existsSync(absPath)) {
|
|
75
|
+
onDiskNow = statSync(absPath).size;
|
|
76
|
+
if (agentBytes > 200 && onDiskNow < Math.min(agentBytes * 0.5, agentBytes - 200)) suspect = true;
|
|
77
|
+
} else {
|
|
78
|
+
onDiskNow = 0;
|
|
79
|
+
suspect = agentBytes > 200; // the agent wrote real content but the file is gone
|
|
80
|
+
}
|
|
81
|
+
} catch {}
|
|
82
|
+
return { path: shortPath(absPath, projectRoot), agentBytes, onDiskNow, suspect };
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function analyzeAgent(meta, completedIds, projectRoot) {
|
|
86
|
+
const wrote = new Map(); // absPath → last-write byte length
|
|
87
|
+
let lastMs = 0, result = "";
|
|
88
|
+
for (const r of parseLines(meta.jsonlPath)) {
|
|
89
|
+
const ts = r.timestamp ? Date.parse(r.timestamp) || 0 : 0;
|
|
90
|
+
if (ts > lastMs) lastMs = ts;
|
|
91
|
+
const c = r?.message?.content;
|
|
92
|
+
if (!Array.isArray(c)) continue;
|
|
93
|
+
for (const b of c) {
|
|
94
|
+
if (b?.type === "tool_use" && EDIT_TOOLS.test(b.name) && b.input?.file_path) {
|
|
95
|
+
const content = b.input.content ?? b.input.new_string ?? "";
|
|
96
|
+
wrote.set(b.input.file_path, content.length); // last write to a path wins
|
|
97
|
+
}
|
|
98
|
+
if (b?.type === "text" && typeof b.text === "string" && b.text.trim()) result = b.text.trim();
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
const status = meta.toolUseId && completedIds.has(meta.toolUseId) ? "completed" : "in-flight";
|
|
102
|
+
return {
|
|
103
|
+
name: meta.name || basename(meta.jsonlPath).replace(/\.jsonl$/, ""),
|
|
104
|
+
agentType: meta.agentType || "",
|
|
105
|
+
task: meta.description || "",
|
|
106
|
+
workflow: meta.workflow || null,
|
|
107
|
+
status,
|
|
108
|
+
wrote: [...wrote.entries()].map(([p, n]) => reconcileFile(p, n, projectRoot)),
|
|
109
|
+
lastActivity: lastMs ? new Date(lastMs).toISOString() : null,
|
|
110
|
+
lastActivityMs: lastMs,
|
|
111
|
+
transcript: meta.jsonlPath,
|
|
112
|
+
result: result.slice(0, 400),
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Derive the full manifest for a session from its parent transcript path. projectRoot (the repo
|
|
117
|
+
// dir) is used only to shorten displayed file paths. Returns { sessionId, subagents[], counts }.
|
|
118
|
+
export function deriveSubagentManifest(parentTranscript, { projectRoot } = {}) {
|
|
119
|
+
const out = { sessionId: "", subagents: [], counts: { total: 0, completed: 0, inFlight: 0, suspectFiles: 0 } };
|
|
120
|
+
try {
|
|
121
|
+
if (!parentTranscript || !existsSync(parentTranscript)) return out;
|
|
122
|
+
const sid = basename(parentTranscript).replace(/\.jsonl$/i, "");
|
|
123
|
+
out.sessionId = sid;
|
|
124
|
+
const subdir = join(dirname(parentTranscript), sid, "subagents");
|
|
125
|
+
if (!existsSync(subdir)) return out;
|
|
126
|
+
|
|
127
|
+
// (2) parent transcript → tool_result ids = agents that returned a result.
|
|
128
|
+
const completedIds = new Set();
|
|
129
|
+
for (const r of parseLines(parentTranscript)) {
|
|
130
|
+
const c = r?.message?.content;
|
|
131
|
+
if (Array.isArray(c)) for (const b of c) if (b?.type === "tool_result" && b.tool_use_id) completedIds.add(b.tool_use_id);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const metas = collectMetas(subdir);
|
|
135
|
+
out.subagents = metas.map((m) => analyzeAgent(m, completedIds, projectRoot))
|
|
136
|
+
.sort((a, b) => (a.lastActivityMs || 0) - (b.lastActivityMs || 0));
|
|
137
|
+
|
|
138
|
+
out.counts.total = out.subagents.length;
|
|
139
|
+
out.counts.completed = out.subagents.filter((s) => s.status === "completed").length;
|
|
140
|
+
out.counts.inFlight = out.subagents.filter((s) => s.status === "in-flight").length;
|
|
141
|
+
out.counts.suspectFiles = out.subagents.reduce((n, s) => n + s.wrote.filter((w) => w.suspect).length, 0);
|
|
142
|
+
} catch {}
|
|
143
|
+
return out;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Human-readable rendering (the `trantor agents` output, and the handoff snapshot block).
|
|
147
|
+
export function formatSubagentManifest(m, { heading = true } = {}) {
|
|
148
|
+
if (!m || !m.subagents.length) return "No sub-agents found for this session.";
|
|
149
|
+
const L = [];
|
|
150
|
+
if (heading) {
|
|
151
|
+
L.push(`Sub-agent manifest — ${m.counts.total} agents (${m.counts.completed} completed, ${m.counts.inFlight} in-flight at handoff)`);
|
|
152
|
+
if (m.counts.suspectFiles) {
|
|
153
|
+
L.push(`⚠️ ${m.counts.suspectFiles} file(s) an agent wrote look CLOBBERED on disk (gone or far smaller than written) — RECOVER from the agent's transcript before assuming the work was never done.`);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
for (const s of m.subagents) {
|
|
157
|
+
const badge = s.status === "completed" ? "✅ completed" : "🛑 IN-FLIGHT at handoff";
|
|
158
|
+
L.push("");
|
|
159
|
+
L.push(`• ${s.name} [${s.agentType}]${s.workflow ? ` · wf:${s.workflow}` : ""} ${badge}`);
|
|
160
|
+
if (s.task) L.push(` task: ${s.task}`);
|
|
161
|
+
if (s.wrote.length) {
|
|
162
|
+
for (const w of s.wrote) {
|
|
163
|
+
const size = w.onDiskNow != null ? (w.onDiskNow === 0 && w.suspect ? "MISSING" : `${w.onDiskNow}B on disk`) : "?";
|
|
164
|
+
const flag = w.suspect ? ` ⚠️ SUSPECT — agent wrote ${w.agentBytes}B, recover from transcript` : "";
|
|
165
|
+
L.push(` wrote: ${w.path} (${size})${flag}`);
|
|
166
|
+
}
|
|
167
|
+
} else {
|
|
168
|
+
L.push(` wrote: (no file edits)`);
|
|
169
|
+
}
|
|
170
|
+
L.push(` transcript: ${s.transcript}`);
|
|
171
|
+
}
|
|
172
|
+
L.push("");
|
|
173
|
+
L.push(`Read any agent's transcript for its full reasoning/sourcing before trusting OR discarding its work.`);
|
|
174
|
+
return L.join("\n");
|
|
175
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trantor",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"trantor": "bin/cli.mjs"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"zod": "^4.4.3"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"test": "node test.mjs && node test-scenarios.mjs && node test-failure.mjs && node test-handoff.mjs && node test-update.mjs"
|
|
13
|
+
"test": "node test.mjs && node test-scenarios.mjs && node test-failure.mjs && node test-handoff.mjs && node test-agents.mjs && node test-update.mjs"
|
|
14
14
|
},
|
|
15
15
|
"description": "The hub-world for AI agent crews — orchestrate Claude Code, Codex, Gemini, Kimi & DeepSeek as live crews with a plan-aware Advisor, a Kanban/flow command center, a testing gate, and an economics brain (Scrooge).",
|
|
16
16
|
"files": [
|