1087 lines
32 KiB
TypeScript
1087 lines
32 KiB
TypeScript
import { type ChildProcessWithoutNullStreams, spawn } from "node:child_process";
|
|
import { randomUUID } from "node:crypto";
|
|
import { existsSync, statSync } from "node:fs";
|
|
import { homedir } from "node:os";
|
|
import path from "node:path";
|
|
import type { AgentTool, AgentToolResult } from "@mariozechner/pi-agent-core";
|
|
import { Type } from "@sinclair/typebox";
|
|
import type { IPty } from "node-pty";
|
|
|
|
import {
|
|
addSession,
|
|
appendOutput,
|
|
deleteSession,
|
|
drainSession,
|
|
getFinishedSession,
|
|
getSession,
|
|
listFinishedSessions,
|
|
listRunningSessions,
|
|
markBackgrounded,
|
|
markExited,
|
|
type ProcessStdinMode,
|
|
setJobTtlMs,
|
|
} from "./bash-process-registry.js";
|
|
import {
|
|
getShellConfig,
|
|
killProcessTree,
|
|
sanitizeBinaryOutput,
|
|
} from "./shell-utils.js";
|
|
|
|
const CHUNK_LIMIT = 8 * 1024;
|
|
const DEFAULT_MAX_OUTPUT = clampNumber(
|
|
readEnvInt("PI_BASH_MAX_OUTPUT_CHARS"),
|
|
30_000,
|
|
1_000,
|
|
150_000,
|
|
);
|
|
const DEFAULT_SHELL_PATH = "/bin/sh";
|
|
const DEFAULT_PATH =
|
|
"/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin";
|
|
const DEFAULT_PTY_NAME = "xterm-256color";
|
|
|
|
type PtyModule = typeof import("node-pty");
|
|
type PtyLoadResult = { module: PtyModule | null; error?: unknown };
|
|
let ptyModulePromise: Promise<PtyLoadResult> | null = null;
|
|
|
|
async function loadPtyModule(): Promise<PtyLoadResult> {
|
|
if (!ptyModulePromise) {
|
|
ptyModulePromise = import("node-pty")
|
|
.then((mod) => ({ module: mod }))
|
|
.catch((error) => ({ module: null, error }));
|
|
}
|
|
return ptyModulePromise;
|
|
}
|
|
|
|
const stringEnum = (
|
|
values: readonly string[],
|
|
options?: Parameters<typeof Type.Union>[1],
|
|
) =>
|
|
Type.Union(
|
|
values.map((value) => Type.Literal(value)) as [
|
|
ReturnType<typeof Type.Literal>,
|
|
...ReturnType<typeof Type.Literal>[],
|
|
],
|
|
options,
|
|
);
|
|
|
|
export type BashToolDefaults = {
|
|
backgroundMs?: number;
|
|
timeoutSec?: number;
|
|
};
|
|
|
|
export type ProcessToolDefaults = {
|
|
cleanupMs?: number;
|
|
};
|
|
|
|
const bashSchema = Type.Object({
|
|
command: Type.String({ description: "Bash command to execute" }),
|
|
workdir: Type.Optional(
|
|
Type.String({ description: "Working directory (defaults to cwd)" }),
|
|
),
|
|
env: Type.Optional(Type.Record(Type.String(), Type.String())),
|
|
yieldMs: Type.Optional(
|
|
Type.Number({
|
|
description: "Milliseconds to wait before backgrounding (default 20000)",
|
|
}),
|
|
),
|
|
background: Type.Optional(
|
|
Type.Boolean({ description: "Run in background immediately" }),
|
|
),
|
|
timeout: Type.Optional(
|
|
Type.Number({
|
|
description: "Timeout in seconds (optional, kills process on expiry)",
|
|
}),
|
|
),
|
|
stdinMode: Type.Optional(
|
|
stringEnum(["pipe", "pty"] as const, {
|
|
description: "stdin mode (pipe or pty when node-pty is available)",
|
|
}),
|
|
),
|
|
});
|
|
|
|
export type BashToolDetails =
|
|
| {
|
|
status: "running";
|
|
sessionId: string;
|
|
pid?: number;
|
|
startedAt: number;
|
|
tail?: string;
|
|
}
|
|
| {
|
|
status: "completed" | "failed";
|
|
exitCode: number | null;
|
|
durationMs: number;
|
|
aggregated: string;
|
|
};
|
|
|
|
export function createBashTool(
|
|
defaults?: BashToolDefaults,
|
|
// biome-ignore lint/suspicious/noExplicitAny: TypeBox schema type from pi-agent-core uses a different module instance.
|
|
): AgentTool<any, BashToolDetails> {
|
|
const defaultBackgroundMs = clampNumber(
|
|
defaults?.backgroundMs ?? readEnvInt("PI_BASH_YIELD_MS"),
|
|
20_000,
|
|
10,
|
|
120_000,
|
|
);
|
|
const defaultTimeoutSec =
|
|
typeof defaults?.timeoutSec === "number" && defaults.timeoutSec > 0
|
|
? defaults.timeoutSec
|
|
: 1800;
|
|
|
|
return {
|
|
name: "bash",
|
|
label: "bash",
|
|
description:
|
|
"Execute bash with background continuation. Use yieldMs/background to continue later via process tool.",
|
|
parameters: bashSchema,
|
|
execute: async (_toolCallId, args, signal, onUpdate) => {
|
|
const params = args as {
|
|
command: string;
|
|
workdir?: string;
|
|
env?: Record<string, string>;
|
|
yieldMs?: number;
|
|
background?: boolean;
|
|
timeout?: number;
|
|
stdinMode?: "pipe" | "pty";
|
|
};
|
|
|
|
if (!params.command) {
|
|
throw new Error("Provide a command to start.");
|
|
}
|
|
|
|
const yieldWindow = params.background
|
|
? 0
|
|
: clampNumber(
|
|
params.yieldMs ?? defaultBackgroundMs,
|
|
defaultBackgroundMs,
|
|
10,
|
|
120_000,
|
|
);
|
|
const maxOutput = DEFAULT_MAX_OUTPUT;
|
|
const startedAt = Date.now();
|
|
const sessionId = randomUUID();
|
|
const warnings: string[] = [];
|
|
const workdir = resolveWorkdir(
|
|
params.workdir?.trim() || process.cwd(),
|
|
warnings,
|
|
);
|
|
|
|
const { shell, args: shellArgs } = getShellConfig();
|
|
const env = params.env ? { ...process.env, ...params.env } : process.env;
|
|
const requestedStdinMode = params.stdinMode === "pty" ? "pty" : "pipe";
|
|
let stdinMode: ProcessStdinMode = requestedStdinMode;
|
|
let warning: string | null = null;
|
|
let child: ChildProcessWithoutNullStreams | undefined;
|
|
let pty: IPty | undefined;
|
|
|
|
if (stdinMode === "pty") {
|
|
const { module: ptyModule, error: ptyError } = await loadPtyModule();
|
|
if (!ptyModule) {
|
|
warning =
|
|
`Warning: node-pty failed to load${formatPtyError(ptyError)}; ` +
|
|
"falling back to pipe mode.";
|
|
stdinMode = "pipe";
|
|
} else {
|
|
const ptyEnv = ensurePath({
|
|
...env,
|
|
TERM: env.TERM ?? DEFAULT_PTY_NAME,
|
|
} as Record<string, string>);
|
|
const ptyShell = resolveShellPath(shell, ptyEnv);
|
|
try {
|
|
pty = ptyModule.spawn(ptyShell, [...shellArgs, params.command], {
|
|
cwd: workdir,
|
|
env: ptyEnv,
|
|
name: ptyEnv.TERM || DEFAULT_PTY_NAME,
|
|
cols: 120,
|
|
rows: 30,
|
|
});
|
|
} catch (error) {
|
|
if (ptyShell !== DEFAULT_SHELL_PATH && existsSync(DEFAULT_SHELL_PATH)) {
|
|
try {
|
|
pty = ptyModule.spawn(
|
|
DEFAULT_SHELL_PATH,
|
|
[...shellArgs, params.command],
|
|
{
|
|
cwd: workdir,
|
|
env: ptyEnv,
|
|
name: ptyEnv.TERM || DEFAULT_PTY_NAME,
|
|
cols: 120,
|
|
rows: 30,
|
|
},
|
|
);
|
|
} catch (fallbackError) {
|
|
warning =
|
|
`Warning: node-pty failed to start${formatPtyError(fallbackError)}; ` +
|
|
"falling back to pipe mode.";
|
|
stdinMode = "pipe";
|
|
}
|
|
} else {
|
|
warning =
|
|
`Warning: node-pty failed to start${formatPtyError(error)}; ` +
|
|
"falling back to pipe mode.";
|
|
stdinMode = "pipe";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (stdinMode === "pipe") {
|
|
child = spawn(shell, [...shellArgs, params.command], {
|
|
cwd: workdir,
|
|
env,
|
|
detached: true,
|
|
stdio: ["pipe", "pipe", "pipe"],
|
|
});
|
|
}
|
|
|
|
if (warning) warnings.push(warning);
|
|
|
|
const session = {
|
|
id: sessionId,
|
|
command: params.command,
|
|
child,
|
|
pty,
|
|
pid: child?.pid ?? pty?.pid,
|
|
stdinMode,
|
|
startedAt,
|
|
cwd: workdir,
|
|
maxOutputChars: maxOutput,
|
|
totalOutputChars: 0,
|
|
pendingStdout: [],
|
|
pendingStderr: [],
|
|
aggregated: "",
|
|
tail: "",
|
|
exited: false,
|
|
exitCode: undefined as number | null | undefined,
|
|
exitSignal: undefined as NodeJS.Signals | number | null | undefined,
|
|
truncated: false,
|
|
backgrounded: false,
|
|
};
|
|
addSession(session);
|
|
|
|
let settled = false;
|
|
let yielded = false;
|
|
let yieldTimer: NodeJS.Timeout | null = null;
|
|
let timeoutTimer: NodeJS.Timeout | null = null;
|
|
let timedOut = false;
|
|
|
|
const settle = (fn: () => void) => {
|
|
if (settled) return;
|
|
settled = true;
|
|
fn();
|
|
};
|
|
|
|
const onAbort = () => {
|
|
killSession(session);
|
|
};
|
|
|
|
if (signal?.aborted) onAbort();
|
|
else if (signal) {
|
|
signal.addEventListener("abort", onAbort, { once: true });
|
|
}
|
|
|
|
const effectiveTimeout =
|
|
typeof params.timeout === "number" ? params.timeout : defaultTimeoutSec;
|
|
if (effectiveTimeout > 0) {
|
|
timeoutTimer = setTimeout(() => {
|
|
timedOut = true;
|
|
onAbort();
|
|
}, effectiveTimeout * 1000);
|
|
}
|
|
|
|
const emitUpdate = () => {
|
|
if (!onUpdate) return;
|
|
const tailText = session.tail || session.aggregated;
|
|
const warningText = warnings.length ? `${warnings.join("\n")}\n\n` : "";
|
|
onUpdate({
|
|
content: [{ type: "text", text: warningText + (tailText || "") }],
|
|
details: {
|
|
status: "running",
|
|
sessionId,
|
|
pid: session.pid ?? undefined,
|
|
startedAt,
|
|
tail: session.tail,
|
|
},
|
|
});
|
|
};
|
|
|
|
if (child) {
|
|
child.stdout.on("data", (data) => {
|
|
const str = sanitizeBinaryOutput(data.toString());
|
|
for (const chunk of chunkString(str)) {
|
|
appendOutput(session, "stdout", chunk);
|
|
emitUpdate();
|
|
}
|
|
});
|
|
|
|
child.stderr.on("data", (data) => {
|
|
const str = sanitizeBinaryOutput(data.toString());
|
|
for (const chunk of chunkString(str)) {
|
|
appendOutput(session, "stderr", chunk);
|
|
emitUpdate();
|
|
}
|
|
});
|
|
}
|
|
|
|
if (pty) {
|
|
pty.onData((data) => {
|
|
const str = sanitizeBinaryOutput(data);
|
|
for (const chunk of chunkString(str)) {
|
|
appendOutput(session, "stdout", chunk);
|
|
emitUpdate();
|
|
}
|
|
});
|
|
}
|
|
|
|
return new Promise<AgentToolResult<BashToolDetails>>(
|
|
(resolve, reject) => {
|
|
const resolveRunning = () => {
|
|
settle(() =>
|
|
resolve({
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text:
|
|
`${warnings.length ? `${warnings.join("\n")}\n\n` : ""}` +
|
|
`Command still running (session ${sessionId}, pid ${session.pid ?? "n/a"}). ` +
|
|
"Use process (list/poll/log/write/kill/clear/remove) for follow-up.",
|
|
},
|
|
],
|
|
details: {
|
|
status: "running",
|
|
sessionId,
|
|
pid: session.pid ?? undefined,
|
|
startedAt,
|
|
tail: session.tail,
|
|
},
|
|
}),
|
|
);
|
|
};
|
|
|
|
const onYieldNow = () => {
|
|
if (yieldTimer) clearTimeout(yieldTimer);
|
|
if (settled) return;
|
|
yielded = true;
|
|
markBackgrounded(session);
|
|
resolveRunning();
|
|
};
|
|
|
|
if (yieldWindow === 0) {
|
|
onYieldNow();
|
|
} else {
|
|
yieldTimer = setTimeout(() => {
|
|
if (settled) return;
|
|
yielded = true;
|
|
markBackgrounded(session);
|
|
resolveRunning();
|
|
}, yieldWindow);
|
|
}
|
|
|
|
const handleExit = (
|
|
code: number | null,
|
|
exitSignal: NodeJS.Signals | number | null,
|
|
) => {
|
|
if (yieldTimer) clearTimeout(yieldTimer);
|
|
if (timeoutTimer) clearTimeout(timeoutTimer);
|
|
const durationMs = Date.now() - startedAt;
|
|
const wasSignal = exitSignal != null;
|
|
const isSuccess =
|
|
code === 0 && !wasSignal && !signal?.aborted && !timedOut;
|
|
const status: "completed" | "failed" = isSuccess
|
|
? "completed"
|
|
: "failed";
|
|
markExited(session, code, exitSignal, status);
|
|
|
|
if (yielded || session.backgrounded) return;
|
|
|
|
const aggregated = session.aggregated.trim();
|
|
if (!isSuccess) {
|
|
const reason = timedOut
|
|
? `Command timed out after ${effectiveTimeout} seconds`
|
|
: wasSignal && exitSignal
|
|
? `Command aborted by signal ${exitSignal}`
|
|
: code === null
|
|
? "Command aborted before exit code was captured"
|
|
: `Command exited with code ${code}`;
|
|
const message = aggregated
|
|
? `${aggregated}\n\n${reason}`
|
|
: reason;
|
|
settle(() => reject(new Error(message)));
|
|
return;
|
|
}
|
|
|
|
settle(() =>
|
|
resolve({
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text:
|
|
`${warnings.length ? `${warnings.join("\n")}\n\n` : ""}` +
|
|
(aggregated || "(no output)"),
|
|
},
|
|
],
|
|
details: {
|
|
status: "completed",
|
|
exitCode: code ?? 0,
|
|
durationMs,
|
|
aggregated,
|
|
},
|
|
}),
|
|
);
|
|
};
|
|
|
|
if (child) {
|
|
child.once("exit", (code, exitSignal) => {
|
|
handleExit(code, exitSignal);
|
|
});
|
|
|
|
child.once("error", (err) => {
|
|
if (yieldTimer) clearTimeout(yieldTimer);
|
|
if (timeoutTimer) clearTimeout(timeoutTimer);
|
|
markExited(session, null, null, "failed");
|
|
settle(() => reject(err));
|
|
});
|
|
}
|
|
|
|
if (pty) {
|
|
pty.onExit(({ exitCode, signal }) => {
|
|
handleExit(exitCode ?? null, signal ?? null);
|
|
});
|
|
}
|
|
},
|
|
);
|
|
},
|
|
};
|
|
}
|
|
|
|
export const bashTool = createBashTool();
|
|
|
|
const processSchema = Type.Object({
|
|
action: stringEnum(
|
|
["list", "poll", "log", "write", "kill", "clear", "remove"] as const,
|
|
{
|
|
description: "Process action",
|
|
},
|
|
),
|
|
sessionId: Type.Optional(
|
|
Type.String({ description: "Session id for actions other than list" }),
|
|
),
|
|
data: Type.Optional(Type.String({ description: "Data to write for write" })),
|
|
eof: Type.Optional(Type.Boolean({ description: "Close stdin after write" })),
|
|
offset: Type.Optional(Type.Number({ description: "Log offset" })),
|
|
limit: Type.Optional(Type.Number({ description: "Log length" })),
|
|
});
|
|
|
|
export function createProcessTool(
|
|
defaults?: ProcessToolDefaults,
|
|
// biome-ignore lint/suspicious/noExplicitAny: TypeBox schema type from pi-agent-core uses a different module instance.
|
|
): AgentTool<any> {
|
|
if (defaults?.cleanupMs !== undefined) {
|
|
setJobTtlMs(defaults.cleanupMs);
|
|
}
|
|
|
|
return {
|
|
name: "process",
|
|
label: "process",
|
|
description: "Manage running bash sessions: list, poll, log, write, kill.",
|
|
parameters: processSchema,
|
|
execute: async (_toolCallId, args) => {
|
|
const params = args as {
|
|
action: "list" | "poll" | "log" | "write" | "kill" | "clear" | "remove";
|
|
sessionId?: string;
|
|
data?: string;
|
|
eof?: boolean;
|
|
offset?: number;
|
|
limit?: number;
|
|
};
|
|
|
|
if (params.action === "list") {
|
|
const running = listRunningSessions().map((s) => ({
|
|
sessionId: s.id,
|
|
status: "running",
|
|
pid: s.pid ?? undefined,
|
|
startedAt: s.startedAt,
|
|
runtimeMs: Date.now() - s.startedAt,
|
|
cwd: s.cwd,
|
|
command: s.command,
|
|
name: deriveSessionName(s.command),
|
|
tail: s.tail,
|
|
truncated: s.truncated,
|
|
}));
|
|
const finished = listFinishedSessions().map((s) => ({
|
|
sessionId: s.id,
|
|
status: s.status,
|
|
startedAt: s.startedAt,
|
|
endedAt: s.endedAt,
|
|
runtimeMs: s.endedAt - s.startedAt,
|
|
cwd: s.cwd,
|
|
command: s.command,
|
|
name: deriveSessionName(s.command),
|
|
tail: s.tail,
|
|
truncated: s.truncated,
|
|
exitCode: s.exitCode ?? undefined,
|
|
exitSignal: s.exitSignal ?? undefined,
|
|
}));
|
|
const lines = [...running, ...finished]
|
|
.sort((a, b) => b.startedAt - a.startedAt)
|
|
.map((s) => {
|
|
const label = s.name
|
|
? truncateMiddle(s.name, 80)
|
|
: truncateMiddle(s.command, 120);
|
|
return `${s.sessionId.slice(0, 8)} ${pad(
|
|
s.status,
|
|
9,
|
|
)} ${formatDuration(s.runtimeMs)} :: ${label}`;
|
|
});
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: lines.join("\n") || "No running or recent sessions.",
|
|
},
|
|
],
|
|
details: { status: "completed", sessions: [...running, ...finished] },
|
|
};
|
|
}
|
|
|
|
if (!params.sessionId) {
|
|
return {
|
|
content: [
|
|
{ type: "text", text: "sessionId is required for this action." },
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
|
|
const session = getSession(params.sessionId);
|
|
const finished = getFinishedSession(params.sessionId);
|
|
|
|
switch (params.action) {
|
|
case "poll": {
|
|
if (!session) {
|
|
if (finished) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text:
|
|
(finished.tail ||
|
|
`(no output recorded${
|
|
finished.truncated ? " — truncated to cap" : ""
|
|
})`) +
|
|
`\n\nProcess exited with ${
|
|
finished.exitSignal
|
|
? `signal ${finished.exitSignal}`
|
|
: `code ${finished.exitCode ?? 0}`
|
|
}.`,
|
|
},
|
|
],
|
|
details: {
|
|
status:
|
|
finished.status === "completed" ? "completed" : "failed",
|
|
sessionId: params.sessionId,
|
|
exitCode: finished.exitCode ?? undefined,
|
|
aggregated: finished.aggregated,
|
|
name: deriveSessionName(finished.command),
|
|
},
|
|
};
|
|
}
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `No session found for ${params.sessionId}`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
if (!session.backgrounded) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Session ${params.sessionId} is not backgrounded.`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
const { stdout, stderr } = drainSession(session);
|
|
const exited = session.exited;
|
|
const exitCode = session.exitCode ?? 0;
|
|
const exitSignal = session.exitSignal ?? undefined;
|
|
if (exited) {
|
|
const status =
|
|
exitCode === 0 && exitSignal == null ? "completed" : "failed";
|
|
markExited(
|
|
session,
|
|
session.exitCode ?? null,
|
|
session.exitSignal ?? null,
|
|
status,
|
|
);
|
|
}
|
|
const status = exited
|
|
? exitCode === 0 && exitSignal == null
|
|
? "completed"
|
|
: "failed"
|
|
: "running";
|
|
const output = [stdout.trimEnd(), stderr.trimEnd()]
|
|
.filter(Boolean)
|
|
.join("\n")
|
|
.trim();
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text:
|
|
(output || "(no new output)") +
|
|
(exited
|
|
? `\n\nProcess exited with ${
|
|
exitSignal ? `signal ${exitSignal}` : `code ${exitCode}`
|
|
}.`
|
|
: "\n\nProcess still running."),
|
|
},
|
|
],
|
|
details: {
|
|
status,
|
|
sessionId: params.sessionId,
|
|
exitCode: exited ? exitCode : undefined,
|
|
aggregated: session.aggregated,
|
|
name: deriveSessionName(session.command),
|
|
},
|
|
};
|
|
}
|
|
|
|
case "log": {
|
|
if (session) {
|
|
if (!session.backgrounded) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Session ${params.sessionId} is not backgrounded.`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
const { slice, totalLines, totalChars } = sliceLogLines(
|
|
session.aggregated,
|
|
params.offset,
|
|
params.limit,
|
|
);
|
|
return {
|
|
content: [{ type: "text", text: slice || "(no output yet)" }],
|
|
details: {
|
|
status: session.exited ? "completed" : "running",
|
|
sessionId: params.sessionId,
|
|
total: totalLines,
|
|
totalLines,
|
|
totalChars,
|
|
truncated: session.truncated,
|
|
name: deriveSessionName(session.command),
|
|
},
|
|
};
|
|
}
|
|
if (finished) {
|
|
const { slice, totalLines, totalChars } = sliceLogLines(
|
|
finished.aggregated,
|
|
params.offset,
|
|
params.limit,
|
|
);
|
|
const status =
|
|
finished.status === "completed" ? "completed" : "failed";
|
|
return {
|
|
content: [
|
|
{ type: "text", text: slice || "(no output recorded)" },
|
|
],
|
|
details: {
|
|
status,
|
|
sessionId: params.sessionId,
|
|
total: totalLines,
|
|
totalLines,
|
|
totalChars,
|
|
truncated: finished.truncated,
|
|
exitCode: finished.exitCode ?? undefined,
|
|
exitSignal: finished.exitSignal ?? undefined,
|
|
name: deriveSessionName(finished.command),
|
|
},
|
|
};
|
|
}
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `No session found for ${params.sessionId}`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
|
|
case "write": {
|
|
if (!session) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `No active session found for ${params.sessionId}`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
if (!session.backgrounded) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Session ${params.sessionId} is not backgrounded.`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
if (session.stdinMode === "pty") {
|
|
if (!session.pty || session.exited) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Session ${params.sessionId} stdin is not writable.`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
session.pty.write(params.data ?? "");
|
|
if (params.eof) {
|
|
session.pty.write("\x04");
|
|
}
|
|
} else {
|
|
if (!session.child?.stdin || session.child.stdin.destroyed) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Session ${params.sessionId} stdin is not writable.`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
await new Promise<void>((resolve, reject) => {
|
|
session.child?.stdin.write(params.data ?? "", (err) => {
|
|
if (err) reject(err);
|
|
else resolve();
|
|
});
|
|
});
|
|
if (params.eof) {
|
|
session.child.stdin.end();
|
|
}
|
|
}
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Wrote ${(params.data ?? "").length} bytes to session ${
|
|
params.sessionId
|
|
}${params.eof ? " (stdin closed)" : ""}.`,
|
|
},
|
|
],
|
|
details: {
|
|
status: "running",
|
|
sessionId: params.sessionId,
|
|
name: session ? deriveSessionName(session.command) : undefined,
|
|
},
|
|
};
|
|
}
|
|
|
|
case "kill": {
|
|
if (!session) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `No active session found for ${params.sessionId}`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
if (!session.backgrounded) {
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `Session ${params.sessionId} is not backgrounded.`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
killSession(session);
|
|
markExited(session, null, "SIGKILL", "failed");
|
|
return {
|
|
content: [
|
|
{ type: "text", text: `Killed session ${params.sessionId}.` },
|
|
],
|
|
details: {
|
|
status: "failed",
|
|
name: session ? deriveSessionName(session.command) : undefined,
|
|
},
|
|
};
|
|
}
|
|
|
|
case "clear": {
|
|
if (finished) {
|
|
deleteSession(params.sessionId);
|
|
return {
|
|
content: [
|
|
{ type: "text", text: `Cleared session ${params.sessionId}.` },
|
|
],
|
|
details: { status: "completed" },
|
|
};
|
|
}
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `No finished session found for ${params.sessionId}`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
|
|
case "remove": {
|
|
if (session) {
|
|
killSession(session);
|
|
markExited(session, null, "SIGKILL", "failed");
|
|
return {
|
|
content: [
|
|
{ type: "text", text: `Removed session ${params.sessionId}.` },
|
|
],
|
|
details: {
|
|
status: "failed",
|
|
name: session ? deriveSessionName(session.command) : undefined,
|
|
},
|
|
};
|
|
}
|
|
if (finished) {
|
|
deleteSession(params.sessionId);
|
|
return {
|
|
content: [
|
|
{ type: "text", text: `Removed session ${params.sessionId}.` },
|
|
],
|
|
details: { status: "completed" },
|
|
};
|
|
}
|
|
return {
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: `No session found for ${params.sessionId}`,
|
|
},
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
}
|
|
}
|
|
|
|
return {
|
|
content: [
|
|
{ type: "text", text: `Unknown action ${params.action as string}` },
|
|
],
|
|
details: { status: "failed" },
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
export const processTool = createProcessTool();
|
|
|
|
function killSession(session: {
|
|
pid?: number;
|
|
stdinMode: ProcessStdinMode;
|
|
pty?: IPty;
|
|
child?: ChildProcessWithoutNullStreams;
|
|
}) {
|
|
const pid = session.pid ?? session.child?.pid ?? session.pty?.pid;
|
|
if (pid) {
|
|
killProcessTree(pid);
|
|
}
|
|
if (session.stdinMode === "pty") {
|
|
try {
|
|
session.pty?.kill();
|
|
} catch {
|
|
// ignore kill failures
|
|
}
|
|
}
|
|
}
|
|
|
|
function resolveWorkdir(workdir: string, warnings: string[]) {
|
|
const current = safeCwd();
|
|
const fallback = current ?? homedir();
|
|
try {
|
|
const stats = statSync(workdir);
|
|
if (stats.isDirectory()) return workdir;
|
|
} catch {
|
|
// ignore, fallback below
|
|
}
|
|
warnings.push(
|
|
`Warning: workdir "${workdir}" is unavailable; using "${fallback}".`,
|
|
);
|
|
return fallback;
|
|
}
|
|
|
|
function safeCwd() {
|
|
try {
|
|
const cwd = process.cwd();
|
|
return existsSync(cwd) ? cwd : null;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function ensurePath(env: Record<string, string>) {
|
|
if (!env.PATH?.trim()) {
|
|
env.PATH = DEFAULT_PATH;
|
|
}
|
|
return env;
|
|
}
|
|
|
|
function resolveShellPath(shell: string, env: Record<string, string>) {
|
|
if (process.platform === "win32") return shell;
|
|
if (shell.includes("/") && existsSync(shell)) {
|
|
return shell;
|
|
}
|
|
const searchPath = env.PATH ?? "";
|
|
for (const segment of searchPath.split(path.delimiter)) {
|
|
if (!segment) continue;
|
|
const candidate = path.join(segment, shell);
|
|
if (existsSync(candidate)) return candidate;
|
|
}
|
|
if (existsSync(DEFAULT_SHELL_PATH)) {
|
|
return DEFAULT_SHELL_PATH;
|
|
}
|
|
return shell;
|
|
}
|
|
|
|
function formatPtyError(error: unknown) {
|
|
if (!error) return "";
|
|
if (typeof error === "string") return ` (${error})`;
|
|
if (error instanceof Error) {
|
|
const firstLine = error.message.split(/\r?\n/)[0]?.trim();
|
|
return firstLine ? ` (${firstLine})` : "";
|
|
}
|
|
try {
|
|
return ` (${JSON.stringify(error)})`;
|
|
} catch {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
function clampNumber(
|
|
value: number | undefined,
|
|
defaultValue: number,
|
|
min: number,
|
|
max: number,
|
|
) {
|
|
if (value === undefined || Number.isNaN(value)) return defaultValue;
|
|
return Math.min(Math.max(value, min), max);
|
|
}
|
|
|
|
function readEnvInt(key: string) {
|
|
const raw = process.env[key];
|
|
if (!raw) return undefined;
|
|
const parsed = Number.parseInt(raw, 10);
|
|
return Number.isFinite(parsed) ? parsed : undefined;
|
|
}
|
|
|
|
function chunkString(input: string, limit = CHUNK_LIMIT) {
|
|
const chunks: string[] = [];
|
|
for (let i = 0; i < input.length; i += limit) {
|
|
chunks.push(input.slice(i, i + limit));
|
|
}
|
|
return chunks;
|
|
}
|
|
|
|
function truncateMiddle(str: string, max: number) {
|
|
if (str.length <= max) return str;
|
|
const half = Math.floor((max - 3) / 2);
|
|
return `${str.slice(0, half)}...${str.slice(str.length - half)}`;
|
|
}
|
|
|
|
function sliceLogLines(
|
|
text: string,
|
|
offset?: number,
|
|
limit?: number,
|
|
): { slice: string; totalLines: number; totalChars: number } {
|
|
if (!text) return { slice: "", totalLines: 0, totalChars: 0 };
|
|
const normalized = text.replace(/\r\n/g, "\n");
|
|
const lines = normalized.split("\n");
|
|
if (lines.length > 0 && lines[lines.length - 1] === "") {
|
|
lines.pop();
|
|
}
|
|
const totalLines = lines.length;
|
|
const totalChars = text.length;
|
|
let start =
|
|
typeof offset === "number" && Number.isFinite(offset)
|
|
? Math.max(0, Math.floor(offset))
|
|
: 0;
|
|
if (limit !== undefined && offset === undefined) {
|
|
const tailCount = Math.max(0, Math.floor(limit));
|
|
start = Math.max(totalLines - tailCount, 0);
|
|
}
|
|
const end =
|
|
typeof limit === "number" && Number.isFinite(limit)
|
|
? start + Math.max(0, Math.floor(limit))
|
|
: undefined;
|
|
return { slice: lines.slice(start, end).join("\n"), totalLines, totalChars };
|
|
}
|
|
|
|
function deriveSessionName(command: string): string | undefined {
|
|
const tokens = tokenizeCommand(command);
|
|
if (tokens.length === 0) return undefined;
|
|
const verb = tokens[0];
|
|
let target = tokens.slice(1).find((t) => !t.startsWith("-"));
|
|
if (!target) target = tokens[1];
|
|
if (!target) return verb;
|
|
const cleaned = truncateMiddle(stripQuotes(target), 48);
|
|
return `${stripQuotes(verb)} ${cleaned}`;
|
|
}
|
|
|
|
function tokenizeCommand(command: string): string[] {
|
|
const matches =
|
|
command.match(/(?:[^\s"']+|"(?:\\.|[^"])*"|'(?:\\.|[^'])*')+/g) ?? [];
|
|
return matches.map((token) => stripQuotes(token)).filter(Boolean);
|
|
}
|
|
|
|
function stripQuotes(value: string): string {
|
|
const trimmed = value.trim();
|
|
if (
|
|
(trimmed.startsWith('"') && trimmed.endsWith('"')) ||
|
|
(trimmed.startsWith("'") && trimmed.endsWith("'"))
|
|
) {
|
|
return trimmed.slice(1, -1);
|
|
}
|
|
return trimmed;
|
|
}
|
|
|
|
function formatDuration(ms: number) {
|
|
if (ms < 1000) return `${ms}ms`;
|
|
const seconds = Math.floor(ms / 1000);
|
|
if (seconds < 60) return `${seconds}s`;
|
|
const minutes = Math.floor(seconds / 60);
|
|
const rem = seconds % 60;
|
|
return `${minutes}m${rem.toString().padStart(2, "0")}s`;
|
|
}
|
|
|
|
function pad(str: string, width: number) {
|
|
if (str.length >= width) return str;
|
|
return str + " ".repeat(width - str.length);
|
|
}
|