diff options
| author | Evan Senter <[email protected]> | 2025-04-18 18:14:45 +0100 |
|---|---|---|
| committer | Evan Senter <[email protected]> | 2025-04-18 18:16:52 +0100 |
| commit | 97db77997fd6369031d2f1cf750051999fb0b5b5 (patch) | |
| tree | aed1947e1dd6b572b13bec5a5f48fb5b1690834a /packages/cli/src/tools/terminal.tool.ts | |
| parent | 3829ac635307a77a1af0141c2db7f4135c74fcf6 (diff) | |
Including a test harness for it, and making sure the cursor is always at the end.
Diffstat (limited to 'packages/cli/src/tools/terminal.tool.ts')
| -rw-r--r-- | packages/cli/src/tools/terminal.tool.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/cli/src/tools/terminal.tool.ts b/packages/cli/src/tools/terminal.tool.ts index 73f4af7d..ce524fa5 100644 --- a/packages/cli/src/tools/terminal.tool.ts +++ b/packages/cli/src/tools/terminal.tool.ts @@ -142,10 +142,7 @@ export class TerminalTool extends BaseTool< private rejectShellReady: ((reason?: any) => void) | undefined; // Definite assignment assertion private readonly backgroundTerminalAnalyzer: BackgroundTerminalAnalyzer; - constructor( - rootDirectory: string, - outputLimit: number = MAX_OUTPUT_LENGTH, - ) { + constructor(rootDirectory: string, outputLimit: number = MAX_OUTPUT_LENGTH) { const toolDisplayName = 'Terminal'; // --- LLM-Facing Description --- // Updated description for background tasks to mention polling and LLM analysis |
