* Sidebar TreeView showing indexed projects discovered from the engine's * temp directory. The engine writes interactive graph HTML to * `os.tmpdir()/socraticode-graph/ .html` whenever the user (or * their AI assistant) calls `codebase_graph_visualize`. Listing those * files gives a lo
| 22 | */ |
| 23 | |
| 24 | interface ProjectItem { |
| 25 | projectId: string; |
| 26 | graphPath?: string; |
| 27 | mtime?: Date; |
| 28 | } |
| 29 | |
| 30 | const GRAPH_DIR = path.join(os.tmpdir(), "socraticode-graph"); |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected