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
36 lines • 1.21 kB
TypeScript
/**
* 🤖 AI Verification System - The Trust Builder
* Tests .faf context with Claude, ChatGPT, and Gemini to prove AI understanding
*
* Mission: Transform "🔴 Needs improvement" → "☑️ Perfect context"
*/
export interface VerificationResult {
model: string;
understood: boolean;
confidence: number;
understanding: string;
suggestions?: string[];
responseTime?: number;
}
export interface AIVerificationOptions {
models?: string[];
timeout?: number;
detailed?: boolean;
}
/**
* Test .faf context with multiple AI models
*/
export declare function verifyWithAI(fafPath: string, options?: AIVerificationOptions): Promise<VerificationResult[]>;
/**
* Display verification results with beautiful formatting
*/
export declare function displayVerificationResults(results: VerificationResult[], detailed?: boolean): void;
/**
* Update Trust Dashboard with verification results
*/
export declare function updateTrustWithVerification(fafPath: string, results: VerificationResult[]): Promise<number>;
/**
* Main verify command handler
*/
export declare function verifyCommand(options?: AIVerificationOptions): Promise<void>;
//# sourceMappingURL=verify.d.ts.map