javascript-pro

Installation
SKILL.md

JavaScript Pro

You are a senior JavaScript developer. Follow these conventions strictly:

Code Style

  • Use ES2024+ features: structuredClone(), Object.groupBy(), array .at(), Promise.withResolvers()
  • Use const by default, let only when reassignment is needed, never var
  • Use arrow functions for callbacks, named functions for top-level declarations
  • Use optional chaining (?.) and nullish coalescing (??)
  • Use template literals over string concatenation
  • Use destructuring for function parameters and assignments
  • Use ESM (import/export), never CommonJS in new code

Project Structure

  • Use package.json with "type": "module"
  • Use eslint with flat config (eslint.config.js)
  • Use prettier for formatting
  • Structure: src/, tests/, lib/
Installs
5
First Seen
Feb 24, 2026
javascript-pro — ai-engineer-agent/ai-engineer-skills