coding-standards

Installation
SKILL.md

Coding Standards

Naming Conventions

Tip Format Ornek
Variable camelCase userName, itemCount
Function camelCase, verb-first getUserById, calculateTotal
Class/Type PascalCase UserService, OrderItem
Constant UPPER_SNAKE MAX_RETRIES, API_URL
File kebab-case user-service.ts, order-item.ts
Boolean is/has/should prefix isActive, hasPermission

Immutability

// YANLIS: Mutate
user.name = newName;
items.push(newItem);
Installs
11
GitHub Stars
507
First Seen
Mar 23, 2026
coding-standards — vibeeval/vibecosystem