What problem does it solve? Inconsistent naming, missing documentation, and unclear comments slow down code reviews and create long-term maintenance debt. This Skill gives an AI reviewer a fixed, explicit rulebook so every pull request is checked against the same coding standards. ## Core Features & Use Cases - Naming Convention Checks: Enforces camelCase variables, UPPER_SNAKE_CASE constants, PascalCase classes and interfaces, and underscore-prefixed private fields, with common error examples. - Documentation Enforcement: Requires JSDoc on all public APIs (description, @param, @returns) and why-comments on complex logic. - Prioritized Diff Review: Analyzes only added lines in a diff and ranks violations as High (missing JSDoc), Medium (naming), or Low (missing why-comments). - Use Case: Paste a pull request diff and ask the agent to review it; it flags a public function missing JSDoc as high priority and a misnamed constant like max_retries as medium priority. ## Quick Start Review this pull request diff against the team coding standards and list all naming, JSDoc, and comment violations by priority.