naming-conventions — community naming-conventions, cdk-constructs-library, community, ide skills

v1.0.0

About this Skill

Perfect for Code Generation Agents needing consistent naming conventions for AWS CDK projects. Naming conventions for types, functions, files, and resources. Use when creating new code or reviewing naming patterns. Emphasizes type-driven development.

crmagz crmagz
[6]
[0]
Updated: 1/20/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
33
Canonical Locale
en
Detected Body Locale
en

Perfect for Code Generation Agents needing consistent naming conventions for AWS CDK projects. Naming conventions for types, functions, files, and resources. Use when creating new code or reviewing naming patterns. Emphasizes type-driven development.

Core Value

Empowers agents to enforce type-driven development and consistent naming for types, enums, functions, and variables using PascalCase and camelCase conventions, ensuring seamless integration with AWS CDK projects.

Ideal Agent Persona

Perfect for Code Generation Agents needing consistent naming conventions for AWS CDK projects.

Capabilities Granted for naming-conventions

Standardizing type and enum naming across AWS CDK projects
Automating variable and function naming for consistent code quality
Enforcing naming conventions for improved code readability and maintainability

! Prerequisites & Limits

  • Requires understanding of type-driven development principles
  • Limited to AWS CDK projects
  • May require additional configuration for custom or legacy projects

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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

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 for AWS CDK projects. Naming conventions for types, functions, files, and resources. Use when creating new code or reviewing naming patterns. Emphasizes type-driven development.

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 and enum naming across AWS CDK projects, Automating variable and function naming for consistent code quality, Enforcing naming conventions for improved code readability and maintainability.

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?

Requires understanding of type-driven development principles. Limited to AWS CDK projects. May require additional configuration for custom or legacy projects.

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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

naming-conventions

Install naming-conventions, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

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

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer