File size: 17,436 Bytes
7c5ed63 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 | import { createReadStream } from 'node:fs';
import { readdir, readFile, stat } from 'node:fs/promises';
import { join, resolve, sep } from 'node:path';
import { createInterface } from 'node:readline';
import type { SessionSummary, SessionDetail, AgentInfo, SessionHealth, ImportInfo } from './agent-record-types';
import { compareAgentIds } from './agent-tree';
import { importedDirOf, isImportId, listImportedIds, readImportMeta } from './import-store';
const SESSION_ID_RE = /^session_[A-Za-z0-9._-]+$/;
const AGENT_ID_RE = /^[A-Za-z0-9._-]+$/;
/** Reject agent ids that could escape the session directory via path
* joins. Defence-in-depth: the on-disk source of these ids is
* the engine (which only generates main / agent-N), but a corrupted
* or hand-edited `state.json.agents` key could otherwise turn vis
* into a local-file-read primitive when exposed beyond loopback. */
export function isSafeAgentId(id: string): boolean {
return AGENT_ID_RE.test(id) && id !== '.' && id !== '..';
}
interface StateJson {
createdAt?: string | number;
updatedAt?: string | number;
cwd?: string;
workDir?: string;
title?: string;
isCustomTitle?: boolean;
lastPrompt?: string;
// Agent metadata comes from an untrusted state.json (a corrupt or imported
// bundle may hold non-object entries like `{ "main": null }`), so the value
// type allows null and inventoryAgents skips anything that isn't an object.
//
// v2 writes the REAL parent / swarm-item label under `labels` (its
// top-level `parentAgentId` is a fixed 'main' placeholder for sub agents);
// v1 wrote them top-level. Read labels first, top-level as fallback —
// the same order the engine itself uses.
agents?: Record<string, unknown>;
custom?: Record<string, unknown>;
}
export async function listSessions(home: string): Promise<SessionSummary[]> {
const sessionsDir = join(home, 'sessions');
const buckets = await readdir(sessionsDir, { withFileTypes: true }).catch(() => []);
const index = await readSessionIndex(home);
const out: SessionSummary[] = [];
for (const bucket of buckets) {
if (!bucket.isDirectory()) continue;
const bucketDir = join(sessionsDir, bucket.name);
const sessionDirs = await readdir(bucketDir, { withFileTypes: true }).catch(() => []);
for (const entry of sessionDirs) {
if (!entry.isDirectory() || !SESSION_ID_RE.test(entry.name)) continue;
const sessionDir = join(bucketDir, entry.name);
const workDir = index.get(entry.name)?.workDir ?? '';
const summary = await tryReadSummary(sessionDir, entry.name, workDir);
if (summary !== null) out.push(summary);
}
}
// Imported debug bundles live under <home>/imported/<importId>/ and surface
// in the same list, tagged so the UI can filter them.
for (const importId of await listImportedIds(home)) {
const dir = importedDirOf(home, importId);
const meta = await readImportMeta(home, importId);
const workDir = meta?.manifest?.workspaceDir ?? '';
const summary = await tryReadSummary(dir, importId, workDir, { imported: true, importMeta: meta });
if (summary !== null) out.push(summary);
}
out.sort((a, b) => b.updatedAt - a.updatedAt);
return out;
}
export async function readSessionDetail(home: string, sessionId: string): Promise<SessionDetail | null> {
if (isImportId(sessionId)) return readImportedDetail(home, sessionId);
const sessionDir = await findSessionDir(home, sessionId);
if (sessionDir === null) return null;
const index = await readSessionIndex(home);
const workDir = index.get(sessionId)?.workDir ?? '';
const state = await readState(sessionDir);
// When state.json is unreadable we still return a SessionDetail so the
// UI can render the broken-state diagnostic. Agent inventory cannot be
// derived from state, but the on-disk `agents/<id>/wire.jsonl` files
// are independent of state — probe for them directly so users can
// still inspect the wire/context of a session whose state is corrupt.
if (state === null) {
const agents = await discoverAgentsFromDisk(sessionDir);
return { sessionId, sessionDir, workDir, state: null, agents, imported: false, importMeta: null };
}
if (state.custom?.['imported_from_kimi_cli'] === true) return null;
const agents = await inventoryAgents(sessionDir, state);
return {
sessionId,
sessionDir,
workDir: recoverWorkDir(state, workDir),
state,
agents,
imported: false,
importMeta: null,
};
}
/** Detail for an imported bundle. Same readers as a local session, but the
* directory is `imported/<id>/`, the workDir comes from the manifest, and
* agent homedirs are re-derived from the local extraction (state.json holds
* the exporting machine's absolute paths, which do not exist here). The
* `imported_from_kimi_cli` hide-filter is intentionally NOT applied — the
* user imported this bundle deliberately. */
async function readImportedDetail(home: string, importId: string): Promise<SessionDetail | null> {
const sessionDir = importedDirOf(home, importId);
if (!(await pathExists(sessionDir))) return null;
const meta = await readImportMeta(home, importId);
const workDir = meta?.manifest?.workspaceDir ?? '';
const state = await readState(sessionDir);
if (state === null) {
const agents = await discoverAgentsFromDisk(sessionDir);
return { sessionId: importId, sessionDir, workDir, state: null, agents, imported: true, importMeta: meta };
}
// State is best-effort in a bundle: a readable state.json may still omit the
// `agents` map. When the inventory comes back empty, fall back to probing
// `agents/*` on disk so routes that require an agent (wire/context/…) still
// resolve `main`.
let agents = await inventoryAgents(sessionDir, state);
if (agents.length === 0) {
agents = await discoverAgentsFromDisk(sessionDir);
}
return {
sessionId: importId,
sessionDir,
workDir: recoverWorkDir(state, workDir),
state,
agents,
imported: true,
importMeta: meta,
};
}
/** Fallback inventory used when `state.json` is unreadable: walk
* `<sessionDir>/agents/*` directly and synthesize minimal AgentInfo
* records for the directories that contain a `wire.jsonl`. Parent
* links and `type` are unknown without state, so we mark every agent
* as `independent` with a null parent — the routes only need
* `agentId` + `wireExists` to serve wire/context. */
async function discoverAgentsFromDisk(sessionDir: string): Promise<AgentInfo[]> {
const agentsDir = join(sessionDir, 'agents');
let entries: import('node:fs').Dirent[];
try {
entries = await readdir(agentsDir, { withFileTypes: true });
} catch {
return [];
}
const out: AgentInfo[] = [];
for (const entry of entries) {
if (!entry.isDirectory()) continue;
const id = entry.name;
if (!isSafeAgentId(id)) continue;
const wirePath = join(agentsDir, id, 'wire.jsonl');
const exists = await pathExists(wirePath);
let readable = exists;
let info: { count: number; protocolVersion: string | null } = { count: 0, protocolVersion: null };
if (exists) {
try {
info = await scanWire(wirePath);
} catch {
readable = false;
}
}
out.push({
agentId: id,
type: id === 'main' ? 'main' : 'independent',
parentAgentId: null,
profileName: null,
homedir: join(agentsDir, id),
wireExists: readable,
wireRecordCount: info.count,
wireProtocolVersion: info.protocolVersion,
// swarmItem is persisted in state.json, which is unavailable on this
// disk-only fallback path, so it cannot be recovered here.
swarmItem: null,
});
}
return out.sort((a, b) => compareAgentIds(a.agentId, b.agentId));
}
async function tryReadSummary(
sessionDir: string,
sessionId: string,
workDir: string,
opts: { imported?: boolean; importMeta?: ImportInfo | null } = {},
): Promise<SessionSummary | null> {
const imported = opts.imported ?? false;
const importMeta = opts.importMeta ?? null;
const state = await readState(sessionDir);
if (state === null) {
return brokenStateSummary(sessionDir, sessionId, workDir, imported, importMeta);
}
// Local migrated-CLI sessions are hidden; an imported bundle is shown
// regardless because the user chose to import it.
if (!imported && state.custom?.['imported_from_kimi_cli'] === true) return null;
const mainWirePath = join(sessionDir, 'agents', 'main', 'wire.jsonl');
const mainExists = await pathExists(mainWirePath);
let mainCount = 0;
let protocolVersion: string | null = null;
let health: SessionHealth = 'ok';
if (!mainExists) {
health = 'missing_main_wire';
} else {
try {
const info = await scanWire(mainWirePath);
mainCount = info.count;
protocolVersion = info.protocolVersion;
// Note: the protocol version is not used to gate health any more —
// the wire-reader best-efforts unknown versions with a warning.
} catch {
// A single unreadable wire file must not fail the whole list.
health = 'broken_main_wire';
}
}
return {
sessionId,
sessionDir,
workDir: recoverWorkDir(state, workDir),
title: state.title ?? null,
lastPrompt: state.lastPrompt ?? null,
isCustomTitle: state.isCustomTitle ?? false,
createdAt: parseTs(state.createdAt),
updatedAt: parseTs(state.updatedAt),
agentCount: Object.keys(state.agents ?? {}).length,
mainAgentExists: mainExists,
mainWireRecordCount: mainCount,
wireProtocolVersion: protocolVersion,
health,
imported,
importMeta,
};
}
function brokenStateSummary(
sessionDir: string,
sessionId: string,
workDir: string,
imported = false,
importMeta: ImportInfo | null = null,
): SessionSummary {
return {
sessionId, sessionDir, workDir,
title: null, lastPrompt: null, isCustomTitle: false,
createdAt: 0, updatedAt: 0,
agentCount: 0, mainAgentExists: false, mainWireRecordCount: 0,
wireProtocolVersion: null, health: 'broken_state',
imported, importMeta,
};
}
interface SessionIndexEntry {
sessionDir: string;
workDir: string;
}
async function readSessionIndex(home: string): Promise<Map<string, SessionIndexEntry>> {
const out = new Map<string, SessionIndexEntry>();
let raw: string;
try {
raw = await readFile(join(home, 'session_index.jsonl'), 'utf8');
} catch { return out; }
for (const line of raw.split(/\r?\n/)) {
if (!line.trim()) continue;
try {
const entry = JSON.parse(line) as { sessionId?: string; sessionDir?: string; workDir?: string };
if (typeof entry.sessionId === 'string' && typeof entry.sessionDir === 'string') {
out.set(entry.sessionId, {
sessionDir: entry.sessionDir,
workDir: typeof entry.workDir === 'string' ? entry.workDir : '',
});
}
} catch { /* skip malformed */ }
}
return out;
}
async function inventoryAgents(sessionDir: string, state: StateJson): Promise<AgentInfo[]> {
const result: AgentInfo[] = [];
for (const [id, meta] of Object.entries(state.agents ?? {})) {
if (!isSafeAgentId(id)) continue;
// A type-corrupt entry (e.g. `{ "main": null }`) must not throw on the
// field dereferences below; skip it so the empty-inventory fallback in
// readImportedDetail can recover the agent from disk instead.
if (!isRecord(meta)) continue;
const labels = isRecord(meta['labels']) ? meta['labels'] : undefined;
const wirePath = join(sessionDir, 'agents', id, 'wire.jsonl');
const exists = await pathExists(wirePath);
let readable = exists;
let info: { count: number; protocolVersion: string | null } = { count: 0, protocolVersion: null };
if (exists) {
try {
info = await scanWire(wirePath);
} catch {
// The file exists but is unreadable / malformed. Report it as
// unavailable so wire/context routes return 404 ("wire missing")
// instead of 500 ("READ_ERROR") and the UI shows the "no wire"
// badge consistently with the missing-file path.
readable = false;
}
}
result.push({
agentId: id,
type: normalizeAgentType(meta['type'], id),
parentAgentId:
normalizeNonEmptyString(labels?.['parentAgentId']) ??
normalizeNonEmptyString(meta['parentAgentId']),
profileName: normalizeNonEmptyString(labels?.['profileName']),
homedir: join(sessionDir, 'agents', id),
wireExists: readable,
wireRecordCount: info.count,
wireProtocolVersion: info.protocolVersion,
swarmItem:
normalizeNonEmptyString(labels?.['swarmItem']) ??
normalizeNonEmptyString(meta['swarmItem']),
});
}
return result.sort((a, b) => compareAgentIds(a.agentId, b.agentId));
}
async function readState(sessionDir: string): Promise<StateJson | null> {
// `<sessionDir>/state.json` is the canonical path; older v2 sessions may
// only carry the legacy `<sessionDir>/session-meta/state.json` layout (the
// engine itself reads with this fallback), so try both before declaring
// the state broken.
for (const candidate of [
join(sessionDir, 'state.json'),
join(sessionDir, 'session-meta', 'state.json'),
]) {
try {
return JSON.parse(await readFile(candidate, 'utf8')) as StateJson;
} catch { /* try the next candidate */ }
}
return null;
}
async function findSessionDir(home: string, sessionId: string): Promise<string | null> {
if (!SESSION_ID_RE.test(sessionId)) return null;
const sessionsRoot = resolve(join(home, 'sessions'));
const sessionsRootPrefix = sessionsRoot + sep;
// Try index first — but only trust entries that point *under*
// `<home>/sessions/` AND whose basename matches the requested id.
// This blocks stale/poisoned index lines from redirecting reads to
// unrelated directories.
try {
const indexLines = (await readFile(join(home, 'session_index.jsonl'), 'utf8')).split(/\r?\n/);
for (const line of indexLines) {
if (!line.trim()) continue;
const entry = JSON.parse(line) as { sessionId?: string; sessionDir?: string };
if (entry.sessionId !== sessionId || typeof entry.sessionDir !== 'string') continue;
const candidate = resolve(entry.sessionDir);
if (!candidate.startsWith(sessionsRootPrefix)) continue;
if (candidate.split(sep).pop() !== sessionId) continue;
if (await pathExists(candidate)) return candidate;
}
} catch { /* no index */ }
// Fall back to scanning buckets
const buckets = await readdir(sessionsRoot, { withFileTypes: true }).catch(() => []);
for (const bucket of buckets) {
if (!bucket.isDirectory()) continue;
const candidate = join(sessionsRoot, bucket.name, sessionId);
if (await pathExists(candidate)) return candidate;
}
return null;
}
async function scanWire(path: string): Promise<{ count: number; protocolVersion: string }> {
const stream = createReadStream(path, { encoding: 'utf8' });
const rl = createInterface({ input: stream, crlfDelay: Infinity });
let count = 0;
let protocolVersion: string | null = null;
for await (const line of rl) {
if (line.length === 0) continue;
let parsed: unknown;
try {
parsed = JSON.parse(line);
} catch {
continue;
}
if (typeof parsed !== 'object' || parsed === null || Array.isArray(parsed)) continue;
const record = parsed as Record<string, unknown>;
if (typeof record['type'] !== 'string') continue;
if (protocolVersion === null) {
if (record['type'] !== 'metadata') {
protocolVersion = '1.4';
} else {
const version = record['protocol_version'];
const createdAt = record['created_at'];
if (typeof version !== 'string' || typeof createdAt !== 'number') {
throw new TypeError('wire metadata is malformed');
}
protocolVersion = version;
}
}
count += 1;
}
if (protocolVersion === null) {
throw new Error('wire file is empty');
}
return { count, protocolVersion };
}
function normalizeAgentType(
value: unknown,
agentId: string,
): AgentInfo['type'] {
if (value === 'main' || value === 'sub' || value === 'independent') return value;
return agentId === 'main' ? 'main' : 'sub';
}
function normalizeNonEmptyString(value: unknown): string | null {
if (typeof value !== 'string') return null;
const trimmed = value.trim();
return trimmed.length > 0 ? trimmed : null;
}
function isRecord(value: unknown): value is Record<string, unknown> {
return typeof value === 'object' && value !== null && !Array.isArray(value);
}
function recoverWorkDir(state: StateJson, preferred: string): string {
if (preferred.length > 0) return preferred;
if (typeof state.cwd === 'string' && state.cwd.length > 0) return state.cwd;
if (typeof state.workDir === 'string' && state.workDir.length > 0) return state.workDir;
const customCwd = state.custom?.['cwd'];
return typeof customCwd === 'string' && customCwd.length > 0 ? customCwd : '';
}
function parseTs(input: string | number | undefined): number {
if (typeof input === 'number') return Number.isFinite(input) ? input : 0;
if (!input) return 0;
const n = Date.parse(input);
return Number.isFinite(n) ? n : 0;
}
async function pathExists(p: string): Promise<boolean> {
try { await stat(p); return true; } catch { return false; }
}
|