import { validateLibrary } from '../src/skill-library.js'; const r = validateLibrary(); if (r.ok) { console.log('Library valid — all local: sources found.'); } else { console.log('Validation errors:'); r.errors.forEach((e: string) => console.log(' ' + e)); process.exit(1); }