UNPKG

faf-cli

Version:

😽 TURBO-CAT: The Rapid Catalytic Converter • Project DNA ✨ for ANY AI • Fully Integrated with React, Next.js, Svelte, TypeScript, Vite & n8n • FREE FOREVER • 10,000+ developers • Championship Edition

33 lines • 1.07 kB
/** * 🧡 Trust Dashboard Command - The Emotional Core * Transforms developer psychology from hope-driven to trust-driven AI development * * Mission: "I don't worry about AI context complexity anymore" */ export interface TrustScore { overall: number; contextCompleteness: number; aiCompatibility: number; freshnessScore: number; verificationStatus: 'verified' | 'unverified' | 'failed'; } export interface TrustDashboardOptions { detailed?: boolean; confidence?: boolean; garage?: boolean; panic?: boolean; quality?: boolean; } /** * Calculate comprehensive trust score based on .faf quality */ export declare function calculateTrustScore(fafPath: string): Promise<TrustScore>; /** * Display the Trust Dashboard - the emotional core UI */ export declare function displayTrustDashboard(fafPath: string, trustScore: TrustScore, detailed?: boolean): Promise<void>; /** * Main trust command handler */ export declare function trustCommand(options?: TrustDashboardOptions): Promise<void>; //# sourceMappingURL=trust.d.ts.map