AWS CDK Skill

Provide AWS CDK development guidance with TypeScript and best practices.

46|8|Updated Jan 22, 2026
One-click install
npx skills add https://github.com/SpillwaveSolutions/agent_rulez --skill aws-cdk-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: AWS CDK Skill
Source: https://github.com/SpillwaveSolutions/agent_rulez/tree/main/.claude/skills/aws-cdk
Command: npx skills add https://github.com/SpillwaveSolutions/agent_rulez --skill aws-cdk-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides guidance and best practices for developing applications using the AWS Cloud Development Kit (CDK).

Core Features & Use Cases

  • Best Practices: Learn essential guidelines for efficient and maintainable AWS CDK projects.
  • Common Patterns: Discover and implement standard solutions for recurring CDK development challenges.
  • Use Case: A developer new to AWS CDK can use this skill to quickly understand the fundamental principles and common approaches to building cloud infrastructure as code.

Quick Start

Review the best practices for AWS CDK development.

Frequently Asked Questions about AWS CDK Skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What are the best practices for AWS CDK development?

Common AWS CDK patterns include using cdk.CfnOutput for stack outputs, leveraging cdk.Aspects for cross-cutting concerns, and using cdk.Tags for resource tagging to manage recurring infrastructure challenges.

How do I handle cross-cutting concerns in AWS CDK?

You should use TypeScript for AWS CDK development because it provides strong typing and supports following the construct hierarchy, which are essential guidelines for efficient and maintainable infrastructure projects.

How do I manage environment-specific configurations in AWS CDK?

You can implement proper tagging strategies in AWS CDK by using cdk.Tags. This enables you to apply consistent metadata across your resources for organization and cost allocation.

How do I expose stack outputs in AWS CDK?

To expose stack outputs in AWS CDK, use cdk.CfnOutput. This pattern allows you to print values from your deployed infrastructure, making them accessible to other stacks or external systems.