mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
- Added 175 new high-quality skills across all categories - 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other - Updated all language READMEs and SKILL.md - Weekly update by MyClaw.ai
9 lines
437 B
JavaScript
9 lines
437 B
JavaScript
// Usage: node scripts/validate-modules.js ./src/evolve ./src/gep/solidify
|
|
// Requires each module to verify it loads without errors.
|
|
// Paths are resolved relative to cwd (repo root), not this script's location.
|
|
const path = require('path');
|
|
const modules = process.argv.slice(2);
|
|
if (!modules.length) { console.error('No modules specified'); process.exit(1); }
|
|
for (const m of modules) { require(path.resolve(m)); }
|
|
console.log('ok');
|