Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Claude Code plugins and agent skills for AWS development — IaC(CDK/SST), serverless, cost ops, and Bedrock AgentCore
| Date | Stars |
|---|---|
| 2026-07-31 | 341 |
| 2026-08-06 | 343 |
Today
+2 stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# 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:
```bash
/plugin marketplace add zxkane/aws-skills
```
Install plugins individually:
```bash
# 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](https://skills.sh):
```bash
# 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](https://skills.sh/zxkane/aws-skills).
## Core CDK Principles
### Resource Naming
**Do NOT explicitly specify resource names** when they are optional in CDK constructs.
```typescript
// ✅ 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/JavaSExcerpt of 8,449 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:655cb9ddeb632fc0, topic:mcp