research-cli
Version:
AI-powered research assistant with web search capabilities and beautiful terminal UI
18 lines • 616 B
TypeScript
/**
* Easymode command - Guided setup for beginners
*
* This provides a complete interactive setup flow that walks new users
* through configuring their first AI provider with a delightful UX.
*/
import { Command } from "@commander-js/extra-typings";
import { type SupportedProvider } from "../auth/keyring-manager.js";
/**
* Create the easymode command
*/
export declare function createEasymodeCommand(): Command;
declare module "../ui/interactive.js" {
namespace InteractiveUI {
function showExistingSetupInfo(providers: SupportedProvider[]): void;
}
}
//# sourceMappingURL=easymode.d.ts.map