/** * Daemon Command * * Runs a persistent daemon that acts as the central hub for: * - Browser connections (GitNexus web app) * - MCP server connections (from AI tools like Cursor, Antigravity) * * This allows multiple AI tools to share the same browser bridge. * Also stores codebase context sent by the browser for MCP resource exposure. */ /** * Codebase context sent from browser */ interface CodebaseContext { projectName: string; stats: { fileCount: number; functionCount: number; classCount: number; interfaceCount: number; methodCount: number; }; hotspots: Array<{ name: string; type: string; filePath: string; connections: number; }>; folderTree: string; } interface DaemonOptions { port: string; } export declare function getCodebaseContext(): CodebaseContext | null; export declare function daemonCommand(options: DaemonOptions): Promise; export {}; //# sourceMappingURL=daemon.d.ts.map