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
19 lines • 621 B
JavaScript
;
/**
* 📈 faf score - Scoring Command
* Calculates .faf completeness score with detailed breakdown
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.scoreFafFile = scoreFafFile;
const score_v3_1 = require("./score-v3");
async function scoreFafFile(file, options = {}) {
// Always use compiler-based scoring (Mk3)
return (0, score_v3_1.scoreCommandV3)(file, {
trace: options.trace,
verify: options.verify,
breakdown: options.breakdown,
checksum: options.checksum,
verbose: options.details
});
}
//# sourceMappingURL=score.js.map