arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
10 lines • 527 B
TypeScript
export interface PersonalityConfig {
mode: "professional" | "fun" | "bold";
emojis: boolean;
humor: boolean;
}
export declare const personalities: Record<string, PersonalityConfig>;
export declare function getMessage(config: PersonalityConfig, key: string, fallback?: string): string;
export declare function formatList(config: PersonalityConfig, items: string[]): string;
export declare function getPresetDescription(config: PersonalityConfig, preset: string): string;
//# sourceMappingURL=cli-personality.d.ts.map