@ace-sdk/cli
Version:
ACE CLI - Command-line tool for intelligent pattern learning and playbook management
34 lines • 857 B
TypeScript
/**
* Configuration commands
*/
/**
* Configuration wizard - Interactive or non-interactive
*/
export declare function configCommand(options?: {
serverUrl?: string;
apiToken?: string;
orgId?: string;
projectId?: string;
}): Promise<void>;
/**
* Display current configuration
*/
export declare function configShowCommand(): Promise<void>;
/**
* Set a configuration value
*/
export declare function configSetCommand(key: string, value: string): Promise<void>;
/**
* Reset configuration to defaults
*/
export declare function configResetCommand(options: {
yes?: boolean;
}): Promise<void>;
/**
* Validate token and return organization/project info (non-destructive)
*/
export declare function configValidateCommand(options: {
serverUrl?: string;
apiToken?: string;
}): Promise<void>;
//# sourceMappingURL=config.d.ts.map