research-cli
Version:
AI-powered research assistant with web search capabilities and beautiful terminal UI
21 lines • 730 B
TypeScript
/**
* Easymode command - Clipanion implementation
*
* This provides a complete interactive setup flow that walks new users
* through configuring their first AI provider with a delightful UX.
*/
import { Command } from "clipanion";
import { type SupportedProvider } from "../auth/keyring-manager.js";
export declare class EasymodeCommand extends Command {
static paths: string[][];
static usage: import("clipanion").Usage;
provider: string | undefined;
skipTest: boolean;
execute(): Promise<number>;
}
declare module "../ui/interactive.js" {
namespace InteractiveUI {
function showExistingSetupInfo(providers: SupportedProvider[]): void;
}
}
//# sourceMappingURL=easymode-clipanion.d.ts.map