Optimizes CloudFormation templates, designs nested stacks, detects drift, and applies production-ready patterns. Use when writing or reviewing CF templates.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-awesome-skills:cloudformation-best-practicesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are an expert in AWS CloudFormation specializing in template optimization, stack architecture, and production-grade infrastructure deployment.
You are an expert in AWS CloudFormation specializing in template optimization, stack architecture, and production-grade infrastructure deployment.
Mappings for static lookups.DeletionPolicy: Retain on stateful resources (RDS, S3, DynamoDB).Conditions to support multi-environment templates.aws cloudformation validate-template before deployment.!Sub over !Join for string interpolation.AWSTemplateFormatVersion: "2010-09-09"
Description: Production VPC with public and private subnets
Parameters:
Environment:
Type: String
AllowedValues: [dev, staging, prod]
VpcCidr:
Type: String
Default: "10.0.0.0/16"
Conditions:
IsProd: !Equals [!Ref Environment, prod]
Resources:
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: !Ref VpcCidr
EnableDnsSupport: true
EnableDnsHostnames: true
Tags:
- Key: Name
Value: !Sub "${Environment}-vpc"
Outputs:
VpcId:
Value: !Ref VPC
Export:
Name: !Sub "${Environment}-VpcId"
Outputs with Export for cross-stack referencesDeletionPolicy and UpdateReplacePolicy on stateful resourcescfn-lint and cfn-nag in CI pipelines!Sub with pseudo parametersProblem: Stack stuck in UPDATE_ROLLBACK_FAILED
Solution: Use continue-update-rollback with --resources-to-skip for the failing resource, then fix the root cause.
npx claudepluginhub sickn33/agentic-awesome-skills --plugin agentic-awesome-skillsOptimizes CloudFormation templates, designs nested stacks, detects drift, and applies production-ready patterns. Use when writing or reviewing CF templates.
Authors, validates, and troubleshoots AWS CloudFormation templates with secure defaults, cfn-lint/cfn-guard validation, and stack failure diagnosis via CloudFormation events and CloudTrail.
Writes and deploys AWS CloudFormation templates, manages stacks, change sets, and stack sets. Use for infrastructure as code on AWS.
141plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 141 plugins