@every-env/cli
Version:
Multi-agent orchestrator for AI-powered development workflows
24 lines • 959 B
TypeScript
import React from "react";
import { ProjectType, RuntimeConfig } from "../../types/config.js";
import { ProjectDetectionResult } from "../../utils/project-detect.js";
type PartialAgentCfg = {
cli?: string;
args?: string[];
};
export interface InitPromptState {
step: "welcome" | "defaultAgent" | "projectType" | "additionalAgents" | "agentConfig" | "summary" | "complete";
defaultAgent: string;
projectType: ProjectType | null;
enabledAgents: string[];
agentConfigs: Record<string, PartialAgentCfg>;
currentAgentConfigIndex: number;
}
export interface InitPromptProps {
detectedProject: ProjectDetectionResult;
existingConfig: RuntimeConfig | null;
onComplete: (config: Partial<RuntimeConfig>) => void;
onCancel: () => void;
}
export declare function InitPrompts({ detectedProject, existingConfig, onComplete, onCancel }: InitPromptProps): React.JSX.Element;
export {};
//# sourceMappingURL=InitPrompts.d.ts.map