UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

13 lines 440 B
import { Command } from "commander"; import { ProjectType } from "../types/config.js"; export interface InitCommandOptions { force?: boolean; yes?: boolean; defaultAgent?: string; projectType?: ProjectType; enableAgent?: string[]; cli?: string; } export declare function createInitCommand(): Command; export declare function initCommand(options: InitCommandOptions): Promise<void>; //# sourceMappingURL=init.d.ts.map