WP2: Create AgentSession basic structure + update plan for keep-old-code strategy

This commit is contained in:
Mario Zechner 2025-12-09 00:05:06 +01:00
parent 3f305502cd
commit 29d96ab25a
4 changed files with 204 additions and 88 deletions

View file

@ -35,7 +35,7 @@ export interface BashResult {
cancelled: boolean;
/** Whether the output was truncated */
truncated: boolean;
/** Path to temp file containing full output (if output exceeded threshold) */
/** Path to temp file containing full output (if output exceeded truncation threshold) */
fullOutputPath?: string;
}