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

170 lines (167 loc) • 6.39 kB
"use strict"; /** * FAF VIBE Sync - Alternative sync targets for no-file-system platforms * When there's no CLAUDE.md, we sync to platform-native locations */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.VibeSync = void 0; const fs = __importStar(require("fs")); const path = __importStar(require("path")); const colors_1 = require("../fix-once/colors"); class VibeSync { /** * Get sync target based on platform */ static getSyncTarget(platform) { switch (platform.toLowerCase()) { case 'replit': return { platform: 'Replit', target: '.faf-context.md', // Visible in file tree method: 'file', instructions: 'FAF syncs to .faf-context.md - Share this with any AI!' }; case 'lovable': return { platform: 'Lovable', target: 'README.faf.md', // Shows in their UI method: 'file', instructions: 'Copy README.faf.md content to Claude/ChatGPT for instant context' }; case 'wix': case 'base44': return { platform: 'Wix/Base44', target: 'Clipboard', method: 'clipboard', instructions: 'FAF copied context to clipboard - Paste in any AI!' }; case 'glitch': return { platform: 'Glitch', target: '.env', method: 'env', instructions: 'FAF context in .env as FAF_CONTEXT (copy to AI)' }; case 'codesandbox': return { platform: 'CodeSandbox', target: 'faf-context.json', method: 'file', instructions: 'Context saved to faf-context.json for AI sharing' }; default: return { platform: 'Professional', target: 'CLAUDE.md', method: 'file', instructions: 'Synced to CLAUDE.md for Claude Desktop and other AI tools' }; } } /** * Perform platform-specific sync */ static async syncContext(content, platform, projectPath) { const target = this.getSyncTarget(platform); try { switch (target.method) { case 'file': const filePath = path.join(projectPath, target.target); await fs.promises.writeFile(filePath, content); return true; case 'env': // For .env files, add as multiline string const envPath = path.join(projectPath, '.env'); const envContent = `\n# FAF Context for AI\nFAF_CONTEXT="${content.replace(/"/g, '\\"')}"\n`; await fs.promises.appendFile(envPath, envContent); return true; case 'clipboard': // Use clipboardy or similar console.log('šŸ“‹ Context ready for clipboard (install clipboardy for auto-copy)'); console.log('\n--- COPY BELOW FOR AI ---\n'); console.log(content); console.log('\n--- END CONTEXT ---\n'); return true; case 'api': // Future: POST to FAF cloud service console.log(colors_1.chalk.gray('API sync not available - use clipboard mode')); return false; default: return false; } } catch (error) { console.error('Sync failed:', error); return false; } } /** * Generate VIBE progression message */ static getProgressionMessage(currentScore) { if (currentScore < 40) { return ` šŸŽÆ Your Prototype Score: ${currentScore}% šŸ“ˆ With FAF VIBE: Could reach 65%+ šŸš€ With Claude Desktop: Could reach 85%+ You're building something cool! Let FAF help you level up: 1. Run 'faf enhance' to boost your score 2. Add more context about your decisions 3. Consider Claude Desktop for bi-directional sync `; } else if (currentScore < 70) { return ` ✨ Your Score: ${currentScore}% - Getting Professional! šŸ“ˆ With Claude Desktop: Could reach 85%+ You're on the path to championship context: 1. Add technical decisions to your .faf 2. Document your architecture choices 3. Get Claude Desktop for seamless AI workflow `; } else { return ` šŸ† Championship Score: ${currentScore}%! You've graduated from prototype to professional! Consider the $100 Pro plan for enterprise features. `; } } } exports.VibeSync = VibeSync; //# sourceMappingURL=vibe-sync.js.map