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
18 lines • 838 B
TypeScript
/**
* 🚀 .faf CLI - Main Export
* Universal AI Context Format Tooling
*/
export { program } from './cli';
export { validateFafFile } from './commands/validate';
export { initFafFile } from './commands/init';
export { scoreFafFile } from './commands/score';
export { syncFafFile } from './commands/sync';
export { auditFafFile } from './commands/audit';
export { lintFafFile } from './commands/lint';
export { findFafFile, detectProjectType } from './utils/file-utils';
export { validateSchema } from './schema/faf-schema';
export { generateFafFromProject } from './generators/faf-generator-championship';
export { FafCompiler } from './compiler/faf-compiler';
export type { CompilationResult } from './compiler/faf-compiler';
export type { FafSchema, ValidationResult } from './schema/faf-schema';
//# sourceMappingURL=index.d.ts.map