hoangnguyen0403/javascript tooling
Development tools, linting, and testing for JavaScript projects.
npx skills add https://github.com/HoangNguyen0403/agent-skills-standard --skill JavaScript Tooling
Essential tooling for JavaScript development.
npm/yarn/pnpm).// .eslintrc.js
module.exports = {
extends: ['eslint:recommended', 'prettier'],
rules: { 'no-console': 'warn', 'prefer-const': 'error' },
};
// .prettierrc
{ "semi": true, "singleQuote": true, "printWidth": 80 }
// jest.config.js
export default {
coverageThreshold: { global: { lines: 80 } },
};
For testing patterns and CI/CD:
See references/REFERENCE.md.
best-practices | language
Take hoangnguyen0403/javascript tooling 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.