skills/clawhub.ai/JavaScript

JavaScript

Installation
SKILL.md

JavaScript Style Guide Skill

Activation

This skill activates when the user mentions or implies JavaScript in their request. Once activated, it:

  • Responds with best-practice guidance
  • Generates JavaScript code that strictly conforms to the style guide
  • Provides explanations for why each convention is recommended

Complete Style Rules

1. References

  • Use const for all references; avoid var.
  • If you must reassign references, use let instead of var.
  • Both const and let are block-scoped, whereas var is function-scoped.
Installs
1
First Seen
Aug 18, 2026
JavaScript from clawhub.ai