agentsclimarketplace

Aws cdk

Skill nimadorostkar/Claude-Skills-collection/skills/devops/aws-cdk

A curated library of 137 production-grade skills for Claude and other AI coding agents.

Install
npx -y skills add nimadorostkar/Claude-Skills-collection --skill aws-cdk

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 22 days oldThe repository was created 22 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 23 stars23 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when defining AWS infrastructure with the CDK. Covers construct design, stack organization, environment configuration, testing infrastructure code, and safe deployment.

SKILL.md

5.4 KB, as published. Nobody here has run it

AWS CDK

Purpose

Define AWS infrastructure in a real programming language without losing the reviewability of a plan. The CDK's power — abstraction, loops, conditionals — is also its risk: a small code change can generate a large and destructive CloudFormation diff.

When to Use

  • Defining AWS infrastructure with the CDK.
  • Structuring stacks and reusable constructs.
  • Testing infrastructure code.
  • Reviewing a CDK deployment before it runs.

Capabilities

  • Construct levels: L1 (raw CloudFormation), L2 (curated), L3 (patterns).
  • Stack organization and cross-stack references.
  • Environment and account configuration.
  • Snapshot and fine-grained assertion testing.
  • cdk diff review and safe deployment.

Inputs

  • The infrastructure to define, and the environments it targets.
  • Existing resources, if adopting or importing.
  • Deployment permissions and boundaries.

Outputs

  • Stacks organized by lifecycle, not by service type.
  • Reusable constructs with a narrow, typed interface.
  • Snapshot tests that make an unintended diff fail the build.

Workflow

  1. Organize stacks by lifecycle — Things that change together belong together. A stack containing both the VPC (changes yearly) and the application (changes daily) makes every deploy risk the network.
  2. Prefer L2 constructs — They apply sensible defaults, including encryption and least-privilege IAM. Drop to L1 only for properties L2 does not expose.
  3. Build L3 patterns for repeated shapes — A MonitoredLambda construct that always adds an alarm, a log group with retention, and a dead-letter queue removes an entire category of oversight.
  4. Test the synthesized template — Snapshot tests catch unintended diffs; fine-grained assertions verify specific properties (encryption on, public access off).
  5. Read cdk diff before every deploy — It shows resource replacements. A replaced RDS instance is a new, empty RDS instance.
  6. Deploy through a pipeline — Not from a laptop with admin credentials.

Best Practices

  • cdk deploy from a developer machine with admin access is how production gets changed by accident. Deploy through CI, with a scoped role.
  • Never use removalPolicy: DESTROY on a stateful resource in production. The default (RETAIN for most data stores) exists for a reason.
  • Logical ID changes cause resource replacement. Renaming a construct — an innocuous-looking refactor — will destroy and recreate the resource it names.
  • Grant permissions with .grantRead(fn), not by hand-writing a policy. The L2 grant methods produce a correctly scoped policy that a hand-written one usually does not.
  • Do not use context lookups (Vpc.fromLookup) in a construct that must synthesize in CI without AWS credentials. Pass the values in.
  • Pin the CDK version. Construct defaults change between minor versions, and a default change is a template change.

Examples

An L3 construct that makes the right thing the default:

export interface MonitoredFunctionProps extends NodejsFunctionProps {
  readonly alarmTopic: ITopic;
}

/** A Lambda that cannot be deployed without an alarm, a DLQ, and log retention. */
export class MonitoredFunction extends Construct {
  public readonly fn: NodejsFunction;

  constructor(scope: Construct, id: string, props: MonitoredFunctionProps) {
    super(scope, id);

    const dlq = new Queue(this, "Dlq", { retentionPeriod: Duration.days(14) });

    this.fn = new NodejsFunction(this, "Fn", {
      runtime: Runtime.NODEJS_22_X,
      architecture: Architecture.ARM_64,        // cheaper and faster
      logRetention: RetentionDays.ONE_MONTH,    // otherwise logs are kept forever, billed forever
      deadLetterQueue: dlq,
      tracing: Tracing.ACTIVE,
      ...props,
    });

    this.fn.metricErrors({ period: Duration.minutes(5) })
      .createAlarm(this, "ErrorAlarm", {
        threshold: 1,
        evaluationPeriods: 2,
        treatMissingData: TreatMissingData.NOT_BREACHING,
      })
      .addAlarmAction(new SnsAction(props.alarmTopic));
  }
}

Assertions that fail the build on a security regression:

test("uploads bucket is encrypted and blocks public access", () => {
  const template = Template.fromStack(new StorageStack(new App(), "Test"));

  template.hasResourceProperties("AWS::S3::Bucket", {
    BucketEncryption: Match.objectLike({
      ServerSideEncryptionConfiguration: Match.anyValue(),
    }),
    PublicAccessBlockConfiguration: {
      BlockPublicAcls: true,
      BlockPublicPolicy: true,
      IgnorePublicAcls: true,
      RestrictPublicBuckets: true,
    },
  });
});

Notes

  • Snapshot tests (expect(Template.fromStack(stack)).toMatchSnapshot()) are the cheapest protection against an unintended template change. Any diff becomes a deliberate decision to update the snapshot.
  • cdk diff output containing "requires replacement" on a database, an EIP, or anything with a name is the moment to stop and think. The CDK will happily execute it.
  • Renaming a construct ID changes the logical ID and therefore replaces the resource. If a rename is needed on a stateful resource, override the logical ID to keep it stable.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.