| 326 | dangerouslyDisableSandbox?: boolean; |
| 327 | } |
| 328 | export interface TaskOutputInput { |
| 329 | /** |
| 330 | * The task ID to get output from |
| 331 | */ |
| 332 | task_id: string; |
| 333 | /** |
| 334 | * Whether to wait for completion |
| 335 | */ |
| 336 | block: boolean; |
| 337 | /** |
| 338 | * Max wait time in ms |
| 339 | */ |
| 340 | timeout: number; |
| 341 | } |
| 342 | export interface ExitPlanModeInput { |
| 343 | /** |
| 344 | * Prompt-based permissions needed to implement the plan. These describe categories of actions rather than specific commands. |
nothing calls this directly
no outgoing calls
no test coverage detected