UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

14 lines 669 B
/** * VS Code integration module * * Provides WebSocket-based communication between the nanocoder CLI * and the VS Code extension for: * - Live diff previews * - File change approvals * - Chat integration * - Diagnostics sharing */ export { getExtensionStatus, getVsixPath, installExtension, isExtensionInstalled, isVSCodeCliAvailable, SUPPORTED_CLIS, } from './extension-installer.js'; export { DEFAULT_PORT, PROTOCOL_VERSION, } from './protocol.js'; export { closeAllDiffsInVSCode, closeDiffInVSCode, getVSCodeServer, getVSCodeServerSync, isVSCodeConnected, sendFileChangeToVSCode, VSCodeServer, } from './vscode-server.js'; //# sourceMappingURL=index.js.map