* Record file state for change detection. * Called by tools (e.g., propose_plan) after reading/writing files.
(filePath: string, state: FileState)
| 5506 | * Called by tools (e.g., propose_plan) after reading/writing files. |
| 5507 | */ |
| 5508 | async recordFileState(filePath: string, state: FileState): Promise<void> { |
| 5509 | await this.fileChangeTracker.record(filePath, state); |
| 5510 | } |
| 5511 | |
| 5512 | /** Get the count of tracked files for UI display. */ |
| 5513 | getTrackedFilesCount(): number { |
no test coverage detected