mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 14:03:49 +00:00
447 lines
14 KiB
TypeScript
447 lines
14 KiB
TypeScript
import * as os from "node:os";
|
|
import {
|
|
Container,
|
|
getCapabilities,
|
|
getImageDimensions,
|
|
Image,
|
|
imageFallback,
|
|
Spacer,
|
|
Text,
|
|
} from "@mariozechner/pi-tui";
|
|
import stripAnsi from "strip-ansi";
|
|
import { DEFAULT_MAX_BYTES, DEFAULT_MAX_LINES, formatSize } from "../../../core/tools/truncate.js";
|
|
import { theme } from "../theme/theme.js";
|
|
|
|
/**
|
|
* Convert absolute path to tilde notation if it's in home directory
|
|
*/
|
|
function shortenPath(path: string): string {
|
|
const home = os.homedir();
|
|
if (path.startsWith(home)) {
|
|
return "~" + path.slice(home.length);
|
|
}
|
|
return path;
|
|
}
|
|
|
|
/**
|
|
* Replace tabs with spaces for consistent rendering
|
|
*/
|
|
function replaceTabs(text: string): string {
|
|
return text.replace(/\t/g, " ");
|
|
}
|
|
|
|
export interface ToolExecutionOptions {
|
|
showImages?: boolean; // default: true (only used if terminal supports images)
|
|
}
|
|
|
|
/**
|
|
* Component that renders a tool call with its result (updateable)
|
|
*/
|
|
export class ToolExecutionComponent extends Container {
|
|
private contentText: Text;
|
|
private imageComponents: Image[] = [];
|
|
private toolName: string;
|
|
private args: any;
|
|
private expanded = false;
|
|
private showImages: boolean;
|
|
private result?: {
|
|
content: Array<{ type: string; text?: string; data?: string; mimeType?: string }>;
|
|
isError: boolean;
|
|
details?: any;
|
|
};
|
|
|
|
constructor(toolName: string, args: any, options: ToolExecutionOptions = {}) {
|
|
super();
|
|
this.toolName = toolName;
|
|
this.args = args;
|
|
this.showImages = options.showImages ?? true;
|
|
this.addChild(new Spacer(1));
|
|
this.contentText = new Text("", 1, 1, (text: string) => theme.bg("toolPendingBg", text));
|
|
this.addChild(this.contentText);
|
|
this.updateDisplay();
|
|
}
|
|
|
|
updateArgs(args: any): void {
|
|
this.args = args;
|
|
this.updateDisplay();
|
|
}
|
|
|
|
updateResult(result: {
|
|
content: Array<{ type: string; text?: string; data?: string; mimeType?: string }>;
|
|
details?: any;
|
|
isError: boolean;
|
|
}): void {
|
|
this.result = result;
|
|
this.updateDisplay();
|
|
}
|
|
|
|
setExpanded(expanded: boolean): void {
|
|
this.expanded = expanded;
|
|
this.updateDisplay();
|
|
}
|
|
|
|
setShowImages(show: boolean): void {
|
|
this.showImages = show;
|
|
this.updateDisplay();
|
|
}
|
|
|
|
private updateDisplay(): void {
|
|
const bgFn = this.result
|
|
? this.result.isError
|
|
? (text: string) => theme.bg("toolErrorBg", text)
|
|
: (text: string) => theme.bg("toolSuccessBg", text)
|
|
: (text: string) => theme.bg("toolPendingBg", text);
|
|
|
|
this.contentText.setCustomBgFn(bgFn);
|
|
this.contentText.setText(this.formatToolExecution());
|
|
|
|
for (const img of this.imageComponents) {
|
|
this.removeChild(img);
|
|
}
|
|
this.imageComponents = [];
|
|
|
|
if (this.result) {
|
|
const imageBlocks = this.result.content?.filter((c: any) => c.type === "image") || [];
|
|
const caps = getCapabilities();
|
|
|
|
for (const img of imageBlocks) {
|
|
// Show inline image only if terminal supports it AND user setting allows it
|
|
if (caps.images && this.showImages && img.data && img.mimeType) {
|
|
const imageComponent = new Image(
|
|
img.data,
|
|
img.mimeType,
|
|
{ fallbackColor: (s: string) => theme.fg("toolOutput", s) },
|
|
{ maxWidthCells: 60 },
|
|
);
|
|
this.imageComponents.push(imageComponent);
|
|
this.addChild(imageComponent);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private getTextOutput(): string {
|
|
if (!this.result) return "";
|
|
|
|
const textBlocks = this.result.content?.filter((c: any) => c.type === "text") || [];
|
|
const imageBlocks = this.result.content?.filter((c: any) => c.type === "image") || [];
|
|
|
|
let output = textBlocks
|
|
.map((c: any) => {
|
|
let text = stripAnsi(c.text || "").replace(/\r/g, "");
|
|
text = text.replace(/\x1b./g, "");
|
|
text = text.replace(/[\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\x9f]/g, "");
|
|
return text;
|
|
})
|
|
.join("\n");
|
|
|
|
const caps = getCapabilities();
|
|
// Show text fallback if terminal doesn't support images OR if user disabled inline images
|
|
if (imageBlocks.length > 0 && (!caps.images || !this.showImages)) {
|
|
const imageIndicators = imageBlocks
|
|
.map((img: any) => {
|
|
const dims = img.data ? (getImageDimensions(img.data, img.mimeType) ?? undefined) : undefined;
|
|
return imageFallback(img.mimeType, dims);
|
|
})
|
|
.join("\n");
|
|
output = output ? `${output}\n${imageIndicators}` : imageIndicators;
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
private formatToolExecution(): string {
|
|
let text = "";
|
|
|
|
// Format based on tool type
|
|
if (this.toolName === "bash") {
|
|
const command = this.args?.command || "";
|
|
text = theme.fg("toolTitle", theme.bold(`$ ${command || theme.fg("toolOutput", "...")}`));
|
|
|
|
if (this.result) {
|
|
const output = this.getTextOutput().trim();
|
|
if (output) {
|
|
const lines = output.split("\n");
|
|
const maxLines = this.expanded ? lines.length : 5;
|
|
const displayLines = lines.slice(0, maxLines);
|
|
const remaining = lines.length - maxLines;
|
|
|
|
text += "\n\n" + displayLines.map((line: string) => theme.fg("toolOutput", line)).join("\n");
|
|
if (remaining > 0) {
|
|
text += theme.fg("toolOutput", `\n... (${remaining} more lines)`);
|
|
}
|
|
}
|
|
|
|
// Show truncation warning at the bottom (outside collapsed area)
|
|
const truncation = this.result.details?.truncation;
|
|
const fullOutputPath = this.result.details?.fullOutputPath;
|
|
if (truncation?.truncated || fullOutputPath) {
|
|
const warnings: string[] = [];
|
|
if (fullOutputPath) {
|
|
warnings.push(`Full output: ${fullOutputPath}`);
|
|
}
|
|
if (truncation?.truncated) {
|
|
if (truncation.truncatedBy === "lines") {
|
|
warnings.push(`Truncated: showing ${truncation.outputLines} of ${truncation.totalLines} lines`);
|
|
} else {
|
|
warnings.push(
|
|
`Truncated: ${truncation.outputLines} lines shown (${formatSize(truncation.maxBytes ?? DEFAULT_MAX_BYTES)} limit)`,
|
|
);
|
|
}
|
|
}
|
|
text += "\n" + theme.fg("warning", `[${warnings.join(". ")}]`);
|
|
}
|
|
}
|
|
} else if (this.toolName === "read") {
|
|
const path = shortenPath(this.args?.file_path || this.args?.path || "");
|
|
const offset = this.args?.offset;
|
|
const limit = this.args?.limit;
|
|
|
|
// Build path display with offset/limit suffix (in warning color if offset/limit used)
|
|
let pathDisplay = path ? theme.fg("accent", path) : theme.fg("toolOutput", "...");
|
|
if (offset !== undefined || limit !== undefined) {
|
|
const startLine = offset ?? 1;
|
|
const endLine = limit !== undefined ? startLine + limit - 1 : "";
|
|
pathDisplay += theme.fg("warning", `:${startLine}${endLine ? `-${endLine}` : ""}`);
|
|
}
|
|
|
|
text = theme.fg("toolTitle", theme.bold("read")) + " " + pathDisplay;
|
|
|
|
if (this.result) {
|
|
const output = this.getTextOutput();
|
|
const lines = output.split("\n");
|
|
|
|
const maxLines = this.expanded ? lines.length : 10;
|
|
const displayLines = lines.slice(0, maxLines);
|
|
const remaining = lines.length - maxLines;
|
|
|
|
text += "\n\n" + displayLines.map((line: string) => theme.fg("toolOutput", replaceTabs(line))).join("\n");
|
|
if (remaining > 0) {
|
|
text += theme.fg("toolOutput", `\n... (${remaining} more lines)`);
|
|
}
|
|
|
|
// Show truncation warning at the bottom (outside collapsed area)
|
|
const truncation = this.result.details?.truncation;
|
|
if (truncation?.truncated) {
|
|
if (truncation.firstLineExceedsLimit) {
|
|
text +=
|
|
"\n" +
|
|
theme.fg(
|
|
"warning",
|
|
`[First line exceeds ${formatSize(truncation.maxBytes ?? DEFAULT_MAX_BYTES)} limit]`,
|
|
);
|
|
} else if (truncation.truncatedBy === "lines") {
|
|
text +=
|
|
"\n" +
|
|
theme.fg(
|
|
"warning",
|
|
`[Truncated: showing ${truncation.outputLines} of ${truncation.totalLines} lines (${truncation.maxLines ?? DEFAULT_MAX_LINES} line limit)]`,
|
|
);
|
|
} else {
|
|
text +=
|
|
"\n" +
|
|
theme.fg(
|
|
"warning",
|
|
`[Truncated: ${truncation.outputLines} lines shown (${formatSize(truncation.maxBytes ?? DEFAULT_MAX_BYTES)} limit)]`,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
} else if (this.toolName === "write") {
|
|
const path = shortenPath(this.args?.file_path || this.args?.path || "");
|
|
const fileContent = this.args?.content || "";
|
|
const lines = fileContent ? fileContent.split("\n") : [];
|
|
const totalLines = lines.length;
|
|
|
|
text =
|
|
theme.fg("toolTitle", theme.bold("write")) +
|
|
" " +
|
|
(path ? theme.fg("accent", path) : theme.fg("toolOutput", "..."));
|
|
if (totalLines > 10) {
|
|
text += ` (${totalLines} lines)`;
|
|
}
|
|
|
|
// Show first 10 lines of content if available
|
|
if (fileContent) {
|
|
const maxLines = this.expanded ? lines.length : 10;
|
|
const displayLines = lines.slice(0, maxLines);
|
|
const remaining = lines.length - maxLines;
|
|
|
|
text += "\n\n" + displayLines.map((line: string) => theme.fg("toolOutput", replaceTabs(line))).join("\n");
|
|
if (remaining > 0) {
|
|
text += theme.fg("toolOutput", `\n... (${remaining} more lines)`);
|
|
}
|
|
}
|
|
} else if (this.toolName === "edit") {
|
|
const path = shortenPath(this.args?.file_path || this.args?.path || "");
|
|
text =
|
|
theme.fg("toolTitle", theme.bold("edit")) +
|
|
" " +
|
|
(path ? theme.fg("accent", path) : theme.fg("toolOutput", "..."));
|
|
|
|
if (this.result) {
|
|
// Show error message if it's an error
|
|
if (this.result.isError) {
|
|
const errorText = this.getTextOutput();
|
|
if (errorText) {
|
|
text += "\n\n" + theme.fg("error", errorText);
|
|
}
|
|
} else if (this.result.details?.diff) {
|
|
// Show diff if available
|
|
const diffLines = this.result.details.diff.split("\n");
|
|
const coloredLines = diffLines.map((line: string) => {
|
|
if (line.startsWith("+")) {
|
|
return theme.fg("toolDiffAdded", line);
|
|
} else if (line.startsWith("-")) {
|
|
return theme.fg("toolDiffRemoved", line);
|
|
} else {
|
|
return theme.fg("toolDiffContext", line);
|
|
}
|
|
});
|
|
text += "\n\n" + coloredLines.join("\n");
|
|
}
|
|
}
|
|
} else if (this.toolName === "ls") {
|
|
const path = shortenPath(this.args?.path || ".");
|
|
const limit = this.args?.limit;
|
|
|
|
text = theme.fg("toolTitle", theme.bold("ls")) + " " + theme.fg("accent", path);
|
|
if (limit !== undefined) {
|
|
text += theme.fg("toolOutput", ` (limit ${limit})`);
|
|
}
|
|
|
|
if (this.result) {
|
|
const output = this.getTextOutput().trim();
|
|
if (output) {
|
|
const lines = output.split("\n");
|
|
const maxLines = this.expanded ? lines.length : 20;
|
|
const displayLines = lines.slice(0, maxLines);
|
|
const remaining = lines.length - maxLines;
|
|
|
|
text += "\n\n" + displayLines.map((line: string) => theme.fg("toolOutput", line)).join("\n");
|
|
if (remaining > 0) {
|
|
text += theme.fg("toolOutput", `\n... (${remaining} more lines)`);
|
|
}
|
|
}
|
|
|
|
// Show truncation warning at the bottom (outside collapsed area)
|
|
const entryLimit = this.result.details?.entryLimitReached;
|
|
const truncation = this.result.details?.truncation;
|
|
if (entryLimit || truncation?.truncated) {
|
|
const warnings: string[] = [];
|
|
if (entryLimit) {
|
|
warnings.push(`${entryLimit} entries limit`);
|
|
}
|
|
if (truncation?.truncated) {
|
|
warnings.push(`${formatSize(truncation.maxBytes ?? DEFAULT_MAX_BYTES)} limit`);
|
|
}
|
|
text += "\n" + theme.fg("warning", `[Truncated: ${warnings.join(", ")}]`);
|
|
}
|
|
}
|
|
} else if (this.toolName === "find") {
|
|
const pattern = this.args?.pattern || "";
|
|
const path = shortenPath(this.args?.path || ".");
|
|
const limit = this.args?.limit;
|
|
|
|
text =
|
|
theme.fg("toolTitle", theme.bold("find")) +
|
|
" " +
|
|
theme.fg("accent", pattern) +
|
|
theme.fg("toolOutput", ` in ${path}`);
|
|
if (limit !== undefined) {
|
|
text += theme.fg("toolOutput", ` (limit ${limit})`);
|
|
}
|
|
|
|
if (this.result) {
|
|
const output = this.getTextOutput().trim();
|
|
if (output) {
|
|
const lines = output.split("\n");
|
|
const maxLines = this.expanded ? lines.length : 20;
|
|
const displayLines = lines.slice(0, maxLines);
|
|
const remaining = lines.length - maxLines;
|
|
|
|
text += "\n\n" + displayLines.map((line: string) => theme.fg("toolOutput", line)).join("\n");
|
|
if (remaining > 0) {
|
|
text += theme.fg("toolOutput", `\n... (${remaining} more lines)`);
|
|
}
|
|
}
|
|
|
|
// Show truncation warning at the bottom (outside collapsed area)
|
|
const resultLimit = this.result.details?.resultLimitReached;
|
|
const truncation = this.result.details?.truncation;
|
|
if (resultLimit || truncation?.truncated) {
|
|
const warnings: string[] = [];
|
|
if (resultLimit) {
|
|
warnings.push(`${resultLimit} results limit`);
|
|
}
|
|
if (truncation?.truncated) {
|
|
warnings.push(`${formatSize(truncation.maxBytes ?? DEFAULT_MAX_BYTES)} limit`);
|
|
}
|
|
text += "\n" + theme.fg("warning", `[Truncated: ${warnings.join(", ")}]`);
|
|
}
|
|
}
|
|
} else if (this.toolName === "grep") {
|
|
const pattern = this.args?.pattern || "";
|
|
const path = shortenPath(this.args?.path || ".");
|
|
const glob = this.args?.glob;
|
|
const limit = this.args?.limit;
|
|
|
|
text =
|
|
theme.fg("toolTitle", theme.bold("grep")) +
|
|
" " +
|
|
theme.fg("accent", `/${pattern}/`) +
|
|
theme.fg("toolOutput", ` in ${path}`);
|
|
if (glob) {
|
|
text += theme.fg("toolOutput", ` (${glob})`);
|
|
}
|
|
if (limit !== undefined) {
|
|
text += theme.fg("toolOutput", ` limit ${limit}`);
|
|
}
|
|
|
|
if (this.result) {
|
|
const output = this.getTextOutput().trim();
|
|
if (output) {
|
|
const lines = output.split("\n");
|
|
const maxLines = this.expanded ? lines.length : 15;
|
|
const displayLines = lines.slice(0, maxLines);
|
|
const remaining = lines.length - maxLines;
|
|
|
|
text += "\n\n" + displayLines.map((line: string) => theme.fg("toolOutput", line)).join("\n");
|
|
if (remaining > 0) {
|
|
text += theme.fg("toolOutput", `\n... (${remaining} more lines)`);
|
|
}
|
|
}
|
|
|
|
// Show truncation warning at the bottom (outside collapsed area)
|
|
const matchLimit = this.result.details?.matchLimitReached;
|
|
const truncation = this.result.details?.truncation;
|
|
const linesTruncated = this.result.details?.linesTruncated;
|
|
if (matchLimit || truncation?.truncated || linesTruncated) {
|
|
const warnings: string[] = [];
|
|
if (matchLimit) {
|
|
warnings.push(`${matchLimit} matches limit`);
|
|
}
|
|
if (truncation?.truncated) {
|
|
warnings.push(`${formatSize(truncation.maxBytes ?? DEFAULT_MAX_BYTES)} limit`);
|
|
}
|
|
if (linesTruncated) {
|
|
warnings.push("some lines truncated");
|
|
}
|
|
text += "\n" + theme.fg("warning", `[Truncated: ${warnings.join(", ")}]`);
|
|
}
|
|
}
|
|
} else {
|
|
// Generic tool
|
|
text = theme.fg("toolTitle", theme.bold(this.toolName));
|
|
|
|
const content = JSON.stringify(this.args, null, 2);
|
|
text += "\n\n" + content;
|
|
const output = this.getTextOutput();
|
|
if (output) {
|
|
text += "\n" + output;
|
|
}
|
|
}
|
|
|
|
return text;
|
|
}
|
|
}
|