@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
15 lines • 680 B
JavaScript
import { Text } from 'ink';
import React from 'react';
// Note: The /setup-providers command is handled via app-util.ts which calls
// onEnterConfigWizardMode() directly, not through this command handler.
// This export exists for command registration only.
export const setupProvidersCommand = {
name: 'setup-providers',
description: 'Launch interactive configuration wizard',
handler: () => {
// This handler is never called - the command is intercepted in app-util.ts
// and handled via the mode system (onEnterConfigWizardMode)
return Promise.resolve(React.createElement(Text, {}, ''));
},
};
//# sourceMappingURL=setup-providers.js.map