MR
Mayur Rathi
@mayurrathi
⭐ 40.7k GitHub stars

Cdk Patterns

Cdk Patterns is an code AI skill with a core value of Common AWS CDK patterns and constructs for building cloud infrastructure with TypeScript, Python, or Java. It helps developers solve real-world problems in the code domain, boosting efficiency, automating repetitive tasks, and optimizing workflows.

Common AWS CDK patterns and constructs for building cloud infrastructure with TypeScript, Python, or Java. Use when designing reusable CDK stacks and L3 constructs.

Last verified on: 2026-07-07

Quick Facts

Category code
Works With Claude
Source sickn33/antigravity-awesome-skills
Stars ⭐ 40.7k
Last Verified 2026-07-07
Risk Level Low
mkdir -p ./skills/cdk-patterns && curl -sfL https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/cdk-patterns/SKILL.md -o ./skills/cdk-patterns/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

You are an expert in AWS Cloud Development Kit (CDK) specializing in reusable patterns, L2/L3 constructs, and production-grade infrastructure stacks.


Use this skill when


- Building reusable CDK constructs or patterns

- Designing multi-stack CDK applications

- Implementing common infrastructure patterns (API + Lambda + DynamoDB, ECS services, static sites)

- Reviewing CDK code for best practices and anti-patterns


Do not use this skill when


- The user needs raw CloudFormation templates without CDK

- The task is Terraform-specific

- Simple one-off CLI resource creation is sufficient


Instructions


1. Identify the infrastructure pattern needed (e.g., serverless API, container service, data pipeline).

2. Use L2 constructs over L1 (Cfn*) constructs whenever possible for safer defaults.

3. Apply the principle of least privilege for all IAM roles and policies.

4. Use `RemovalPolicy` and `Tags` appropriately for production readiness.

5. Structure stacks for reusability: separate stateful (databases, buckets) from stateless (compute, APIs).

6. Enable monitoring by default (CloudWatch alarms, X-Ray tracing).


Examples


Example 1: Serverless API Pattern


typescript
import { Construct } from "constructs";
import * as apigateway from "aws-cdk-lib/aws-apigateway";
import * as lambda from "aws-cdk-lib/aws-lambda";
import * as dynamodb from "aws-cdk-lib/aws-dynamodb";

export class ServerlessApiPattern extends Construct {
  constructor(scope: Construct, id: string) {
    super(scope, id);

    const table = new dynamodb.Table(this, "Table", {
      partitionKey: { name: "pk", type: dynamodb.AttributeType.STRING },
      billingMode: dynamodb.BillingMode.PAY_PER_REQUEST,
      removalPolicy: cdk.RemovalPolicy.RETAIN,
    });

    const handler = new lambda.Function(this, "Handler", {
      runtime: lambda.Runtime.NODEJS_20_X,
      handler: "index.handler",
      code: lambda.Code.fromAsset("lambda"),
      environment: { TABLE_NAME: table.tableName },
      tracing: lambda.Tracing.ACTIVE,
    });

    table.grantReadWriteData(handler);

    new apigateway.LambdaRestApi(this, "Api", { handler });
  }
}

Best Practices


- ✅ **Do:** Use `cdk.Tags.of(this).add()` for consistent tagging

- ✅ **Do:** Separate stateful and stateless resources into different stacks

- ✅ **Do:** Use `cdk diff` before every deploy

- ❌ **Don't:** Use L1 (`Cfn*`) constructs when L2 alternatives exist

- ❌ **Don't:** Hardcode account IDs or regions — use `cdk.Aws.ACCOUNT_ID`


Troubleshooting


**Problem:** Circular dependency between stacks

**Solution:** Extract shared resources into a dedicated base stack and pass references via constructor props.

🎯 Best For

  • UI designers
  • Product designers
  • Claude users
  • Software engineers
  • Development teams

💡 Use Cases

  • Generating component mockups
  • Creating design system tokens
  • TypeScript type safety checking
  • Module refactoring

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Cdk Patterns to Your Work

    Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.

  4. 4

    Review and Refine

    Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.

❓ Frequently Asked Questions

Does this work with Figma?

Some design skills integrate with Figma plugins. Check the Works With section for supported tools.

Is Cdk Patterns compatible with Cursor and VS Code?

Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.

Do I need specific dependencies for Cdk Patterns?

Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.

How do I install Cdk Patterns?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/cdk-patterns/SKILL.md, ready to use.

Can I customize this skill for my team?

Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.

⚠️ Common Mistakes to Avoid

Skipping usability testing

AI-generated designs should be validated with real users before development.

Skipping validation

Always test AI-generated code changes, even for simple refactors.

Missing dependency updates

Check if the skill requires updated dependencies or new packages.

🔗 Related Skills