automattic/testing-js
Guidelines for checking JavaScript files for syntax errors
npx skills add https://github.com/Automattic/studio --skill testing-js
Use this skill when validating JavaScript files for syntax errors.
Do not use this skill for PHP validation.
Find all JS files in the project, excluding node_modules/, build/, and dist/ directories:
find . -name "*.js" -not -path "*/node_modules/*" -not -path "*/build/*" -not -path "*/dist/*"
Use Node to check each JS file for syntax errors:
node --check <file>
Take automattic/testing-js from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.