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
25 lines • 765 B
TypeScript
/**
* FAF VIBE Sync - Alternative sync targets for no-file-system platforms
* When there's no CLAUDE.md, we sync to platform-native locations
*/
export interface VibeSyncTarget {
platform: string;
target: string;
method: 'file' | 'env' | 'api' | 'clipboard';
instructions: string;
}
export declare class VibeSync {
/**
* Get sync target based on platform
*/
static getSyncTarget(platform: string): VibeSyncTarget;
/**
* Perform platform-specific sync
*/
static syncContext(content: string, platform: string, projectPath: string): Promise<boolean>;
/**
* Generate VIBE progression message
*/
static getProgressionMessage(currentScore: number): string;
}
//# sourceMappingURL=vibe-sync.d.ts.map