naming-conventions
SKILL.md
Naming Conventions
Type Naming
Use type declarations, not interface. This codebase follows type-driven development.
| Type | Convention | Example |
|---|---|---|
| Types, Enums | PascalCase | EnvironmentConfig, CodeArtifactStackProps, BucketProps |
| Functions, Variables | camelCase | createBucket, bucketName |
| AWS Resource Names | kebab-case | my-bucket-dev-use1 |
| Enum Values | SCREAMING_SNAKE_CASE | Account.PROD, Region.US_EAST_1 |
Type Naming Pattern: