by zxkane
Claude Agent Skills for AWS
# Add to your Claude Code skills
git clone https://github.com/zxkane/aws-skillsClaude Code plugins for AWS development with specialized knowledge and MCP server integrations, including CDK, serverless architecture, cost optimization, and Bedrock AgentCore for AI agent deployment.
Shared AWS agent skills including AWS Documentation MCP configuration for querying up-to-date AWS knowledge.
Features:
Note: This plugin is automatically loaded as a dependency by other plugins. Install it first if installing plugins individually.
AWS CDK development skill with integrated MCP server for infrastructure as code.
Features:
Integrated MCP Server:
Cost optimization, monitoring, and operational excellence with 3 integrated MCP servers.
Features:
Integrated MCP Servers:
Serverless and event-driven architecture patterns based on Well-Architected Framework.
Features:
AWS Bedrock AgentCore comprehensive expert for deploying and managing AI agents.
Features:
Add the marketplace to Claude Code:
/plugin marketplace add zxkane/aws-skills
Install plugins individually:
# Install the common dependency first
/plugin install aws-common@aws-skills
# Then install the plugins you need
/plugin install aws-cdk@aws-skills
/plugin install aws-cost-ops@aws-skills
/plugin install serverless-eda@aws-skills
/plugin install aws-agentic-ai@aws-skills
Do NOT explicitly specify resource names when they are optional in CDK constructs.
// ✅ GOOD - Let CDK generate unique names
new lambda.Function(this, 'MyFunction', {
// No functionName specified
});
// ❌ BAD - Prevents multiple deployments
new lambda.Function(this, 'MyFunction', {
functionName: 'my-lambda',
});
Use appropriate constructs for automatic bundling: