coding-standards

Installation
Summary

Universal coding standards and best practices for TypeScript, JavaScript, React, and Node.js projects.

  • Covers core principles (readability, KISS, DRY, YAGNI) with practical code examples showing good vs. bad patterns
  • Includes TypeScript/JavaScript standards for naming, immutability, error handling, async/await, and type safety
  • Provides React-specific guidance on component structure, custom hooks, state management, and conditional rendering
  • Details API design conventions, REST endpoints, response formats, and input validation with Zod schemas
  • Addresses file organization, documentation practices, performance optimization, testing patterns, and common code smells
SKILL.md

Coding Standards & Best Practices

Universal coding standards applicable across all projects.

Code Quality Principles

1. Readability First

  • Code is read more than written
  • Clear variable and function names
  • Self-documenting code preferred over comments
  • Consistent formatting

2. KISS (Keep It Simple, Stupid)

  • Simplest solution that works
  • Avoid over-engineering
  • No premature optimization
  • Easy to understand > clever code

3. DRY (Don't Repeat Yourself)

Related skills
Installs
397
GitHub Stars
37.3K
First Seen
Jan 21, 2026