@every-env/cli
Version:
Multi-agent orchestrator for AI-powered development workflows
15 lines • 642 B
TypeScript
export interface PlanCommandOptions {
baseDir?: string;
configPath?: string;
agentcli?: string;
passThroughArgs?: string[];
}
export interface ClaudeConfig {
cli: string;
args: string[];
}
export declare function parsePlanDescription(args: string[]): Promise<string>;
export declare function renderPlanTemplate(baseDir: string, planDescription: string): Promise<string>;
export declare function executePlanCommand(cli: string, renderedPrompt: string, args: string[]): Promise<void>;
export declare function runPlanCommand(args: string[], options?: PlanCommandOptions): Promise<void>;
//# sourceMappingURL=plan.d.ts.map