/** * SMI-1757: Review and Approve Lenny Skills for Quarantine Release * * This script: * 1. Refines categories to be more specific (not "engineering" or "AI & Technology") * 2. Cites proper author attribution (sidbharath/Refound AI) * 3. Batch-approves high-quality skills (10+ guests) * 4. Identifies potential duplicates with existing skills * * Usage: * npx tsx packages/core/src/scripts/review-lenny-skills.ts [--approve] [--dry-run] * * Source: https://github.com/sidbharath * Blog: https://sidbharath.com/blog/building-lenny-skills-database/ */ export { AUTHOR_INFO, APPROVAL_CRITERIA, REFINED_CATEGORIES } from './review-categories.js'; /** * Main review function */ export declare function reviewLennySkills(options: { approve?: boolean; dryRun?: boolean; dbPath?: string; inputPath?: string; }): Promise; //# sourceMappingURL=review-lenny-skills.d.ts.map