What problem does it solve? Teams waste time on style debates and inconsistent code when no shared conventions exist. This Skill provides a ready-made set of TypeScript/JavaScript coding standards covering naming, structure, type safety, error handling, and async patterns, so conventions are established once and applied consistently. ## Core Features & Use Cases - Naming & Structure Rules: Enforces camelCase files and functions, PascalCase types and React components, UPPER_SNAKE_CASE constants, plus function length and parameter limits. - Type Safety & Error Handling: Bans any and unsafe type assertions, promotes discriminated unions, custom error classes, and explicit error propagation with concrete code examples. - Use Case: When setting up a new TypeScript project or onboarding a developer, load this Skill so every generated function follows early-return guard clauses, immutable array operations, and parallel Promise.all async patterns instead of ad-hoc styles. ## Quick Start Ask the agent to review this TypeScript module against our coding standards and fix any violations.