#!/usr/bin/env node /** * Entry point for VS Code (Copilot agent) session indexing. * * Called by the VS Code Stop hook. Receives JSON on stdin: * { timestamp, cwd, sessionId, hookEventName, transcript_path, stop_hook_active } * * Reads the transcript file, converts to FullMessage[], and indexes * new messages into the shared sqlite-vec DB. * * Runs as a Node.js subprocess (not Bun) so native addons load correctly. */ export {}; //# sourceMappingURL=indexer-cli-vscode.d.ts.map