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.
FAQ
aws-skills is a Claude Code plugin with 6 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes aws-agentic-ai, aws-mcp-setup, aws-cost-operations. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add zxkane/aws-skills
Repo: zxkane/aws-skills
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.
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-iac@aws-skills
/plugin install aws-cost-ops@aws-skills
/plugin install serverless-eda@aws-skills
/plugin install aws-agentic-ai@aws-skills
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.
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:
NodejsFunction from aws-cdk-lib/aws-lambda-nodejsPythonFunction from @aws-cdk/aws-lambda-python-alphaBefore committing CDK code:
npm run build
npm test
npm run lint
cdk synth
./scripts/validate-stack.sh
Ask Claude to help with CDK:
Create a CDK stack with a Lambda function that processes S3 events
Claude will:
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
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
Audit activity:
Show me all IAM changes made in the last 7 days
Assess security:
Run a Well-Architected security assessment on my infrastructure
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
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
.
โโโ .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 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.
MIT License - see LICENSE
.claude/
.claude-plugin/
marketplace.json
settings.json
skills/
aws-agentic-ai
aws-cdk-development
aws-cost-operations
aws-mcp-setup
aws-serverless-eda
aws-sst-development
.github/
workflows/
validate.yml
.gitignore
CLAUDE.md
docs/
aws-mcp-setup.md
LICENSE
plugins/
aws-agentic-ai/
skills/
aws-agentic-ai/
cross-service/
agent-persistence-patterns.md
credential-management.md
registry-integration.md
security-resource-policies.md
references/
agentcore-oauth-integration.md
agentcore-runtime-core.md
agentcore-runtime-deploy.md
agentcore-runtime-protocols.md
scripts/
a2a-server-template.py
agui-server-template.py
Dockerfile.runtime-template
gateway-custom-resource-lambda.py
mcp-server-template.py
runtime-fastapi-template.py
services/
browser/
README.md
code-interpreter/
README.md
evaluations/
README.md
gateway/
deploy-template.sh
deployment-strategies.md
README.md
troubleshooting-guide.md
validate-deployment.sh
identity/
README.md
memory/
README.md
observability/
README.md
registry/
getting-started.md
governance-workflows.md
mcp-endpoint.md
README.md
sync-configuration.md
runtime/
README.md
SKILL.md
aws-common/
skills/
aws-mcp-setup/
SKILL.md
aws-cost-ops/
skills/
aws-cost-operations/
references/
cloudwatch-alarms.md
operations-patterns.md
SKILL.md
aws-iac/
skills/
aws-cdk-development/
references/
cdk-patterns.md
scripts/
validate-stack.sh
SKILL.md
aws-sst-development/
references/
authoring.md
deploy-and-troubleshoot.md
testing.md
SKILL.md
serverless-eda/
skills/
aws-serverless-eda/
references/
deployment-best-practices.md
eda-patterns.md
observability-best-practices.md
performance-optimization.md
security-best-practices.md
serverless-patterns.md
SKILL.md
README.md
scripts/
ci/
validate_marketplace.pyยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic