MCPcopy
hub / github.com/giancarloerra/SocratiCode / ProjectItem

Interface ProjectItem

extension/src/sidebar.ts:24–28  ·  view source on GitHub ↗

* 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

Source from the content-addressed store, hash-verified

22 */
23
24interface ProjectItem {
25 projectId: string;
26 graphPath?: string;
27 mtime?: Date;
28}
29
30const GRAPH_DIR = path.join(os.tmpdir(), "socraticode-graph");
31

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected