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

24 lines 654 B
/** * VS Code extension installation utilities */ /** * Get the path to the bundled VSIX file */ export declare function getVsixPath(): string; /** * Check if the VS Code CLI is available */ export declare function isVSCodeCliAvailable(): boolean; /** * Check if the nanocoder VS Code extension is installed */ export declare function isExtensionInstalled(): boolean; /** * Install the VS Code extension from the bundled VSIX * Returns a promise that resolves when installation is complete */ export declare function installExtension(): Promise<{ success: boolean; message: string; }>; //# sourceMappingURL=extension-installer.d.ts.map