feat: add real tmux session manager
This commit is contained in:
@@ -23,9 +23,19 @@ export interface StartInput {
|
||||
|
||||
export interface SessionHandle {
|
||||
sessionId: string;
|
||||
runId?: string;
|
||||
roleId?: string;
|
||||
pid?: number;
|
||||
tmuxSession?: string;
|
||||
tmuxWindow?: string;
|
||||
envelopePrelude?: string;
|
||||
requirePreludeReplay?: boolean;
|
||||
transcriptBaseline?: TranscriptBaseline;
|
||||
}
|
||||
|
||||
export interface TranscriptBaseline {
|
||||
startSeq: bigint;
|
||||
lines: readonly string[];
|
||||
}
|
||||
|
||||
export interface ProbeResult {
|
||||
|
||||
@@ -2,3 +2,4 @@ export * from "./adapter.js";
|
||||
export * from "./fake.js";
|
||||
export * from "./manager.js";
|
||||
export * from "./transcript.js";
|
||||
export * from "./tmux.js";
|
||||
|
||||
334
packages/session/src/manager.test.ts
Normal file
334
packages/session/src/manager.test.ts
Normal file
@@ -0,0 +1,334 @@
|
||||
import { randomUUID } from "node:crypto";
|
||||
import { afterEach, describe, expect, it } from "vitest";
|
||||
|
||||
import type { PromptEnvelope } from "@devflow/core";
|
||||
import {
|
||||
type DbClient,
|
||||
approvalRequests,
|
||||
createDbClient,
|
||||
runEvents,
|
||||
runs,
|
||||
tuiSessions,
|
||||
tuiTranscriptChunks,
|
||||
workflowTemplates,
|
||||
} from "@devflow/db";
|
||||
import { eq, inArray } from "drizzle-orm";
|
||||
|
||||
import type {
|
||||
ProbeResult,
|
||||
SessionAdapter,
|
||||
SessionHandle,
|
||||
StartInput,
|
||||
TranscriptChunk,
|
||||
} from "./adapter.js";
|
||||
import { SessionManager } from "./manager.js";
|
||||
|
||||
const testDatabaseUrl =
|
||||
process.env.DATABASE_URL ?? "postgres://devflow:devflow@127.0.0.1:55432/devflow";
|
||||
|
||||
class RecordingRecoveryAdapter implements SessionAdapter {
|
||||
resumeCalls = 0;
|
||||
sendPromptCalls = 0;
|
||||
captureCalls: Array<{ sessionId: string; fromSeq: bigint }> = [];
|
||||
|
||||
async start(input: StartInput): Promise<SessionHandle> {
|
||||
return { sessionId: input.sessionId ?? randomUUID() };
|
||||
}
|
||||
|
||||
async sendPrompt(
|
||||
_handle: SessionHandle,
|
||||
envelope: PromptEnvelope,
|
||||
): Promise<{ promptId: string }> {
|
||||
this.sendPromptCalls += 1;
|
||||
return { promptId: envelope.dedupKey };
|
||||
}
|
||||
|
||||
async probe(): Promise<ProbeResult> {
|
||||
return { alive: true, paneActive: true };
|
||||
}
|
||||
|
||||
async resume(handle: SessionHandle): Promise<SessionHandle> {
|
||||
this.resumeCalls += 1;
|
||||
return handle;
|
||||
}
|
||||
|
||||
async rebootstrap(handle: SessionHandle): Promise<SessionHandle> {
|
||||
return handle;
|
||||
}
|
||||
|
||||
capture(handle: SessionHandle, fromSeq: bigint): AsyncIterable<TranscriptChunk> {
|
||||
this.captureCalls.push({ sessionId: handle.sessionId, fromSeq });
|
||||
return singleTranscript(fromSeq + 1n, "shutdown transcript");
|
||||
}
|
||||
|
||||
async dispose(): Promise<void> {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
describe("SessionManager recovery", () => {
|
||||
let client: DbClient | undefined;
|
||||
const runIds: string[] = [];
|
||||
const templateIds: string[] = [];
|
||||
|
||||
afterEach(async () => {
|
||||
if (client === undefined) {
|
||||
return;
|
||||
}
|
||||
if (runIds.length > 0) {
|
||||
await client.db.delete(approvalRequests).where(inArray(approvalRequests.runId, [...runIds]));
|
||||
await client.db.delete(runs).where(inArray(runs.id, [...runIds]));
|
||||
}
|
||||
if (templateIds.length > 0) {
|
||||
await client.db
|
||||
.delete(workflowTemplates)
|
||||
.where(inArray(workflowTemplates.id, [...templateIds]));
|
||||
}
|
||||
runIds.length = 0;
|
||||
templateIds.length = 0;
|
||||
await client.close();
|
||||
client = undefined;
|
||||
});
|
||||
|
||||
it("recovers BUSY sessions without prompt proof for baseline replay handling", async () => {
|
||||
client = createDbClient(testDatabaseUrl);
|
||||
const templateId = randomUUID();
|
||||
const runId = randomUUID();
|
||||
const sessionId = randomUUID();
|
||||
templateIds.push(templateId);
|
||||
runIds.push(runId);
|
||||
|
||||
await client.db.insert(workflowTemplates).values({
|
||||
id: templateId,
|
||||
name: `template-${templateId}`,
|
||||
version: 1,
|
||||
hash: `hash-${templateId}`,
|
||||
definition: {},
|
||||
});
|
||||
await client.db.insert(runs).values({
|
||||
id: runId,
|
||||
templateId,
|
||||
templateHash: `hash-${templateId}`,
|
||||
state: "executing",
|
||||
repoPath: `/tmp/devflow-${runId}`,
|
||||
baseBranch: "main",
|
||||
worktreeRoot: `/tmp/devflow-${runId}/main`,
|
||||
});
|
||||
await client.db.insert(tuiSessions).values({
|
||||
id: sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd: `/tmp/devflow-${runId}/main`,
|
||||
state: "BUSY",
|
||||
lastPromptHash: "a".repeat(64),
|
||||
lastPromptAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
});
|
||||
const adapter = new RecordingRecoveryAdapter();
|
||||
const manager = new SessionManager({
|
||||
db: client.db,
|
||||
adapter,
|
||||
recoveryRunIds: [runId],
|
||||
});
|
||||
|
||||
await expect(manager.recoverSessions()).resolves.toEqual({
|
||||
recoveredSessionIds: [sessionId],
|
||||
failedSessionIds: [],
|
||||
});
|
||||
|
||||
expect(adapter.resumeCalls).toBe(1);
|
||||
await expect(
|
||||
client.db
|
||||
.select({ state: tuiSessions.state, recoveryAttempts: tuiSessions.recoveryAttempts })
|
||||
.from(tuiSessions)
|
||||
.where(eq(tuiSessions.id, sessionId)),
|
||||
).resolves.toEqual([{ state: "BUSY", recoveryAttempts: 0 }]);
|
||||
await expect(
|
||||
client.db.select({ state: runs.state }).from(runs).where(eq(runs.id, runId)),
|
||||
).resolves.toEqual([{ state: "executing" }]);
|
||||
const events = await client.db
|
||||
.select({ type: runEvents.type })
|
||||
.from(runEvents)
|
||||
.where(eq(runEvents.runId, runId))
|
||||
.orderBy(runEvents.seq);
|
||||
expect(events.map((event) => event.type)).toEqual([]);
|
||||
});
|
||||
|
||||
it("skips prompt delivery when durable prompt proof already exists", async () => {
|
||||
client = createDbClient(testDatabaseUrl);
|
||||
const templateId = randomUUID();
|
||||
const runId = randomUUID();
|
||||
templateIds.push(templateId);
|
||||
runIds.push(runId);
|
||||
const dedupKey = "b".repeat(64);
|
||||
|
||||
await client.db.insert(workflowTemplates).values({
|
||||
id: templateId,
|
||||
name: `template-${templateId}`,
|
||||
version: 1,
|
||||
hash: `hash-${templateId}`,
|
||||
definition: {},
|
||||
});
|
||||
await client.db.insert(runs).values({
|
||||
id: runId,
|
||||
templateId,
|
||||
templateHash: `hash-${templateId}`,
|
||||
state: "executing",
|
||||
repoPath: `/tmp/devflow-${runId}`,
|
||||
baseBranch: "main",
|
||||
worktreeRoot: `/tmp/devflow-${runId}/main`,
|
||||
});
|
||||
await client.db.insert(runEvents).values({
|
||||
runId,
|
||||
seq: 1n,
|
||||
type: "prompt.sent",
|
||||
payload: { roleId: "implementer", dedupKey },
|
||||
idempotencyKey: `prompt.sent:${dedupKey}`,
|
||||
});
|
||||
const adapter = new RecordingRecoveryAdapter();
|
||||
const manager = new SessionManager({ db: client.db, adapter });
|
||||
|
||||
await expect(
|
||||
manager.sendPrompt(
|
||||
{ sessionId: randomUUID() },
|
||||
{
|
||||
uuid: randomUUID(),
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
phaseKey: "spec",
|
||||
attempt: 1,
|
||||
expectedArtifact: `/tmp/devflow-${runId}/main/spec.json`,
|
||||
expectedSchema: "dev/spec@1",
|
||||
dedupKey,
|
||||
instructions: "already delivered",
|
||||
},
|
||||
),
|
||||
).resolves.toEqual({ promptId: dedupKey });
|
||||
expect(adapter.sendPromptCalls).toBe(0);
|
||||
});
|
||||
|
||||
it("does not deliver a prompt if shutdown starts while checking durable prompt proof", async () => {
|
||||
const adapter = new RecordingRecoveryAdapter();
|
||||
const manager = new SessionManager({ adapter });
|
||||
const promptProofStarted = deferred<void>();
|
||||
const promptProofAllowed = deferred<boolean>();
|
||||
(
|
||||
manager as unknown as {
|
||||
promptDeliveryAlreadyRecorded(envelope: PromptEnvelope): Promise<boolean>;
|
||||
}
|
||||
).promptDeliveryAlreadyRecorded = async () => {
|
||||
promptProofStarted.resolve();
|
||||
return promptProofAllowed.promise;
|
||||
};
|
||||
const runId = randomUUID();
|
||||
const dedupKey = "c".repeat(64);
|
||||
|
||||
const send = manager.sendPrompt(
|
||||
{ sessionId: randomUUID() },
|
||||
{
|
||||
uuid: randomUUID(),
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
phaseKey: "spec",
|
||||
attempt: 1,
|
||||
expectedArtifact: `/tmp/devflow-${runId}/main/spec.json`,
|
||||
expectedSchema: "dev/spec@1",
|
||||
dedupKey,
|
||||
instructions: "shutdown race",
|
||||
},
|
||||
);
|
||||
await promptProofStarted.promise;
|
||||
const shutdown = manager.shutdown();
|
||||
promptProofAllowed.resolve(false);
|
||||
|
||||
await expect(send).rejects.toMatchObject({ code: "session_manager_draining" });
|
||||
await expect(shutdown).resolves.toBeUndefined();
|
||||
expect(adapter.sendPromptCalls).toBe(0);
|
||||
});
|
||||
|
||||
it("captures tracked transcripts before releasing the singleton lock on shutdown", async () => {
|
||||
client = createDbClient(testDatabaseUrl);
|
||||
const templateId = randomUUID();
|
||||
const runId = randomUUID();
|
||||
const sessionId = randomUUID();
|
||||
templateIds.push(templateId);
|
||||
runIds.push(runId);
|
||||
|
||||
await client.db.insert(workflowTemplates).values({
|
||||
id: templateId,
|
||||
name: `template-${templateId}`,
|
||||
version: 1,
|
||||
hash: `hash-${templateId}`,
|
||||
definition: {},
|
||||
});
|
||||
await client.db.insert(runs).values({
|
||||
id: runId,
|
||||
templateId,
|
||||
templateHash: `hash-${templateId}`,
|
||||
state: "executing",
|
||||
repoPath: `/tmp/devflow-${runId}`,
|
||||
baseBranch: "main",
|
||||
worktreeRoot: `/tmp/devflow-${runId}/main`,
|
||||
});
|
||||
await client.db.insert(tuiSessions).values({
|
||||
id: sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd: `/tmp/devflow-${runId}/main`,
|
||||
state: "READY",
|
||||
lastCaptureSeq: 1n,
|
||||
});
|
||||
const adapter = new RecordingRecoveryAdapter();
|
||||
const manager = new SessionManager({ db: client.db, adapter });
|
||||
await manager.resume({ sessionId });
|
||||
|
||||
await expect(manager.shutdown()).resolves.toBeUndefined();
|
||||
|
||||
expect(adapter.captureCalls).toEqual([{ sessionId, fromSeq: 1n }]);
|
||||
await expect(
|
||||
client.db
|
||||
.select({ seq: tuiTranscriptChunks.seq, content: tuiTranscriptChunks.content })
|
||||
.from(tuiTranscriptChunks)
|
||||
.where(eq(tuiTranscriptChunks.sessionId, sessionId)),
|
||||
).resolves.toEqual([{ seq: 2n, content: "shutdown transcript" }]);
|
||||
await expect(
|
||||
client.db
|
||||
.select({ lastCaptureSeq: tuiSessions.lastCaptureSeq })
|
||||
.from(tuiSessions)
|
||||
.where(eq(tuiSessions.id, sessionId)),
|
||||
).resolves.toEqual([{ lastCaptureSeq: 2n }]);
|
||||
});
|
||||
});
|
||||
|
||||
function deferred<T>() {
|
||||
let resolve!: (value: T | PromiseLike<T>) => void;
|
||||
let reject!: (reason?: unknown) => void;
|
||||
const promise = new Promise<T>((promiseResolve, promiseReject) => {
|
||||
resolve = promiseResolve;
|
||||
reject = promiseReject;
|
||||
});
|
||||
return { promise, resolve, reject };
|
||||
}
|
||||
|
||||
function singleTranscript(seq: bigint, content: string): AsyncIterable<TranscriptChunk> {
|
||||
return {
|
||||
[Symbol.asyncIterator]() {
|
||||
let emitted = false;
|
||||
return {
|
||||
async next() {
|
||||
if (emitted) {
|
||||
return { done: true, value: undefined };
|
||||
}
|
||||
emitted = true;
|
||||
return {
|
||||
done: false,
|
||||
value: { seq, content, capturedAt: new Date("2026-05-13T00:00:00.000Z") },
|
||||
};
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
}
|
||||
@@ -2,19 +2,24 @@ import { DevflowError, type PromptEnvelope } from "@devflow/core";
|
||||
import {
|
||||
type DbClient,
|
||||
RunEventRepository,
|
||||
TuiTranscriptRepository,
|
||||
approvalRequests,
|
||||
runEvents,
|
||||
runs,
|
||||
tuiSessions,
|
||||
tuiTranscriptChunks,
|
||||
} from "@devflow/db";
|
||||
import { and, eq, inArray, notInArray, sql } from "drizzle-orm";
|
||||
import { and, desc, eq, gt, inArray, lte, notInArray, sql } from "drizzle-orm";
|
||||
|
||||
import type {
|
||||
ProbeResult,
|
||||
SessionAdapter,
|
||||
SessionHandle,
|
||||
StartInput,
|
||||
TranscriptBaseline,
|
||||
TranscriptChunk,
|
||||
} from "./adapter.js";
|
||||
import { captureAndPersistTranscript } from "./transcript.js";
|
||||
|
||||
type Database = DbClient["db"];
|
||||
|
||||
@@ -92,7 +97,7 @@ export class SessionManager implements SessionRuntime {
|
||||
|
||||
const client = (await this.dbClient.pool.connect()) as AdvisoryLockClient;
|
||||
const result = await client.query<{ acquired: boolean }>(
|
||||
"SELECT pg_try_advisory_lock(hashtext($1)) AS acquired",
|
||||
"SELECT pg_try_advisory_lock(hashtextextended($1, 0)) AS acquired",
|
||||
["devflow:session-manager"],
|
||||
);
|
||||
if (result.rows[0]?.acquired !== true) {
|
||||
@@ -110,16 +115,27 @@ export class SessionManager implements SessionRuntime {
|
||||
async shutdown(): Promise<void> {
|
||||
this.draining = true;
|
||||
await this.waitForInFlight();
|
||||
let captureError: unknown;
|
||||
try {
|
||||
await this.captureTrackedTranscripts();
|
||||
} catch (error) {
|
||||
captureError = error;
|
||||
}
|
||||
const client = this.lockClient;
|
||||
this.lockClient = undefined;
|
||||
this.handles.clear();
|
||||
if (client !== undefined) {
|
||||
try {
|
||||
await client.query("SELECT pg_advisory_unlock(hashtext($1))", ["devflow:session-manager"]);
|
||||
await client.query("SELECT pg_advisory_unlock(hashtextextended($1, 0))", [
|
||||
"devflow:session-manager",
|
||||
]);
|
||||
} finally {
|
||||
client.release();
|
||||
}
|
||||
}
|
||||
if (captureError !== undefined) {
|
||||
throw captureError;
|
||||
}
|
||||
}
|
||||
|
||||
trackOperation<T>(operation: Promise<T>): Promise<T> {
|
||||
@@ -135,7 +151,15 @@ export class SessionManager implements SessionRuntime {
|
||||
|
||||
async sendPrompt(handle: SessionHandle, envelope: PromptEnvelope): Promise<{ promptId: string }> {
|
||||
this.assertAcceptingPrompts();
|
||||
return this.track(this.adapter.sendPrompt(this.handleFor(handle), envelope));
|
||||
return this.track(
|
||||
(async () => {
|
||||
if (await this.promptDeliveryAlreadyRecorded(envelope)) {
|
||||
return { promptId: envelope.dedupKey };
|
||||
}
|
||||
this.assertAcceptingPrompts();
|
||||
return this.adapter.sendPrompt(this.handleFor(handle), envelope);
|
||||
})(),
|
||||
);
|
||||
}
|
||||
|
||||
async probe(handle: SessionHandle): Promise<ProbeResult> {
|
||||
@@ -185,7 +209,9 @@ export class SessionManager implements SessionRuntime {
|
||||
roleId: tuiSessions.roleId,
|
||||
backend: tuiSessions.backend,
|
||||
cwd: tuiSessions.cwd,
|
||||
lastCaptureSeq: tuiSessions.lastCaptureSeq,
|
||||
lastKnownPanePid: tuiSessions.lastKnownPanePid,
|
||||
lastPromptHash: tuiSessions.lastPromptHash,
|
||||
recoveryAttempts: tuiSessions.recoveryAttempts,
|
||||
state: tuiSessions.state,
|
||||
tmuxSession: tuiSessions.tmuxSession,
|
||||
@@ -209,11 +235,19 @@ export class SessionManager implements SessionRuntime {
|
||||
const recoveredSessionIds: string[] = [];
|
||||
const failedSessionIds: string[] = [];
|
||||
for (const session of sessionRows) {
|
||||
const transcriptBaseline = await this.loadTranscriptBaseline(
|
||||
session.id,
|
||||
session.lastCaptureSeq,
|
||||
);
|
||||
const handle = compactHandle(
|
||||
session.id,
|
||||
session.runId,
|
||||
session.roleId,
|
||||
session.backend,
|
||||
session.lastKnownPanePid,
|
||||
session.tmuxSession,
|
||||
session.tmuxWindow,
|
||||
transcriptBaseline,
|
||||
);
|
||||
try {
|
||||
const resumed = await this.resumeWithRetry(handle);
|
||||
@@ -229,6 +263,27 @@ export class SessionManager implements SessionRuntime {
|
||||
return { recoveredSessionIds, failedSessionIds };
|
||||
}
|
||||
|
||||
private async promptDeliveryAlreadyRecorded(envelope: PromptEnvelope): Promise<boolean> {
|
||||
if (this.db === undefined) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const [event] = await this.db
|
||||
.select({ id: runEvents.id })
|
||||
.from(runEvents)
|
||||
.where(
|
||||
and(
|
||||
eq(runEvents.runId, envelope.runId),
|
||||
inArray(runEvents.idempotencyKey, [
|
||||
`prompt.sent:${envelope.dedupKey}`,
|
||||
`prompt.repaired:${envelope.dedupKey}`,
|
||||
]),
|
||||
),
|
||||
)
|
||||
.limit(1);
|
||||
return event !== undefined;
|
||||
}
|
||||
|
||||
private async markStartupRecoverySucceeded(
|
||||
session: {
|
||||
id: string;
|
||||
@@ -390,6 +445,67 @@ export class SessionManager implements SessionRuntime {
|
||||
throw lastError;
|
||||
}
|
||||
|
||||
private async loadTranscriptBaseline(
|
||||
sessionId: string,
|
||||
lastCaptureSeq: bigint,
|
||||
): Promise<TranscriptBaseline | undefined> {
|
||||
if (this.db === undefined || lastCaptureSeq === 0n) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const rowsDescending = await this.db
|
||||
.select({ seq: tuiTranscriptChunks.seq, content: tuiTranscriptChunks.content })
|
||||
.from(tuiTranscriptChunks)
|
||||
.where(
|
||||
and(
|
||||
eq(tuiTranscriptChunks.sessionId, sessionId),
|
||||
gt(tuiTranscriptChunks.seq, 0n),
|
||||
lte(tuiTranscriptChunks.seq, lastCaptureSeq),
|
||||
),
|
||||
)
|
||||
.orderBy(desc(tuiTranscriptChunks.seq))
|
||||
.limit(transcriptBaselineLineLimit);
|
||||
if (rowsDescending.length === 0) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const rows = [...rowsDescending].reverse();
|
||||
const startSeq = rows[0]?.seq;
|
||||
if (startSeq === undefined) {
|
||||
return undefined;
|
||||
}
|
||||
return {
|
||||
startSeq,
|
||||
lines: rows.map((row) => row.content),
|
||||
};
|
||||
}
|
||||
|
||||
private async captureTrackedTranscripts(): Promise<void> {
|
||||
if (this.db === undefined || this.handles.size === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const sessionRows = await this.db
|
||||
.select({ id: tuiSessions.id, lastCaptureSeq: tuiSessions.lastCaptureSeq })
|
||||
.from(tuiSessions)
|
||||
.where(inArray(tuiSessions.id, [...this.handles.keys()]));
|
||||
const sink = new TuiTranscriptRepository(this.db);
|
||||
const results = await Promise.allSettled(
|
||||
sessionRows.map((session) =>
|
||||
captureAndPersistTranscript({
|
||||
adapter: this.adapter,
|
||||
handle: this.handleFor({ sessionId: session.id }),
|
||||
fromSeq: session.lastCaptureSeq,
|
||||
sink,
|
||||
}),
|
||||
),
|
||||
);
|
||||
const failed = results.find((result) => result.status === "rejected");
|
||||
if (failed !== undefined) {
|
||||
throw failed.reason;
|
||||
}
|
||||
}
|
||||
|
||||
private async track<T>(operation: Promise<T>): Promise<T> {
|
||||
const tracked = operation.finally(() => {
|
||||
this.inFlight.delete(tracked);
|
||||
@@ -420,7 +536,13 @@ export class SessionManager implements SessionRuntime {
|
||||
}
|
||||
|
||||
private handleFor(handle: SessionHandle): SessionHandle {
|
||||
return this.handles.get(handle.sessionId) ?? handle;
|
||||
const tracked = this.handles.get(handle.sessionId);
|
||||
if (tracked === undefined) {
|
||||
return handle;
|
||||
}
|
||||
const merged = mergeSessionHandles(tracked, handle);
|
||||
this.handles.set(handle.sessionId, merged);
|
||||
return merged;
|
||||
}
|
||||
|
||||
private assertAcceptingPrompts(): void {
|
||||
@@ -442,15 +564,32 @@ function isTerminalRunState(state: string): state is (typeof terminalRunStates)[
|
||||
|
||||
function compactHandle(
|
||||
sessionId: string,
|
||||
runId: string,
|
||||
roleId: string,
|
||||
backend: string,
|
||||
pid: number | null,
|
||||
tmuxSession: string | null,
|
||||
tmuxWindow: string | null,
|
||||
transcriptBaseline: TranscriptBaseline | undefined,
|
||||
): SessionHandle {
|
||||
return {
|
||||
sessionId,
|
||||
runId,
|
||||
roleId,
|
||||
...(pid === null ? {} : { pid }),
|
||||
...(tmuxSession === null ? {} : { tmuxSession }),
|
||||
...(tmuxWindow === null ? {} : { tmuxWindow }),
|
||||
...(backend === "fake" ? {} : { requirePreludeReplay: true }),
|
||||
...(transcriptBaseline === undefined ? {} : { transcriptBaseline }),
|
||||
};
|
||||
}
|
||||
|
||||
const transcriptBaselineLineLimit = 200;
|
||||
|
||||
function mergeSessionHandles(tracked: SessionHandle, incoming: SessionHandle): SessionHandle {
|
||||
return {
|
||||
...tracked,
|
||||
...Object.fromEntries(Object.entries(incoming).filter(([, value]) => value !== undefined)),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
917
packages/session/src/tmux.test.ts
Normal file
917
packages/session/src/tmux.test.ts
Normal file
@@ -0,0 +1,917 @@
|
||||
import { mkdtempSync, rmSync } from "node:fs";
|
||||
import { tmpdir } from "node:os";
|
||||
import { join } from "node:path";
|
||||
import { afterEach, describe, expect, it } from "vitest";
|
||||
|
||||
import { DevflowError, type PromptEnvelope, renderPromptEnvelope } from "@devflow/core";
|
||||
|
||||
import {
|
||||
TmuxCommandError,
|
||||
type TmuxDriver,
|
||||
type TmuxDriverExecOptions,
|
||||
TmuxSessionAdapter,
|
||||
} from "./tmux.js";
|
||||
|
||||
const runId = "00000000-0000-4000-8000-000000000001";
|
||||
const sessionId = "00000000-0000-4000-8000-000000000042";
|
||||
const dedupKey = "a".repeat(64);
|
||||
|
||||
interface RecordedTmuxCommand {
|
||||
args: string[];
|
||||
cwd?: string;
|
||||
input?: string;
|
||||
}
|
||||
|
||||
class RecordingTmuxDriver implements TmuxDriver {
|
||||
readonly commands: RecordedTmuxCommand[] = [];
|
||||
captureOutput = "first line\nsecond line\n";
|
||||
panePid = 4242;
|
||||
private readonly buffers = new Set<string>();
|
||||
private readonly failures: { tmuxCommand: string; error: unknown }[] = [];
|
||||
private readonly liveSessions = new Set<string>();
|
||||
|
||||
async exec(args: readonly string[], options: TmuxDriverExecOptions = {}): Promise<string> {
|
||||
const command: RecordedTmuxCommand = { args: [...args] };
|
||||
if (options.cwd !== undefined) {
|
||||
command.cwd = options.cwd;
|
||||
}
|
||||
if (options.input !== undefined) {
|
||||
command.input = options.input;
|
||||
}
|
||||
this.commands.push(command);
|
||||
|
||||
const [tmuxCommand] = args;
|
||||
const failureIndex = this.failures.findIndex((failure) => failure.tmuxCommand === tmuxCommand);
|
||||
if (failureIndex >= 0) {
|
||||
const [failure] = this.failures.splice(failureIndex, 1);
|
||||
throw failure?.error ?? new Error(`failed ${tmuxCommand}`);
|
||||
}
|
||||
|
||||
if (tmuxCommand === "new-session") {
|
||||
const sessionName = valueAfter(args, "-s");
|
||||
this.liveSessions.add(sessionName);
|
||||
return "";
|
||||
}
|
||||
if (tmuxCommand === "display-message") {
|
||||
return `${this.panePid}\n`;
|
||||
}
|
||||
if (tmuxCommand === "load-buffer") {
|
||||
this.buffers.add(valueAfter(args, "-b"));
|
||||
return "";
|
||||
}
|
||||
if (tmuxCommand === "paste-buffer") {
|
||||
const bufferName = valueAfter(args, "-b");
|
||||
if (!this.buffers.has(bufferName)) {
|
||||
throw new Error(`can't find buffer: ${bufferName}`);
|
||||
}
|
||||
return "";
|
||||
}
|
||||
if (tmuxCommand === "has-session") {
|
||||
const target = valueAfter(args, "-t");
|
||||
if (!this.liveSessions.has(sessionNameFromTarget(target))) {
|
||||
throw new Error(`missing tmux session ${target}`);
|
||||
}
|
||||
return "";
|
||||
}
|
||||
if (tmuxCommand === "capture-pane") {
|
||||
return this.captureOutput;
|
||||
}
|
||||
if (tmuxCommand === "respawn-pane") {
|
||||
this.panePid += 1;
|
||||
return "";
|
||||
}
|
||||
if (tmuxCommand === "kill-session") {
|
||||
const target = valueAfter(args, "-t");
|
||||
this.liveSessions.delete(sessionNameFromTarget(target));
|
||||
return "";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
commandCount(tmuxCommand: string): number {
|
||||
return this.commands.filter((command) => command.args[0] === tmuxCommand).length;
|
||||
}
|
||||
|
||||
failNext(tmuxCommand: string, error: unknown): void {
|
||||
this.failures.push({ tmuxCommand, error });
|
||||
}
|
||||
|
||||
deleteBuffer(bufferName: string): void {
|
||||
this.buffers.delete(bufferName);
|
||||
}
|
||||
|
||||
clearCommands(): void {
|
||||
this.commands.length = 0;
|
||||
}
|
||||
}
|
||||
|
||||
describe("TmuxSessionAdapter", () => {
|
||||
const tempRoots: string[] = [];
|
||||
|
||||
afterEach(() => {
|
||||
for (const root of tempRoots.splice(0)) {
|
||||
rmSync(root, { recursive: true, force: true });
|
||||
}
|
||||
});
|
||||
|
||||
it("starts a detached tmux session with a shell-quoted backend command and bootstrap prelude", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-start-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex", "--model", "gpt 5"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
});
|
||||
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
envelopePrelude: "Follow the Devflow protocol",
|
||||
});
|
||||
|
||||
expect(handle).toEqual({
|
||||
sessionId,
|
||||
pid: 4242,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
});
|
||||
expect(driver.commands[0]).toEqual({
|
||||
args: [
|
||||
"new-session",
|
||||
"-d",
|
||||
"-s",
|
||||
"devflow-test-session",
|
||||
"-n",
|
||||
"implementer",
|
||||
"-c",
|
||||
cwd,
|
||||
"'codex' '--model' 'gpt 5'",
|
||||
],
|
||||
cwd,
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["load-buffer", "-b", "devflow-prelude-00000000", "-"],
|
||||
input: "Follow the Devflow protocol",
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: [
|
||||
"paste-buffer",
|
||||
"-b",
|
||||
"devflow-prelude-00000000",
|
||||
"-t",
|
||||
"devflow-test-session:implementer",
|
||||
],
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["send-keys", "-t", "devflow-test-session:implementer", "Enter"],
|
||||
});
|
||||
});
|
||||
|
||||
it("sends rendered prompt envelopes by paste-buffer and treats duplicate dedup keys as idempotent", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-prompt-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["claude"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "planner",
|
||||
});
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "planner",
|
||||
backend: "claude",
|
||||
cwd,
|
||||
});
|
||||
const prompt = envelope({ roleId: "planner" });
|
||||
|
||||
await expect(adapter.sendPrompt(handle, prompt)).resolves.toEqual({ promptId: dedupKey });
|
||||
await expect(
|
||||
adapter.sendPrompt(handle, {
|
||||
...prompt,
|
||||
uuid: "00000000-0000-4000-8000-000000000099",
|
||||
}),
|
||||
).resolves.toEqual({ promptId: dedupKey });
|
||||
|
||||
expect(driver.commandCount("load-buffer")).toBe(1);
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["load-buffer", "-b", `devflow-prompt-${dedupKey.slice(0, 12)}`, "-"],
|
||||
input: renderPromptEnvelope(prompt),
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: [
|
||||
"paste-buffer",
|
||||
"-b",
|
||||
`devflow-prompt-${dedupKey.slice(0, 12)}`,
|
||||
"-t",
|
||||
"devflow-test-session:planner",
|
||||
],
|
||||
});
|
||||
|
||||
const pasteFailurePrompt = envelope({
|
||||
roleId: "planner",
|
||||
dedupKey: "c".repeat(64),
|
||||
});
|
||||
driver.failNext("paste-buffer", new Error("paste failed before delivery"));
|
||||
await expect(adapter.sendPrompt(handle, pasteFailurePrompt)).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
code: "prompt_send_transient",
|
||||
});
|
||||
const pasteCountAfterPasteFailure = driver.commandCount("paste-buffer");
|
||||
await expect(adapter.sendPrompt(handle, pasteFailurePrompt)).resolves.toEqual({
|
||||
promptId: "c".repeat(64),
|
||||
});
|
||||
expect(driver.commandCount("paste-buffer")).toBe(pasteCountAfterPasteFailure + 1);
|
||||
|
||||
const partialFailurePrompt = envelope({
|
||||
roleId: "planner",
|
||||
dedupKey: "b".repeat(64),
|
||||
});
|
||||
driver.failNext("send-keys", new Error("send-keys lost acknowledgement"));
|
||||
await expect(adapter.sendPrompt(handle, partialFailurePrompt)).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
code: "prompt_send_transient",
|
||||
});
|
||||
const pasteCountAfterPartialFailure = driver.commandCount("paste-buffer");
|
||||
const enterCountAfterPartialFailure = driver.commandCount("send-keys");
|
||||
await expect(adapter.sendPrompt(handle, partialFailurePrompt)).resolves.toEqual({
|
||||
promptId: "b".repeat(64),
|
||||
});
|
||||
expect(driver.commandCount("paste-buffer")).toBe(pasteCountAfterPartialFailure);
|
||||
expect(driver.commandCount("send-keys")).toBe(enterCountAfterPartialFailure + 1);
|
||||
});
|
||||
|
||||
it("does not re-paste after an uncertain paste-buffer timeout", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-uncertain-paste-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["claude"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "planner",
|
||||
});
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "planner",
|
||||
backend: "claude",
|
||||
cwd,
|
||||
});
|
||||
const prompt = envelope({
|
||||
roleId: "planner",
|
||||
dedupKey: "f".repeat(64),
|
||||
});
|
||||
driver.failNext(
|
||||
"paste-buffer",
|
||||
new TmuxCommandError("paste timed out", {
|
||||
args: ["paste-buffer"],
|
||||
reason: "timeout",
|
||||
}),
|
||||
);
|
||||
|
||||
await expect(adapter.sendPrompt(handle, prompt)).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
code: "prompt_send_transient",
|
||||
});
|
||||
const pasteCountAfterTimeout = driver.commandCount("paste-buffer");
|
||||
const enterCountAfterTimeout = driver.commandCount("send-keys");
|
||||
|
||||
await expect(adapter.sendPrompt(handle, prompt)).resolves.toEqual({
|
||||
promptId: "f".repeat(64),
|
||||
});
|
||||
expect(driver.commandCount("paste-buffer")).toBe(pasteCountAfterTimeout);
|
||||
expect(driver.commandCount("send-keys")).toBe(enterCountAfterTimeout + 1);
|
||||
});
|
||||
|
||||
it("re-pastes a partially delivered prompt after rebootstrap", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-rebootstrap-prompt-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["claude"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "planner",
|
||||
});
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "planner",
|
||||
backend: "claude",
|
||||
cwd,
|
||||
});
|
||||
const prompt = envelope({
|
||||
roleId: "planner",
|
||||
dedupKey: "d".repeat(64),
|
||||
});
|
||||
driver.failNext("send-keys", new Error("send-keys lost acknowledgement"));
|
||||
await expect(adapter.sendPrompt(handle, prompt)).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
code: "prompt_send_transient",
|
||||
});
|
||||
|
||||
await adapter.rebootstrap(handle);
|
||||
driver.clearCommands();
|
||||
|
||||
await expect(adapter.sendPrompt(handle, prompt)).resolves.toEqual({
|
||||
promptId: "d".repeat(64),
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["load-buffer", "-b", "devflow-prompt-dddddddddddd", "-"],
|
||||
input: renderPromptEnvelope(prompt),
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: [
|
||||
"paste-buffer",
|
||||
"-b",
|
||||
"devflow-prompt-dddddddddddd",
|
||||
"-t",
|
||||
"devflow-test-session:planner",
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it("treats a previously delivered prompt as idempotent after rebootstrap", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-rebootstrap-sent-prompt-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["claude"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "planner",
|
||||
});
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "planner",
|
||||
backend: "claude",
|
||||
cwd,
|
||||
});
|
||||
const prompt = envelope({
|
||||
roleId: "planner",
|
||||
dedupKey: "e".repeat(64),
|
||||
});
|
||||
await adapter.sendPrompt(handle, prompt);
|
||||
|
||||
await adapter.rebootstrap(handle);
|
||||
driver.clearCommands();
|
||||
|
||||
await expect(adapter.sendPrompt(handle, prompt)).resolves.toEqual({
|
||||
promptId: "e".repeat(64),
|
||||
});
|
||||
expect(driver.commands).toEqual([]);
|
||||
});
|
||||
|
||||
it("does not treat a recovered last prompt hash as durable prompt delivery proof", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-resume-not-dedup-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["claude"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "planner",
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "planner",
|
||||
backend: "claude",
|
||||
cwd,
|
||||
});
|
||||
const prompt = envelope({ roleId: "planner" });
|
||||
await starter.sendPrompt(
|
||||
{
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "planner",
|
||||
},
|
||||
prompt,
|
||||
);
|
||||
|
||||
const adapter = new TmuxSessionAdapter({ driver });
|
||||
driver.clearCommands();
|
||||
const resumed = await adapter.resume({
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "planner",
|
||||
});
|
||||
await expect(adapter.sendPrompt(resumed, prompt)).resolves.toEqual({
|
||||
promptId: dedupKey,
|
||||
});
|
||||
expect(driver.commandCount("load-buffer")).toBe(1);
|
||||
});
|
||||
|
||||
it("replays a preserved prelude buffer after resume and rebootstrap", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-resume-prelude-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
envelopePrelude: "Follow the Devflow protocol",
|
||||
});
|
||||
|
||||
const adapter = new TmuxSessionAdapter({ driver });
|
||||
const resumed = await adapter.resume({
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
});
|
||||
driver.clearCommands();
|
||||
|
||||
await expect(adapter.rebootstrap(resumed)).resolves.toMatchObject({
|
||||
sessionId,
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: [
|
||||
"paste-buffer",
|
||||
"-b",
|
||||
"devflow-prelude-00000000",
|
||||
"-t",
|
||||
"devflow-test-session:implementer",
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it("fails closed when a recovered real-backend session cannot replay its prelude", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-missing-recovered-prelude-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
envelopePrelude: "Follow the Devflow protocol",
|
||||
});
|
||||
|
||||
const adapter = new TmuxSessionAdapter({ driver });
|
||||
const resumed = await adapter.resume({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
requirePreludeReplay: true,
|
||||
});
|
||||
driver.deleteBuffer("devflow-prelude-00000000");
|
||||
|
||||
await expect(adapter.rebootstrap(resumed)).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
code: "pane_briefly_unresponsive",
|
||||
});
|
||||
});
|
||||
|
||||
it("uses recovered transcript baseline to continue capture after resume", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-resume-transcript-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
});
|
||||
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
driver.captureOutput = "first line\nsecond line\nthird line\n";
|
||||
const resumed = await adapter.resume({
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
transcriptBaseline: {
|
||||
startSeq: 1n,
|
||||
lines: ["first line", "second line"],
|
||||
},
|
||||
});
|
||||
|
||||
await expect(collect(adapter.capture(resumed, 2n))).resolves.toEqual([
|
||||
{
|
||||
seq: 3n,
|
||||
content: "third line",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
]);
|
||||
|
||||
driver.captureOutput = "rolled first line\nchanged second line\nchanged third line\n";
|
||||
await expect(collect(adapter.capture(resumed, 2n))).rejects.toMatchObject({
|
||||
class: "human_required",
|
||||
code: "transcript_history_unavailable",
|
||||
});
|
||||
});
|
||||
|
||||
it("uses a transcript baseline passed directly to capture", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-direct-baseline-transcript-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
});
|
||||
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
driver.captureOutput = "first line\nsecond line\nthird line\n";
|
||||
|
||||
await expect(
|
||||
collect(
|
||||
adapter.capture(
|
||||
{
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
transcriptBaseline: {
|
||||
startSeq: 1n,
|
||||
lines: ["first line", "second line"],
|
||||
},
|
||||
},
|
||||
2n,
|
||||
),
|
||||
),
|
||||
).resolves.toEqual([
|
||||
{
|
||||
seq: 3n,
|
||||
content: "third line",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
it("continues capture from a retained suffix when tmux history partially rolled", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-rolled-suffix-transcript-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
});
|
||||
|
||||
const baselineLines = Array.from({ length: 200 }, (_, index) => `line ${801 + index}`);
|
||||
const retainedHistory = Array.from({ length: 105 }, (_, index) => `line ${901 + index}`);
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
driver.captureOutput = `${retainedHistory.join("\n")}\n`;
|
||||
const resumed = await adapter.resume({
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
transcriptBaseline: {
|
||||
startSeq: 801n,
|
||||
lines: baselineLines,
|
||||
},
|
||||
});
|
||||
|
||||
await expect(collect(adapter.capture(resumed, 1000n))).resolves.toEqual([
|
||||
{
|
||||
seq: 1001n,
|
||||
content: "line 1001",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
{
|
||||
seq: 1002n,
|
||||
content: "line 1002",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
{
|
||||
seq: 1003n,
|
||||
content: "line 1003",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
{
|
||||
seq: 1004n,
|
||||
content: "line 1004",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
{
|
||||
seq: 1005n,
|
||||
content: "line 1005",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
it("fails closed when a recovered transcript baseline matches multiple history positions", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-ambiguous-transcript-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const starter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
});
|
||||
await starter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
});
|
||||
|
||||
const adapter = new TmuxSessionAdapter({ driver });
|
||||
driver.captureOutput = "A\nB\nA\nB\nC\n";
|
||||
const resumed = await adapter.resume({
|
||||
sessionId,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
transcriptBaseline: {
|
||||
startSeq: 3n,
|
||||
lines: ["A", "B"],
|
||||
},
|
||||
});
|
||||
|
||||
await expect(collect(adapter.capture(resumed, 4n))).rejects.toMatchObject({
|
||||
class: "human_required",
|
||||
code: "transcript_history_unavailable",
|
||||
});
|
||||
});
|
||||
|
||||
it("probes, resumes, rebootstraps, captures transcript lines, and disposes tmux sessions", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-lifecycle-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
now: () => new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
envelopePrelude: "Follow the Devflow protocol",
|
||||
});
|
||||
|
||||
await expect(adapter.probe(handle)).resolves.toEqual({
|
||||
alive: true,
|
||||
hint: "tmux_liveness_only",
|
||||
paneActive: true,
|
||||
lastOutputAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
});
|
||||
await expect(adapter.resume(handle)).resolves.toMatchObject({
|
||||
sessionId,
|
||||
pid: 4242,
|
||||
tmuxSession: "devflow-test-session",
|
||||
tmuxWindow: "implementer",
|
||||
});
|
||||
driver.clearCommands();
|
||||
await expect(adapter.rebootstrap(handle)).resolves.toMatchObject({
|
||||
sessionId,
|
||||
pid: 4243,
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["load-buffer", "-b", "devflow-prelude-00000000", "-"],
|
||||
input: "Follow the Devflow protocol",
|
||||
});
|
||||
|
||||
const chunks = await collect(adapter.capture(handle, 0n));
|
||||
expect(chunks).toEqual([
|
||||
{
|
||||
seq: 1n,
|
||||
content: "first line",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
{
|
||||
seq: 2n,
|
||||
content: "second line",
|
||||
capturedAt: new Date("2026-05-13T00:00:00.000Z"),
|
||||
},
|
||||
]);
|
||||
await expect(collect(adapter.capture(handle, 2n))).resolves.toEqual([]);
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["capture-pane", "-p", "-t", "devflow-test-session:implementer", "-S", "-"],
|
||||
});
|
||||
driver.captureOutput = "only current line\n";
|
||||
await expect(collect(adapter.capture(handle, 2n))).rejects.toMatchObject({
|
||||
class: "human_required",
|
||||
code: "transcript_history_unavailable",
|
||||
});
|
||||
driver.captureOutput = "rolled first line\nchanged second line\n";
|
||||
await expect(collect(adapter.capture(handle, 1n))).rejects.toMatchObject({
|
||||
class: "human_required",
|
||||
code: "transcript_history_unavailable",
|
||||
});
|
||||
|
||||
await adapter.dispose(handle);
|
||||
await expect(adapter.probe(handle)).resolves.toMatchObject({
|
||||
alive: false,
|
||||
paneActive: false,
|
||||
});
|
||||
});
|
||||
|
||||
it("cleans up a tmux session when bootstrap fails after new-session", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-start-cleanup-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
driver.failNext("display-message", new Error("pid unavailable"));
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
});
|
||||
|
||||
await expect(
|
||||
adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
}),
|
||||
).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
});
|
||||
expect(driver.commands).toContainEqual({
|
||||
args: ["kill-session", "-t", "devflow-test-session"],
|
||||
});
|
||||
|
||||
driver.failNext("display-message", new Error("pid unavailable"));
|
||||
driver.failNext("kill-session", new Error("permission denied"));
|
||||
await expect(
|
||||
adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
}),
|
||||
).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
recoveryHint: "permission denied",
|
||||
});
|
||||
});
|
||||
|
||||
it("only ignores dispose failures when the tmux session is already gone", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-dispose-"));
|
||||
tempRoots.push(cwd);
|
||||
const driver = new RecordingTmuxDriver();
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver,
|
||||
commandForBackend: () => ["codex"],
|
||||
sessionNameFactory: () => "devflow-test-session",
|
||||
windowNameFactory: () => "implementer",
|
||||
});
|
||||
const handle = await adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
});
|
||||
|
||||
driver.failNext("kill-session", new Error("permission denied"));
|
||||
await expect(adapter.dispose(handle)).rejects.toMatchObject({
|
||||
class: "recoverable",
|
||||
code: "pane_briefly_unresponsive",
|
||||
});
|
||||
|
||||
driver.failNext("kill-session", new Error("missing tmux session devflow-test-session"));
|
||||
await expect(adapter.dispose(handle)).resolves.toBeUndefined();
|
||||
});
|
||||
|
||||
it("classifies missing backend commands as human-required backend_unavailable", async () => {
|
||||
const cwd = mkdtempSync(join(tmpdir(), "devflow-tmux-unavailable-"));
|
||||
tempRoots.push(cwd);
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver: new RecordingTmuxDriver(),
|
||||
commandForBackend: () => undefined,
|
||||
});
|
||||
|
||||
await expect(
|
||||
adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd,
|
||||
}),
|
||||
).rejects.toMatchObject({
|
||||
class: "human_required",
|
||||
code: "backend_unavailable",
|
||||
});
|
||||
});
|
||||
|
||||
it("classifies missing session cwd as fatal workspace_permissions", async () => {
|
||||
const adapter = new TmuxSessionAdapter({
|
||||
driver: new RecordingTmuxDriver(),
|
||||
commandForBackend: () => ["codex"],
|
||||
});
|
||||
|
||||
await expect(
|
||||
adapter.start({
|
||||
sessionId,
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
backend: "codex",
|
||||
cwd: join(tmpdir(), `devflow-missing-cwd-${sessionId}`),
|
||||
}),
|
||||
).rejects.toMatchObject({
|
||||
class: "fatal",
|
||||
code: "workspace_permissions",
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function envelope(overrides: Partial<PromptEnvelope> = {}): PromptEnvelope {
|
||||
return {
|
||||
uuid: "00000000-0000-4000-8000-000000000010",
|
||||
runId,
|
||||
roleId: "implementer",
|
||||
phaseKey: "implement",
|
||||
attempt: 0,
|
||||
expectedArtifact: "/tmp/devflow-artifact.json",
|
||||
expectedSchema: "dev/spec@1",
|
||||
dedupKey,
|
||||
instructions: "Build the artifact",
|
||||
...overrides,
|
||||
};
|
||||
}
|
||||
|
||||
async function collect<T>(iterable: AsyncIterable<T>): Promise<T[]> {
|
||||
const items: T[] = [];
|
||||
for await (const item of iterable) {
|
||||
items.push(item);
|
||||
}
|
||||
return items;
|
||||
}
|
||||
|
||||
function valueAfter(values: readonly string[], flag: string): string {
|
||||
const index = values.indexOf(flag);
|
||||
const value = values[index + 1];
|
||||
if (index < 0 || value === undefined) {
|
||||
throw new DevflowError(`Missing tmux flag ${flag}`, {
|
||||
class: "fatal",
|
||||
code: "test_driver_missing_flag",
|
||||
});
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
function sessionNameFromTarget(target: string): string {
|
||||
return target.split(":")[0] ?? target;
|
||||
}
|
||||
857
packages/session/src/tmux.ts
Normal file
857
packages/session/src/tmux.ts
Normal file
@@ -0,0 +1,857 @@
|
||||
import { spawn } from "node:child_process";
|
||||
import { randomUUID } from "node:crypto";
|
||||
import { existsSync } from "node:fs";
|
||||
|
||||
import { DevflowError, type PromptEnvelope, renderPromptEnvelope } from "@devflow/core";
|
||||
|
||||
import type {
|
||||
ProbeResult,
|
||||
SessionAdapter,
|
||||
SessionHandle,
|
||||
StartInput,
|
||||
TranscriptChunk,
|
||||
} from "./adapter.js";
|
||||
|
||||
export interface TmuxDriverExecOptions {
|
||||
cwd?: string;
|
||||
input?: string;
|
||||
timeoutMs?: number;
|
||||
}
|
||||
|
||||
export interface TmuxDriver {
|
||||
exec(args: readonly string[], options?: TmuxDriverExecOptions): Promise<string>;
|
||||
}
|
||||
|
||||
export interface ChildProcessTmuxDriverOptions {
|
||||
binaryPath?: string;
|
||||
timeoutMs?: number;
|
||||
}
|
||||
|
||||
export class TmuxCommandError extends Error {
|
||||
readonly args: readonly string[];
|
||||
readonly stderr: string | undefined;
|
||||
readonly exitCode: number | undefined;
|
||||
readonly reason: "exit_nonzero" | "spawn_failed" | "timeout";
|
||||
|
||||
constructor(
|
||||
message: string,
|
||||
options: {
|
||||
args: readonly string[];
|
||||
reason: "exit_nonzero" | "spawn_failed" | "timeout";
|
||||
stderr?: string;
|
||||
exitCode?: number;
|
||||
cause?: unknown;
|
||||
},
|
||||
) {
|
||||
super(message, { cause: options.cause });
|
||||
this.name = "TmuxCommandError";
|
||||
this.args = options.args;
|
||||
this.reason = options.reason;
|
||||
this.stderr = options.stderr;
|
||||
this.exitCode = options.exitCode;
|
||||
}
|
||||
}
|
||||
|
||||
export class ChildProcessTmuxDriver implements TmuxDriver {
|
||||
private readonly binaryPath: string;
|
||||
private readonly timeoutMs: number;
|
||||
|
||||
constructor(options: ChildProcessTmuxDriverOptions = {}) {
|
||||
this.binaryPath = options.binaryPath ?? "tmux";
|
||||
this.timeoutMs = options.timeoutMs ?? 10_000;
|
||||
}
|
||||
|
||||
exec(args: readonly string[], options: TmuxDriverExecOptions = {}): Promise<string> {
|
||||
return new Promise((resolve, reject) => {
|
||||
const child = spawn(this.binaryPath, [...args], {
|
||||
cwd: options.cwd,
|
||||
stdio: ["pipe", "pipe", "pipe"],
|
||||
});
|
||||
let stdout = "";
|
||||
let stderr = "";
|
||||
let settled = false;
|
||||
const timeoutMs = options.timeoutMs ?? this.timeoutMs;
|
||||
const timer = setTimeout(() => {
|
||||
if (settled) {
|
||||
return;
|
||||
}
|
||||
settled = true;
|
||||
child.kill("SIGKILL");
|
||||
reject(
|
||||
new TmuxCommandError(`tmux command timed out: ${args.join(" ")}`, {
|
||||
args,
|
||||
reason: "timeout",
|
||||
stderr,
|
||||
}),
|
||||
);
|
||||
}, timeoutMs);
|
||||
|
||||
child.stdout.setEncoding("utf8");
|
||||
child.stderr.setEncoding("utf8");
|
||||
child.stdout.on("data", (chunk: string) => {
|
||||
stdout += chunk;
|
||||
});
|
||||
child.stderr.on("data", (chunk: string) => {
|
||||
stderr += chunk;
|
||||
});
|
||||
child.on("error", (cause) => {
|
||||
if (settled) {
|
||||
return;
|
||||
}
|
||||
settled = true;
|
||||
clearTimeout(timer);
|
||||
reject(
|
||||
new TmuxCommandError(`failed to spawn tmux: ${this.binaryPath}`, {
|
||||
args,
|
||||
reason: "spawn_failed",
|
||||
cause,
|
||||
}),
|
||||
);
|
||||
});
|
||||
child.on("close", (exitCode) => {
|
||||
if (settled) {
|
||||
return;
|
||||
}
|
||||
settled = true;
|
||||
clearTimeout(timer);
|
||||
if (exitCode === 0) {
|
||||
resolve(stdout);
|
||||
return;
|
||||
}
|
||||
reject(
|
||||
new TmuxCommandError(`tmux command failed: ${args.join(" ")}`, {
|
||||
args,
|
||||
reason: "exit_nonzero",
|
||||
stderr,
|
||||
...(exitCode === null ? {} : { exitCode }),
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
if (options.input !== undefined) {
|
||||
child.stdin.end(options.input);
|
||||
} else {
|
||||
child.stdin.end();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export interface TmuxSessionAdapterOptions {
|
||||
driver?: TmuxDriver;
|
||||
sessionIdFactory?: () => string;
|
||||
sessionNameFactory?: (input: StartInput & { sessionId: string }) => string;
|
||||
windowNameFactory?: (input: StartInput & { sessionId: string }) => string;
|
||||
commandForBackend?: (input: StartInput) => readonly string[] | undefined;
|
||||
now?: () => Date;
|
||||
}
|
||||
|
||||
interface TmuxSessionRecord {
|
||||
handle: SessionHandle;
|
||||
pastedDedupKeys: Set<string>;
|
||||
sentDedupKeys: Set<string>;
|
||||
runId?: string;
|
||||
roleId?: string;
|
||||
envelopePrelude?: string;
|
||||
requirePreludeReplay: boolean;
|
||||
transcriptAnchor: TranscriptAnchor | undefined;
|
||||
lastOutputAt?: Date;
|
||||
disposed: boolean;
|
||||
}
|
||||
|
||||
interface TranscriptAnchor {
|
||||
startSeq: bigint;
|
||||
lines: string[];
|
||||
}
|
||||
|
||||
export class TmuxSessionAdapter implements SessionAdapter {
|
||||
private readonly driver: TmuxDriver;
|
||||
private readonly sessionIdFactory: () => string;
|
||||
private readonly sessionNameFactory: (input: StartInput & { sessionId: string }) => string;
|
||||
private readonly windowNameFactory: (input: StartInput & { sessionId: string }) => string;
|
||||
private readonly commandForBackend: (input: StartInput) => readonly string[] | undefined;
|
||||
private readonly now: () => Date;
|
||||
private readonly records = new Map<string, TmuxSessionRecord>();
|
||||
|
||||
constructor(options: TmuxSessionAdapterOptions = {}) {
|
||||
this.driver = options.driver ?? new ChildProcessTmuxDriver();
|
||||
this.sessionIdFactory = options.sessionIdFactory ?? randomUUID;
|
||||
this.sessionNameFactory =
|
||||
options.sessionNameFactory ??
|
||||
((input) => `devflow_${compactIdentifier(input.sessionId).slice(0, 32)}`);
|
||||
this.windowNameFactory = options.windowNameFactory ?? ((input) => input.roleId);
|
||||
this.commandForBackend = options.commandForBackend ?? defaultCommandForBackend;
|
||||
this.now = options.now ?? (() => new Date());
|
||||
}
|
||||
|
||||
async start(input: StartInput): Promise<SessionHandle> {
|
||||
if (!existsSync(input.cwd)) {
|
||||
throw new DevflowError(`Session cwd does not exist: ${input.cwd}`, {
|
||||
class: "fatal",
|
||||
code: "workspace_permissions",
|
||||
runId: input.runId,
|
||||
});
|
||||
}
|
||||
const command = this.commandForBackend(input);
|
||||
if (command === undefined || command.length === 0) {
|
||||
throw new DevflowError(`No tmux backend command registered for ${input.backend}`, {
|
||||
class: "human_required",
|
||||
code: "backend_unavailable",
|
||||
runId: input.runId,
|
||||
});
|
||||
}
|
||||
|
||||
const sessionId = input.sessionId ?? this.sessionIdFactory();
|
||||
const factoryInput = { ...input, sessionId };
|
||||
const tmuxSession = sanitizeTmuxName(this.sessionNameFactory(factoryInput), "session");
|
||||
const tmuxWindow = sanitizeTmuxName(this.windowNameFactory(factoryInput), "main");
|
||||
const handle: SessionHandle = { sessionId, tmuxSession, tmuxWindow };
|
||||
let sessionCreated = false;
|
||||
|
||||
try {
|
||||
await this.runTmux(
|
||||
[
|
||||
"new-session",
|
||||
"-d",
|
||||
"-s",
|
||||
tmuxSession,
|
||||
"-n",
|
||||
tmuxWindow,
|
||||
"-c",
|
||||
input.cwd,
|
||||
shellJoin(command),
|
||||
],
|
||||
{ cwd: input.cwd },
|
||||
input.runId,
|
||||
);
|
||||
sessionCreated = true;
|
||||
|
||||
const record: TmuxSessionRecord = {
|
||||
handle,
|
||||
pastedDedupKeys: new Set(),
|
||||
sentDedupKeys: new Set(),
|
||||
runId: input.runId,
|
||||
roleId: input.roleId,
|
||||
...(input.envelopePrelude === undefined ? {} : { envelopePrelude: input.envelopePrelude }),
|
||||
requirePreludeReplay:
|
||||
input.envelopePrelude !== undefined && input.envelopePrelude.length > 0,
|
||||
transcriptAnchor: undefined,
|
||||
lastOutputAt: this.now(),
|
||||
disposed: false,
|
||||
};
|
||||
this.records.set(sessionId, record);
|
||||
|
||||
if (input.envelopePrelude !== undefined && input.envelopePrelude.length > 0) {
|
||||
await this.pasteText(
|
||||
handle,
|
||||
preludeBufferName(sessionId),
|
||||
input.envelopePrelude,
|
||||
input.runId,
|
||||
);
|
||||
}
|
||||
|
||||
const pid = await this.readPanePid(handle, input.runId);
|
||||
const handleWithPid = { ...handle, pid };
|
||||
record.handle = handleWithPid;
|
||||
return handleWithPid;
|
||||
} catch (error) {
|
||||
this.records.delete(sessionId);
|
||||
if (sessionCreated) {
|
||||
await this.killSession(handle, { ignoreMissing: true });
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
async sendPrompt(handle: SessionHandle, envelope: PromptEnvelope): Promise<{ promptId: string }> {
|
||||
const record = this.recordFor(handle);
|
||||
if (record.runId !== undefined && envelope.runId !== record.runId) {
|
||||
throw new DevflowError("Prompt does not match tmux session run", {
|
||||
class: "fatal",
|
||||
code: "prompt_session_mismatch",
|
||||
runId: envelope.runId,
|
||||
});
|
||||
}
|
||||
if (record.roleId !== undefined && envelope.roleId !== record.roleId) {
|
||||
throw new DevflowError("Prompt does not match tmux session role", {
|
||||
class: "fatal",
|
||||
code: "prompt_session_mismatch",
|
||||
runId: envelope.runId,
|
||||
});
|
||||
}
|
||||
if (record.sentDedupKeys.has(envelope.dedupKey)) {
|
||||
return { promptId: envelope.dedupKey };
|
||||
}
|
||||
|
||||
const bufferName = promptBufferName(envelope.dedupKey);
|
||||
if (!record.pastedDedupKeys.has(envelope.dedupKey)) {
|
||||
await this.loadBuffer(
|
||||
bufferName,
|
||||
renderPromptEnvelope(envelope),
|
||||
envelope.runId,
|
||||
"prompt_send_transient",
|
||||
);
|
||||
try {
|
||||
await this.pasteBuffer(record.handle, bufferName, envelope.runId, "prompt_send_transient");
|
||||
} catch (error) {
|
||||
if (isUncertainPasteFailure(error)) {
|
||||
record.pastedDedupKeys.add(envelope.dedupKey);
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
record.pastedDedupKeys.add(envelope.dedupKey);
|
||||
}
|
||||
await this.sendEnter(record.handle, envelope.runId, "prompt_send_transient");
|
||||
record.sentDedupKeys.add(envelope.dedupKey);
|
||||
record.lastOutputAt = this.now();
|
||||
return { promptId: envelope.dedupKey };
|
||||
}
|
||||
|
||||
async probe(handle: SessionHandle): Promise<ProbeResult> {
|
||||
const probeHandle = this.handleFor(handle);
|
||||
try {
|
||||
await this.driver.exec(["has-session", "-t", tmuxSessionName(probeHandle)]);
|
||||
await this.readPanePid(probeHandle);
|
||||
} catch (error) {
|
||||
return {
|
||||
alive: false,
|
||||
paneActive: false,
|
||||
hint: recoveryHint(error),
|
||||
};
|
||||
}
|
||||
|
||||
const result: ProbeResult = {
|
||||
alive: true,
|
||||
paneActive: true,
|
||||
hint: "tmux_liveness_only",
|
||||
};
|
||||
const lastOutputAt = this.records.get(handle.sessionId)?.lastOutputAt;
|
||||
if (lastOutputAt !== undefined) {
|
||||
return { ...result, lastOutputAt };
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
async resume(handle: SessionHandle): Promise<SessionHandle> {
|
||||
const resumeHandle = this.handleFor(handle);
|
||||
await this.runTmux(["has-session", "-t", tmuxSessionName(resumeHandle)]);
|
||||
const pid = await this.readPanePid(resumeHandle);
|
||||
const resumed: SessionHandle = { ...resumeHandle, pid };
|
||||
const record = this.records.get(handle.sessionId);
|
||||
if (record === undefined) {
|
||||
this.records.set(handle.sessionId, {
|
||||
handle: resumed,
|
||||
pastedDedupKeys: new Set(),
|
||||
sentDedupKeys: new Set(),
|
||||
...(handle.runId === undefined ? {} : { runId: handle.runId }),
|
||||
...(handle.roleId === undefined ? {} : { roleId: handle.roleId }),
|
||||
...(handle.envelopePrelude === undefined
|
||||
? {}
|
||||
: { envelopePrelude: handle.envelopePrelude }),
|
||||
requirePreludeReplay: handle.requirePreludeReplay === true,
|
||||
...(handle.transcriptBaseline === undefined
|
||||
? { transcriptAnchor: undefined }
|
||||
: {
|
||||
transcriptAnchor: {
|
||||
startSeq: handle.transcriptBaseline.startSeq,
|
||||
lines: [...handle.transcriptBaseline.lines],
|
||||
},
|
||||
}),
|
||||
disposed: false,
|
||||
});
|
||||
} else {
|
||||
record.handle = resumed;
|
||||
if (handle.runId !== undefined) {
|
||||
record.runId = handle.runId;
|
||||
}
|
||||
if (handle.roleId !== undefined) {
|
||||
record.roleId = handle.roleId;
|
||||
}
|
||||
if (handle.envelopePrelude !== undefined) {
|
||||
record.envelopePrelude = handle.envelopePrelude;
|
||||
}
|
||||
record.requirePreludeReplay =
|
||||
record.requirePreludeReplay || handle.requirePreludeReplay === true;
|
||||
record.disposed = false;
|
||||
}
|
||||
return resumed;
|
||||
}
|
||||
|
||||
async rebootstrap(handle: SessionHandle): Promise<SessionHandle> {
|
||||
const rebootHandle = this.handleFor(handle);
|
||||
const record = this.recordFor(handle);
|
||||
await this.runTmux(["respawn-pane", "-k", "-t", tmuxTarget(rebootHandle)]);
|
||||
const pid = await this.readPanePid(rebootHandle);
|
||||
const rebootstrapped: SessionHandle = { ...rebootHandle, pid };
|
||||
record.handle = rebootstrapped;
|
||||
record.pastedDedupKeys.clear();
|
||||
if (record.envelopePrelude !== undefined && record.envelopePrelude.length > 0) {
|
||||
await this.pasteText(
|
||||
rebootstrapped,
|
||||
preludeBufferName(rebootstrapped.sessionId),
|
||||
record.envelopePrelude,
|
||||
record.runId,
|
||||
);
|
||||
} else if (record.requirePreludeReplay) {
|
||||
await this.pasteExistingBuffer(rebootstrapped, preludeBufferName(rebootstrapped.sessionId), {
|
||||
ignoreMissing: false,
|
||||
});
|
||||
} else {
|
||||
await this.pasteExistingBuffer(rebootstrapped, preludeBufferName(rebootstrapped.sessionId), {
|
||||
ignoreMissing: true,
|
||||
});
|
||||
}
|
||||
record.lastOutputAt = this.now();
|
||||
record.disposed = false;
|
||||
return rebootstrapped;
|
||||
}
|
||||
|
||||
async *capture(handle: SessionHandle, fromSeq: bigint): AsyncIterable<TranscriptChunk> {
|
||||
if (fromSeq > BigInt(Number.MAX_SAFE_INTEGER)) {
|
||||
throw new DevflowError("Transcript cursor is too large for tmux line capture", {
|
||||
class: "fatal",
|
||||
code: "transcript_sequence_invalid",
|
||||
});
|
||||
}
|
||||
|
||||
const record = this.recordFor(handle);
|
||||
const captureHandle = record.handle;
|
||||
const stdout = await this.runTmux([
|
||||
"capture-pane",
|
||||
"-p",
|
||||
"-t",
|
||||
tmuxTarget(captureHandle),
|
||||
"-S",
|
||||
"-",
|
||||
]);
|
||||
const lines = trimTrailingEmptyLines(stdout.replace(/\r\n/g, "\n").split("\n"));
|
||||
const anchor = record.transcriptAnchor;
|
||||
const firstAvailableSeq = firstAvailableTranscriptSeq(lines, anchor, fromSeq);
|
||||
const lastAvailableSeq = firstAvailableSeq + BigInt(lines.length) - 1n;
|
||||
if (fromSeq > lastAvailableSeq) {
|
||||
throw transcriptHistoryUnavailable("tmux transcript cursor is ahead of available history");
|
||||
}
|
||||
const chunks: TranscriptChunk[] = [];
|
||||
let seq = fromSeq;
|
||||
const startIndex = Number(fromSeq - firstAvailableSeq + 1n);
|
||||
for (const line of lines.slice(startIndex)) {
|
||||
seq += 1n;
|
||||
chunks.push({
|
||||
seq,
|
||||
content: line,
|
||||
capturedAt: this.now(),
|
||||
});
|
||||
}
|
||||
const nextAnchor = tailTranscriptAnchor(firstAvailableSeq, lines);
|
||||
if (nextAnchor === undefined) {
|
||||
record.transcriptAnchor = undefined;
|
||||
} else {
|
||||
record.transcriptAnchor = nextAnchor;
|
||||
}
|
||||
for (const chunk of chunks) {
|
||||
yield chunk;
|
||||
}
|
||||
}
|
||||
|
||||
async dispose(handle: SessionHandle): Promise<void> {
|
||||
const disposeHandle = this.handleFor(handle);
|
||||
await this.killSession(disposeHandle, { ignoreMissing: true });
|
||||
const record = this.records.get(handle.sessionId);
|
||||
if (record !== undefined) {
|
||||
record.disposed = true;
|
||||
}
|
||||
}
|
||||
|
||||
private recordFor(handle: SessionHandle): TmuxSessionRecord {
|
||||
const existing = this.records.get(handle.sessionId);
|
||||
if (existing !== undefined && !existing.disposed) {
|
||||
mergeRecordFromHandle(existing, handle);
|
||||
return existing;
|
||||
}
|
||||
if (existing?.disposed === true) {
|
||||
throw new DevflowError("Tmux session is disposed", {
|
||||
class: "recoverable",
|
||||
code: "pane_briefly_unresponsive",
|
||||
});
|
||||
}
|
||||
const resolvedHandle = this.handleFor(handle);
|
||||
const record: TmuxSessionRecord = {
|
||||
handle: resolvedHandle,
|
||||
pastedDedupKeys: new Set(),
|
||||
sentDedupKeys: new Set(),
|
||||
...(handle.runId === undefined ? {} : { runId: handle.runId }),
|
||||
...(handle.roleId === undefined ? {} : { roleId: handle.roleId }),
|
||||
...(handle.envelopePrelude === undefined ? {} : { envelopePrelude: handle.envelopePrelude }),
|
||||
requirePreludeReplay: handle.requirePreludeReplay === true,
|
||||
transcriptAnchor:
|
||||
handle.transcriptBaseline === undefined
|
||||
? undefined
|
||||
: {
|
||||
startSeq: handle.transcriptBaseline.startSeq,
|
||||
lines: [...handle.transcriptBaseline.lines],
|
||||
},
|
||||
disposed: false,
|
||||
};
|
||||
this.records.set(handle.sessionId, record);
|
||||
return record;
|
||||
}
|
||||
|
||||
private handleFor(handle: SessionHandle): SessionHandle {
|
||||
const record = this.records.get(handle.sessionId);
|
||||
if (record !== undefined) {
|
||||
mergeRecordFromHandle(record, handle);
|
||||
}
|
||||
const existing = record?.handle ?? handle;
|
||||
const tmuxSession = existing.tmuxSession ?? defaultSessionName(existing.sessionId);
|
||||
return {
|
||||
...existing,
|
||||
tmuxSession,
|
||||
};
|
||||
}
|
||||
|
||||
private async pasteText(
|
||||
handle: SessionHandle,
|
||||
bufferName: string,
|
||||
text: string,
|
||||
runId?: string,
|
||||
): Promise<void> {
|
||||
await this.loadBuffer(bufferName, text, runId);
|
||||
await this.pasteBuffer(handle, bufferName, runId);
|
||||
await this.sendEnter(handle, runId);
|
||||
}
|
||||
|
||||
private async loadBuffer(
|
||||
bufferName: string,
|
||||
text: string,
|
||||
runId?: string,
|
||||
recoverableCode = "pane_briefly_unresponsive",
|
||||
): Promise<void> {
|
||||
await this.runTmux(
|
||||
["load-buffer", "-b", bufferName, "-"],
|
||||
{ input: text },
|
||||
runId,
|
||||
recoverableCode,
|
||||
);
|
||||
}
|
||||
|
||||
private async pasteBuffer(
|
||||
handle: SessionHandle,
|
||||
bufferName: string,
|
||||
runId?: string,
|
||||
recoverableCode = "pane_briefly_unresponsive",
|
||||
): Promise<void> {
|
||||
await this.runTmux(
|
||||
["paste-buffer", "-b", bufferName, "-t", tmuxTarget(handle)],
|
||||
undefined,
|
||||
runId,
|
||||
recoverableCode,
|
||||
);
|
||||
}
|
||||
|
||||
private async sendEnter(
|
||||
handle: SessionHandle,
|
||||
runId?: string,
|
||||
recoverableCode = "pane_briefly_unresponsive",
|
||||
): Promise<void> {
|
||||
await this.runTmux(
|
||||
["send-keys", "-t", tmuxTarget(handle), "Enter"],
|
||||
undefined,
|
||||
runId,
|
||||
recoverableCode,
|
||||
);
|
||||
}
|
||||
|
||||
private async pasteExistingBuffer(
|
||||
handle: SessionHandle,
|
||||
bufferName: string,
|
||||
options: { ignoreMissing: boolean },
|
||||
): Promise<void> {
|
||||
try {
|
||||
await this.pasteBuffer(handle, bufferName);
|
||||
await this.sendEnter(handle);
|
||||
} catch (error) {
|
||||
if (options.ignoreMissing && isMissingBufferFailure(error)) {
|
||||
return;
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
private async readPanePid(handle: SessionHandle, runId?: string): Promise<number> {
|
||||
const stdout = await this.runTmux(
|
||||
["display-message", "-p", "-t", tmuxTarget(handle), "#{pane_pid}"],
|
||||
undefined,
|
||||
runId,
|
||||
);
|
||||
const pid = Number.parseInt(stdout.trim(), 10);
|
||||
if (!Number.isInteger(pid) || pid <= 0) {
|
||||
throw new DevflowError(`Unable to parse tmux pane pid from ${JSON.stringify(stdout)}`, {
|
||||
class: "recoverable",
|
||||
code: "pane_briefly_unresponsive",
|
||||
...(runId === undefined ? {} : { runId }),
|
||||
});
|
||||
}
|
||||
return pid;
|
||||
}
|
||||
|
||||
private async runTmux(
|
||||
args: readonly string[],
|
||||
options?: TmuxDriverExecOptions,
|
||||
runId?: string,
|
||||
recoverableCode = "pane_briefly_unresponsive",
|
||||
): Promise<string> {
|
||||
try {
|
||||
return await this.driver.exec(args, options);
|
||||
} catch (cause) {
|
||||
throw classifyTmuxFailure(cause, runId, recoverableCode);
|
||||
}
|
||||
}
|
||||
|
||||
private async killSession(
|
||||
handle: SessionHandle,
|
||||
options: { ignoreMissing: boolean },
|
||||
): Promise<void> {
|
||||
try {
|
||||
await this.driver.exec(["kill-session", "-t", tmuxSessionName(handle)]);
|
||||
} catch (cause) {
|
||||
if (options.ignoreMissing && isMissingSessionFailure(cause)) {
|
||||
return;
|
||||
}
|
||||
throw classifyTmuxFailure(cause);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function defaultCommandForBackend(input: StartInput): readonly string[] | undefined {
|
||||
if (input.backend === "fake") {
|
||||
return undefined;
|
||||
}
|
||||
return [input.backend];
|
||||
}
|
||||
|
||||
function mergeRecordFromHandle(record: TmuxSessionRecord, handle: SessionHandle): void {
|
||||
record.handle = mergeSessionHandles(record.handle, handle);
|
||||
if (handle.runId !== undefined) {
|
||||
record.runId = handle.runId;
|
||||
}
|
||||
if (handle.roleId !== undefined) {
|
||||
record.roleId = handle.roleId;
|
||||
}
|
||||
if (handle.envelopePrelude !== undefined) {
|
||||
record.envelopePrelude = handle.envelopePrelude;
|
||||
}
|
||||
record.requirePreludeReplay = record.requirePreludeReplay || handle.requirePreludeReplay === true;
|
||||
if (handle.transcriptBaseline !== undefined) {
|
||||
record.transcriptAnchor = {
|
||||
startSeq: handle.transcriptBaseline.startSeq,
|
||||
lines: [...handle.transcriptBaseline.lines],
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
function mergeSessionHandles(tracked: SessionHandle, incoming: SessionHandle): SessionHandle {
|
||||
return {
|
||||
...tracked,
|
||||
...Object.fromEntries(Object.entries(incoming).filter(([, value]) => value !== undefined)),
|
||||
};
|
||||
}
|
||||
|
||||
function tmuxSessionName(handle: SessionHandle): string {
|
||||
return handle.tmuxSession ?? defaultSessionName(handle.sessionId);
|
||||
}
|
||||
|
||||
function tmuxTarget(handle: SessionHandle): string {
|
||||
const sessionName = tmuxSessionName(handle);
|
||||
return handle.tmuxWindow === undefined ? sessionName : `${sessionName}:${handle.tmuxWindow}`;
|
||||
}
|
||||
|
||||
function defaultSessionName(sessionId: string): string {
|
||||
return `devflow_${compactIdentifier(sessionId).slice(0, 32)}`;
|
||||
}
|
||||
|
||||
function preludeBufferName(sessionId: string): string {
|
||||
return `devflow-prelude-${compactIdentifier(sessionId).slice(0, 8)}`;
|
||||
}
|
||||
|
||||
function promptBufferName(dedupKey: string): string {
|
||||
return `devflow-prompt-${dedupKey.slice(0, 12)}`;
|
||||
}
|
||||
|
||||
function sanitizeTmuxName(value: string, fallback: string): string {
|
||||
const sanitized = value.replace(/[^A-Za-z0-9_-]/g, "_").replace(/^_+|_+$/g, "");
|
||||
return sanitized.length === 0 ? fallback : sanitized.slice(0, 80);
|
||||
}
|
||||
|
||||
function compactIdentifier(value: string): string {
|
||||
return value.replace(/[^A-Za-z0-9]/g, "");
|
||||
}
|
||||
|
||||
function shellJoin(argv: readonly string[]): string {
|
||||
return argv.map(shellQuote).join(" ");
|
||||
}
|
||||
|
||||
function shellQuote(value: string): string {
|
||||
return `'${value.replace(/'/g, "'\\''")}'`;
|
||||
}
|
||||
|
||||
function trimTrailingEmptyLines(lines: string[]): string[] {
|
||||
const trimmed = [...lines];
|
||||
while (trimmed.length > 0 && trimmed[trimmed.length - 1] === "") {
|
||||
trimmed.pop();
|
||||
}
|
||||
return trimmed;
|
||||
}
|
||||
|
||||
function firstAvailableTranscriptSeq(
|
||||
lines: readonly string[],
|
||||
anchor: TranscriptAnchor | undefined,
|
||||
fromSeq: bigint,
|
||||
): bigint {
|
||||
if (anchor === undefined) {
|
||||
if (fromSeq > 0n) {
|
||||
throw transcriptHistoryUnavailable("session was recovered without transcript baseline");
|
||||
}
|
||||
return 1n;
|
||||
}
|
||||
|
||||
if (anchor.lines.length === 0) {
|
||||
if (fromSeq > 0n) {
|
||||
throw transcriptHistoryUnavailable("transcript baseline is empty");
|
||||
}
|
||||
return 1n;
|
||||
}
|
||||
|
||||
const anchorMatch = findAnchorMatch(lines, anchor, fromSeq);
|
||||
if (anchorMatch === undefined) {
|
||||
throw transcriptHistoryUnavailable("tmux history rolled, was cleared, or was truncated");
|
||||
}
|
||||
|
||||
const firstSeq =
|
||||
anchor.startSeq + BigInt(anchorMatch.anchorOffset) - BigInt(anchorMatch.historyIndex);
|
||||
if (firstSeq < 1n) {
|
||||
throw transcriptHistoryUnavailable("tmux history does not align with transcript baseline");
|
||||
}
|
||||
return firstSeq;
|
||||
}
|
||||
|
||||
function findAnchorMatch(
|
||||
lines: readonly string[],
|
||||
anchor: TranscriptAnchor,
|
||||
fromSeq: bigint,
|
||||
): { anchorOffset: number; historyIndex: number } | undefined {
|
||||
for (let anchorOffset = 0; anchorOffset < anchor.lines.length; anchorOffset += 1) {
|
||||
const suffix = anchor.lines.slice(anchorOffset);
|
||||
let match: { anchorOffset: number; historyIndex: number } | undefined;
|
||||
for (let historyIndex = 0; historyIndex <= lines.length - suffix.length; historyIndex += 1) {
|
||||
if (!suffix.every((line, offset) => lines[historyIndex + offset] === line)) {
|
||||
continue;
|
||||
}
|
||||
const firstSeq = anchor.startSeq + BigInt(anchorOffset) - BigInt(historyIndex);
|
||||
const lastSeq = firstSeq + BigInt(lines.length) - 1n;
|
||||
if (firstSeq < 1n || fromSeq < firstSeq - 1n || fromSeq > lastSeq) {
|
||||
continue;
|
||||
}
|
||||
if (match !== undefined) {
|
||||
throw transcriptHistoryUnavailable(
|
||||
"transcript baseline matches multiple history positions",
|
||||
);
|
||||
}
|
||||
match = { anchorOffset, historyIndex };
|
||||
}
|
||||
if (match !== undefined) {
|
||||
return match;
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
function tailTranscriptAnchor(
|
||||
firstAvailableSeq: bigint,
|
||||
lines: readonly string[],
|
||||
): TranscriptAnchor | undefined {
|
||||
if (lines.length === 0) {
|
||||
return undefined;
|
||||
}
|
||||
const tail = lines.slice(-transcriptAnchorLineLimit);
|
||||
return {
|
||||
startSeq: firstAvailableSeq + BigInt(lines.length - tail.length),
|
||||
lines: tail,
|
||||
};
|
||||
}
|
||||
|
||||
function transcriptHistoryUnavailable(reason: string): DevflowError {
|
||||
return new DevflowError("Tmux transcript history no longer contains requested cursor", {
|
||||
class: "human_required",
|
||||
code: "transcript_history_unavailable",
|
||||
recoveryHint: reason,
|
||||
});
|
||||
}
|
||||
|
||||
const transcriptAnchorLineLimit = 200;
|
||||
|
||||
function classifyTmuxFailure(
|
||||
cause: unknown,
|
||||
runId?: string,
|
||||
recoverableCode = "pane_briefly_unresponsive",
|
||||
): DevflowError {
|
||||
if (cause instanceof DevflowError) {
|
||||
return cause;
|
||||
}
|
||||
if (cause instanceof TmuxCommandError && cause.reason === "spawn_failed") {
|
||||
return new DevflowError("tmux is unavailable", {
|
||||
class: "human_required",
|
||||
code: "backend_unavailable",
|
||||
...(runId === undefined ? {} : { runId }),
|
||||
recoveryHint: "install tmux >= 3.3 or configure the tmux binary path",
|
||||
cause,
|
||||
});
|
||||
}
|
||||
return new DevflowError("tmux session is briefly unresponsive", {
|
||||
class: "recoverable",
|
||||
code: recoverableCode,
|
||||
...(runId === undefined ? {} : { runId }),
|
||||
recoveryHint: recoveryHint(cause),
|
||||
cause,
|
||||
});
|
||||
}
|
||||
|
||||
function isMissingSessionFailure(error: unknown): boolean {
|
||||
const hint = recoveryHint(error).toLowerCase();
|
||||
return (
|
||||
hint.includes("missing tmux session") ||
|
||||
hint.includes("can't find session") ||
|
||||
hint.includes("can't find pane") ||
|
||||
hint.includes("no server running")
|
||||
);
|
||||
}
|
||||
|
||||
function isMissingBufferFailure(error: unknown): boolean {
|
||||
const hint = recoveryHint(error).toLowerCase();
|
||||
return hint.includes("can't find buffer") || hint.includes("no buffer");
|
||||
}
|
||||
|
||||
function isUncertainPasteFailure(error: unknown): boolean {
|
||||
return (
|
||||
error instanceof DevflowError &&
|
||||
error.cause instanceof TmuxCommandError &&
|
||||
error.cause.reason === "timeout"
|
||||
);
|
||||
}
|
||||
|
||||
function recoveryHint(error: unknown): string {
|
||||
if (error instanceof DevflowError) {
|
||||
if (error.recoveryHint !== undefined && error.recoveryHint.length > 0) {
|
||||
return error.recoveryHint;
|
||||
}
|
||||
if (error.cause !== undefined) {
|
||||
return recoveryHint(error.cause);
|
||||
}
|
||||
}
|
||||
if (error instanceof TmuxCommandError && error.stderr !== undefined && error.stderr.length > 0) {
|
||||
return error.stderr;
|
||||
}
|
||||
if (error instanceof Error) {
|
||||
return error.message;
|
||||
}
|
||||
return "tmux command failed";
|
||||
}
|
||||
Reference in New Issue
Block a user