@every-env/cli
Version:
Multi-agent orchestrator for AI-powered development workflows
15 lines • 587 B
TypeScript
interface CommandState {
lastUsedAgents?: {
plan?: string;
work?: string;
review?: string;
research?: string;
};
[key: string]: any;
}
export declare function getCommandState(): CommandState;
export declare function saveCommandState(state: CommandState): void;
export declare function updateLastUsedAgent(command: 'plan' | 'work' | 'review' | 'research', agent: string): void;
export declare function getLastUsedAgent(command: 'plan' | 'work' | 'review' | 'research'): string | undefined;
export {};
//# sourceMappingURL=command-state.d.ts.map