/** Creature archetype — derived from project domain */ export type Archetype = 'athletic' | 'winged' | 'playful' | 'sentinel' | 'cerebral' | 'crystalline' | 'harmonic' | 'organic' | 'phantom' | 'primal' | 'radiant' | 'adaptive'; export interface DomainProfile { /** Detected archetype */ archetype: Archetype; /** Keywords that matched */ matchedKeywords: string[]; /** Raw text that was analyzed */ sourceText: string; /** Match confidence (0-1) */ confidence: number; } /** * Analyze project domain from README, package.json description, etc. */ export declare function analyzeDomain(cwd: string): DomainProfile;