UNPKG

cortexweaver

Version:

CortexWeaver is a command-line interface (CLI) tool that orchestrates a swarm of specialized AI agents, powered by Claude Code and Gemini CLI, to assist in software development. It transforms a high-level project plan (plan.md) into a series of coordinate

18 lines 725 B
/** * CLI Commands implementation * Contains all command logic extracted from the main CLI class */ export declare class CLICommands { private authManager; constructor(); authStatus(projectRoot?: string): Promise<string>; authConfigure(method?: string, projectRoot?: string): Promise<string>; authSwitch(method: string, projectRoot?: string): Promise<void>; logs(taskId: string, projectRoot?: string): Promise<string>; retry(taskId: string, projectRoot?: string): Promise<void>; listAgents(projectRoot?: string): Promise<string>; init(projectRoot?: string): Promise<void>; private createDefaultConfig; private createDefaultAgentPersonas; } //# sourceMappingURL=commands.d.ts.map