| 4 | import readline from "readline"; |
| 5 | |
| 6 | export interface ExtractedContext { |
| 7 | task: string; |
| 8 | approaches: string[]; |
| 9 | decisions: string[]; |
| 10 | currentState: string; |
| 11 | nextSteps: string[]; |
| 12 | blockers: string[]; |
| 13 | source: string; |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Attempt to auto-extract context from AI editor session data. |
nothing calls this directly
no outgoing calls
no test coverage detected