naming-conventions — community naming-conventions, cdk-constructs-library, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Code Generation Agents needing consistent naming conventions in their infrastructure-as-code constructs A comprehensive AWS Cloud Development Kit (CDK) library providing infrastructure-as-code constructs and utilities for AWS applications

crmagz crmagz
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The naming-conventions skill by crmagz is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Code Generation Agents needing consistent naming conventions in their infrastructure-as-code constructs

Core Value

Empowers agents to enforce type-driven development using PascalCase for types and enums, and camelCase for functions and variables, ensuring consistency across AWS Cloud Development Kit (CDK) libraries and utilities

Capabilities Granted for naming-conventions

Standardizing type declarations in CDK projects
Automating code reviews for naming convention compliance
Generating consistent infrastructure-as-code constructs for AWS applications

! Prerequisites & Limits

  • Limited to AWS Cloud Development Kit (CDK) projects
  • Requires understanding of type-driven development principles
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

naming-conventions

Install naming-conventions, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Naming Conventions

Type Naming

Use type declarations, not interface. This codebase follows type-driven development.

TypeConventionExample
Types, EnumsPascalCaseEnvironmentConfig, CodeArtifactStackProps, BucketProps
Functions, VariablescamelCasecreateBucket, bucketName
AWS Resource Nameskebab-casemy-bucket-dev-use1
Enum ValuesSCREAMING_SNAKE_CASEAccount.PROD, Region.US_EAST_1

Type Naming Pattern:

typescript
1// CORRECT - Use type declarations 2export type BucketProps = { 3 bucketName: string; 4 env: EnvironmentConfig['env']; 5}; 6 7export type EnvironmentConfig = { 8 name: string; 9 region: string; 10 account: string; 11}; 12 13// INCORRECT - Don't use interface 14export interface BucketProps { 15 // ❌ 16 bucketName: string; 17}

Resource Naming Pattern

Include environment and region to prevent naming collisions:

typescript
1// Resource naming pattern 2`${resourceName}-${props.env.name}-${props.env.region}` 3// Examples 4`aurora-cluster-dev-use1``api-gateway-prod-use1``waf-acl-staging-use1`;

Function Naming

Use verbNoun pattern for function names:

typescript
1// CORRECT 2export const createBucket = () => {}; 3export const getVpcConfig = () => {}; 4export const updateSecurityGroup = () => {}; 5 6// INCORRECT 7export const bucketCreate = () => {}; 8export const VpcConfigGet = () => {};

File Naming

  • Constructs: kebab-case.ts (e.g., api-gateway.ts)
  • Types: kebab-case-type.ts or kebab-case.ts in types directory
  • Enums: kebab-case-enum.ts or kebab-case.ts in enum directory
  • Utilities: kebab-case.ts in util directory

Export Patterns

  • Each package exports from src/index.ts
  • Root package exports from src/index.ts
  • Use named exports, avoid default exports where possible

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is naming-conventions?

Perfect for Code Generation Agents needing consistent naming conventions in their infrastructure-as-code constructs A comprehensive AWS Cloud Development Kit (CDK) library providing infrastructure-as-code constructs and utilities for AWS applications

How do I install naming-conventions?

Run the command: npx killer-skills add crmagz/cdk-constructs-library/naming-conventions. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for naming-conventions?

Key use cases include: Standardizing type declarations in CDK projects, Automating code reviews for naming convention compliance, Generating consistent infrastructure-as-code constructs for AWS applications.

Which IDEs are compatible with naming-conventions?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for naming-conventions?

Limited to AWS Cloud Development Kit (CDK) projects. Requires understanding of type-driven development principles.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add crmagz/cdk-constructs-library/naming-conventions. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use naming-conventions immediately in the current project.

Related Skills

Looking for an alternative to naming-conventions or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI