cc-skill-coding-standards
Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.
npx skills add sickn33/agentic-awesome-skills --skill cc-skill-coding-standards --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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) - Extract common logic into functions - Create reusable components - Share utilities across modules - Avoid copy-paste programming ### 4. YAGNI (You Aren't Gonna Need It) - Don't build features before they're needed - Avoid speculative generality - Add complexity only when required - Start simple, refactor when needed ## TypeScript/JavaScript Standards ### Variable Naming ```typescript // ✅ GOOD: Descriptive names const marketSearchQuery = 'election' const isUserAuthenticated = true const totalRevenue = 1000 // ❌ BAD: Unclear names const q = 'election' const flag = true const x = 1000 ``` ### Function Naming ```typescript // ✅ GOOD: Verb-noun pattern async function fetchMarketData(marketId: string) { } function
- Code Quality Principles
- 1. Readability First
- 2. KISS (Keep It Simple, Stupid)
- 3. DRY (Don't Repeat Yourself)
- 4. YAGNI (You Aren't Gonna Need It)
- TypeScript/JavaScript Standards
- Variable Naming
- Function Naming
- Immutability Pattern (CRITICAL)
- Error Handling
- Async/Await Best Practices
- Type Safety
- React Best Practices
- Component Structure
What does the cc-skill-coding-standards skill do?
Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill cc-skill-coding-standards --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.