Sandbox
@zxkane/aws-skills

Claude Code plugin bundle for AWS skills

This repo packages AWS-focused Claude Code plugins and skills. It covers infrastructure as code, cost and operations, serverless and event-driven patterns, and Bedrock AgentCore, with shared MCP setup for AWS docs and services.

361 stars39 forksPythonUpdated 3mo ago
Who it's for

Builders who use Claude Code and want reusable AWS skills, prompts, and plugin installs for daily work.

What it delivers

You can ask your agent to follow AWS-specific patterns and use the right MCP tools without rebuilding the setup each time.

What it does

Shared AWS MCP setup

Provides a common AWS documentation MCP setup that other plugins depend on for current AWS knowledge.

CDK and SST skills

Adds AWS CDK and SST development guidance, including best practices, validation, and pattern references.

Cost and operations skills

Covers cost estimation, AWS billing review, CloudWatch monitoring, and operational patterns.

Serverless and event-driven patterns

Includes guidance for Lambda, API Gateway, Step Functions, saga patterns, and event sourcing.

Bedrock AgentCore skill

Covers AgentCore Gateway, Runtime, Memory, Identity, Code Interpreter, Browser, and observability.

Plugin marketplace support

Lets you install the whole bundle or individual plugins through Claude Code marketplace commands.

How to get it

  1. 1Add the marketplace to Claude Code
    /plugin marketplace add zxkane/aws-skills
  2. 2Install plugins individually
    # Install the common dependency first
    /plugin install aws-common@aws-skills
    
    # Then install the plugins you need
    /plugin install aws-iac@aws-skills
    /plugin install aws-cost-ops@aws-skills
    /plugin install serverless-eda@aws-skills
    /plugin install aws-agentic-ai@aws-skills
  3. 3Ask Claude to help with CDK
    Create a CDK stack with a Lambda function that processes S3 events
  4. 4Estimate costs before deployment
    Estimate the monthly cost of running 10 Lambda functions with 1M invocations each
  5. 5Analyze current spending
    Show me my AWS costs for the last 30 days broken down by service
  6. 6Set up monitoring
    Create CloudWatch alarms for my Lambda functions to alert on errors and high duration

README

AWS Skills for Claude Code

Claude 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.

Plugins

0. AWS Common Plugin (Dependency)

Shared AWS agent skills including AWS Documentation MCP configuration for querying up-to-date AWS knowledge.

Features:

  • AWS MCP server configuration guide
  • Documentation MCP setup for querying AWS knowledge
  • Shared by all other AWS plugins as a dependency

Note: This plugin is automatically loaded as a dependency by other plugins. Install it first if installing plugins individually.

1. AWS CDK Plugin

AWS CDK development skill with integrated MCP server for infrastructure as code.

Features:

  • AWS CDK best practices and patterns
  • Pre-deployment validation script
  • Comprehensive CDK patterns reference

Integrated MCP Server:

  • AWS CDK MCP (stdio)

2. AWS Cost & Operations Plugin

Cost optimization, monitoring, and operational excellence with 3 integrated MCP servers.

Features:

  • Cost estimation and optimization
  • Monitoring and observability patterns
  • Operational best practices

Integrated MCP Servers:

  • AWS Pricing
  • AWS Cost Explorer
  • Amazon CloudWatch

3. AWS Serverless & Event-Driven Architecture Plugin

Serverless and event-driven architecture patterns based on Well-Architected Framework.

Features:

  • Well-Architected serverless design principles
  • Event-driven architecture patterns
  • Orchestration with Step Functions
  • Saga patterns for distributed transactions
  • Event sourcing patterns

4. AWS Agentic AI Plugin

AWS Bedrock AgentCore comprehensive expert for deploying and managing AI agents.

Features:

  • Gateway service for converting REST APIs to MCP tools
  • Runtime service for deploying and scaling agents
  • Memory service for managing conversation state
  • Identity service for credential and access management
  • Code Interpreter for secure code execution
  • Browser service for web automation
  • Observability for tracing and monitoring

Installation

Option 1: Claude Code Plugin Marketplace

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-iac@aws-skills
/plugin install aws-cost-ops@aws-skills
/plugin install serverless-eda@aws-skills
/plugin install aws-agentic-ai@aws-skills

Option 2: Install Individual Skills via npx

Install a single skill directly from the repository using skills.sh:

# AWS CDK development skill
npx skills add https://github.com/zxkane/aws-skills --skill aws-cdk-development

# AWS SST (Ion) infrastructure-as-code skill
npx skills add https://github.com/zxkane/aws-skills --skill aws-sst-development

# AWS cost & operations skill
npx skills add https://github.com/zxkane/aws-skills --skill aws-cost-operations

# AWS serverless & event-driven architecture skill
npx skills add https://github.com/zxkane/aws-skills --skill aws-serverless-eda

# AWS Bedrock AgentCore skill
npx skills add https://github.com/zxkane/aws-skills --skill aws-agentic-ai

# AWS MCP setup (shared dependency)
npx skills add https://github.com/zxkane/aws-skills --skill aws-mcp-setup

Browse all skills at skills.sh/zxkane/aws-skills.

Core CDK Principles

Resource Naming

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',
});

Lambda Functions

Use appropriate constructs for automatic bundling:

  • TypeScript/JavaScript: NodejsFunction from aws-cdk-lib/aws-lambda-nodejs
  • Python: PythonFunction from @aws-cdk/aws-lambda-python-alpha

Pre-Deployment Validation

Before committing CDK code:

npm run build
npm test
npm run lint
cdk synth
./scripts/validate-stack.sh

Usage Examples

CDK Development

Ask Claude to help with CDK:

Create a CDK stack with a Lambda function that processes S3 events

Claude will:

  • Follow CDK best practices
  • Use NodejsFunction for automatic bundling
  • Avoid explicit resource naming
  • Grant proper IAM permissions
  • Use MCP servers for latest AWS information

Cost Optimization

Estimate costs before deployment:

Estimate the monthly cost of running 10 Lambda functions with 1M invocations each

Analyze current spending:

Show me my AWS costs for the last 30 days broken down by service

Monitoring and Observability

Set up monitoring:

Create CloudWatch alarms for my Lambda functions to alert on errors and high duration

Investigate issues:

Show me CloudWatch logs for my API Gateway errors in the last hour

Security and Audit

Audit activity:

Show me all IAM changes made in the last 7 days

Assess security:

Run a Well-Architected security assessment on my infrastructure

Serverless Development

Build serverless applications:

Create a serverless API with Lambda and API Gateway for user management

Implement event-driven workflow:

Create an event-driven order processing system with EventBridge and Step Functions

Orchestrate complex workflows:

Implement a saga pattern for booking flights, hotels, and car rentals with compensation logic

AI Agent Development

Deploy AI agents with Bedrock AgentCore:

Deploy a REST API as an MCP tool using AgentCore Gateway

Manage agent memory:

Set up conversation memory for my AI agent with DynamoDB backend

Monitor agent performance:

Configure observability for my AgentCore runtime with CloudWatch dashboards

Structure

.
├── .claude-plugin/
│   └── marketplace.json              # Plugin marketplace configuration
├── plugins/                          # Each plugin has isolated skills
│   ├── aws-common/
│   │   └── skills/
│   │       └── aws-mcp-setup/        # Shared MCP configuration skill
│   │           └── SKILL.md
│   ├── aws-iac/                      # Infrastructure as code (CDK + SST)
│   │   └── skills/
│   │       ├── aws-cdk-development/  # CDK development skill
│   │       │   ├── SKILL.md
│   │       │   ├── references/
│   │       │   │   └── cdk-patterns.md
│   │       │   └── scripts/
│   │       │       └── validate-stack.sh
│   │       └── aws-sst-development/  # SST v4 (Ion) IaC skill
│   │           ├── SKILL.md
│   │           └── references/
│   │               ├── authoring.md
│   │               ├── deploy-and-troubleshoot.md
│   │               └── testing.md
│   ├── aws-cost-ops/
│   │   └── skills/
│   │       └── aws-cost-operations/  # Cost & operations skill
│   │           ├── SKILL.md
│   │           └── references/
│   │               ├── operations-patterns.md
│   │               └── cloudwatch-alarms.md
│   ├── serverless-eda/
│   │   └── skills/
│   │       └── aws-serverless-eda/   # Serverless & EDA skill
│   │           ├── SKILL.md
│   │           └── references/
│   │               ├── serverless-patterns.md
│   │               └── eda-patterns.md
│   └── aws-agentic-ai/
│       └── skills/
│           └── aws-agentic-ai/       # Bedrock AgentCore skill
│               ├── SKILL.md
│               ├── services/         # Service-specific docs
│               └── cross-service/    # Cross-service patterns
└── README.md

MCP Server Names

MCP server names use short identifiers to comply with Bedrock's 64-character tool name limit. The naming pattern is: mcp__plugin_{plugin}_{server}__{tool}

Examples: awsdocs (AWS docs), cdk (CDK), cw (CloudWatch), sfn (Step Functions), sam (Serverless), etc.

Resources

License

MIT License - see LICENSE

Files in the repo

Repository payload10 top-level entries
  • .claude
  • .claude-plugin
  • .github
  • docs
  • plugins
  • scripts
  • .gitignore
  • CLAUDE.md
  • LICENSE
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More plugins

Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.

138k
1 add

Graphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.

82k
code-yeongyu/
oh-my-openagent

OmO: Just type "mass ulw" keyword with your prompt. Now you are the master of graph engineering.

69k

Persistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More

94k

Opinionated Oxlint rules for rejecting low-evidence TypeScript and JavaScript patterns

4.3k