| 749 | export type ChangedStatus = "added" | "modified" | "deleted" | "renamed" | "untracked"; |
| 750 | |
| 751 | export interface ChangedFile { |
| 752 | path: string; |
| 753 | status: ChangedStatus; |
| 754 | /** Pre-rename path — present only for `renamed` entries. */ |
| 755 | oldPath?: string; |
| 756 | } |
| 757 | |
| 758 | /** Live view of a chat session's private worktree. `exists: false` when the |
| 759 | * agent hasn't started yet (the worktree is created lazily on the first turn) |
nothing calls this directly
no outgoing calls
no test coverage detected