From AgentCore
Builds production serverless workloads on AWS: Lambda handlers, API Gateway, DynamoDB Streams, SQS/SNS event-driven flows, SAM/CDK deployment, and cold start optimization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentcore:aws-serverlessThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Specialized skill for building production-ready serverless applications on AWS.
Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start optimization.
Match the task to a pattern, then open its reference file for full code.
| Task | Pattern | Reference |
|---|---|---|
| Any Lambda function, API handler, event processor, scheduled task | Lambda Handler (Node + Python, error handling) | references/lambda-handler.md |
| REST/HTTP API backed by Lambda; choosing HTTP vs REST API | API Gateway Integration (SAM template + handler, API comparison) | references/api-gateway.md |
| Decoupled async processing, batch consumers, DynamoDB change reactions | Event-Driven (SQS with partial-batch failure + DLQ, DynamoDB Streams) | references/event-driven.md |
| Latency-sensitive / user-facing / high-traffic functions | Cold Start Optimization (package size, SnapStart, memory, provisioned concurrency, lazy init) | references/cold-start.md |
| Local dev/testing; IaC with SAM or CDK | Deployment (SAM local + CDK stack) | references/deployment.md |
| Debugging production issues (INIT billing, timeouts, OOM, VPC cold start, event-loop hangs, payload limits, recursive invocation) | Sharp Edges | references/sharp-edges.md |
| Reviewing serverless code for anti-patterns | Validation Checks (credentials, IAM, error handling, memory/timeout, DLQ, SDK imports) | references/validation-checks.md |
npx claudepluginhub leonmelamud/agentcore-toolkitGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.