coding-standards
Installation
SKILL.md
Coding Standards
D9 Canonical Reference. This is the single source of truth for cross-language coding standards. Language-specific reviewers (
@typescript-reviewer,@python-reviewer, etc.) embed these rules. Agents cite this skill as "See also: /coding-standards."
Naming Conventions
Variables & Functions
| Language | Variables | Functions | Constants |
|---|---|---|---|
| TypeScript / JavaScript | camelCase |
camelCase |
SCREAMING_SNAKE_CASE |
| Python | snake_case |
snake_case |
SCREAMING_SNAKE_CASE |
| Go | camelCase |
camelCase |
CamelCase (exported) |
| Rust | snake_case |
snake_case |
SCREAMING_SNAKE_CASE |
| Java | camelCase |
camelCase |
SCREAMING_SNAKE_CASE |
| C# | camelCase |
PascalCase |
PascalCase |
| Swift | camelCase |
camelCase |
camelCase |
Related skills