aws-serverless-eda

aws-serverless-eda is a skill for Claude Code from zxkane/aws-skills. It costs 112 tokens per session (2,925 once invoked), scanned A, a copy of aws-serverless-eda, MIT.

An architecture guide for AWS serverless and event-driven applications. Serverless apps run code and managed services without managing servers directly; event-driven apps react to messages or events from services such as Lambda, DynamoDB, SQS, or EventBridge.

In plain words
What is it for?
Use it when designing or building Lambda functions, API Gateway APIs, DynamoDB-backed services, message queues, event buses, or Step Functions workflows.
Why use it?
It helps plan these systems around AWS's architecture and reliability guidance while choosing suitable services for APIs, microservices, and asynchronous workflows.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when designing or building Lambda functions, API Gateway APIs, DynamoDB-backed services, message queues, event buses, or Step Functions workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zxkane/aws-skills/aws-serverless-eda
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zxkane/aws-skills --skill aws-serverless-eda
Clone the repo
git clone --depth 1 https://github.com/zxkane/aws-skills

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin serverless-eda/plugin install serverless-eda after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aws-serverless-eda

README.md
[![agentmods](https://agentmods.dev/badge/skills/zxkane/aws-skills/aws-serverless-eda/github.svg)](https://agentmods.dev/skills/zxkane/aws-skills/aws-serverless-eda)
Your own site
<a href="https://agentmods.dev/skills/zxkane/aws-skills/aws-serverless-eda"><img src="https://agentmods.dev/badge/skills/zxkane/aws-skills/aws-serverless-eda/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aws-serverless-eda

Your own site · 80×15
<a href="https://agentmods.dev/skills/zxkane/aws-skills/aws-serverless-eda"><img src="https://agentmods.dev/badge/skills/zxkane/aws-skills/aws-serverless-eda.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,925 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk pass 6 Mar 2026
How audits are shown
Origin 86% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00112 $0.02925
Opus 5 $0.00056 $0.01463
Sonnet 5 $0.00022 $0.00585
Haiku 4.5 $0.00011 $0.00293

Measured 10d ago against content hash 927b2a242db7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

aws-serverless-eda scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

86% identical to aws-serverless-eda — 38 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/serverless-eda/skills/aws-serverless-eda/SKILL.md · 405 lines

How it starts

The opening of the file, as written. The whole thing — 405 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AWS Serverless & Event-Driven Architecture

This skill provides comprehensive guidance for building serverless applications and event-driven architectures on AWS based on Well-Architected Framework principles.

AWS Documentation Requirement

Always verify AWS facts using MCP tools (mcp__aws-mcp__* or mcp__*awsdocs*__*) before answering. The aws-mcp-setup dependency is auto-loaded — if MCP tools are unavailable, guide the user through that skill's setup flow.

Serverless MCP Servers

This skill leverages the CDK MCP server (provided via aws-cdk-development dependency) and AWS Documentation MCP for serverless guidance.

Note: The following AWS MCP servers are available separately via the Full AWS MCP Server (see aws-mcp-setup skill) and are not bundled with this plugin:

  • AWS Serverless MCP — SAM CLI lifecycle (init, deploy, local test)
  • AWS Lambda Tool MCP — Direct Lambda invocation
  • AWS Step Functions MCP — Workflow orchestration
  • Amazon SNS/SQS MCP — Messaging and queue management

When to Use This Skill

Use this skill when:

  • Building serverless applications with Lambda
  • Designing event-driven architectures
  • Implementing microservices patterns
  • Creating asynchronous processing workflows
  • Orchestrating multi-service transactions
  • Building real-time data processing pipelines
  • Implementing saga patterns for distributed transactions
  • Designing for scale and resilience

AWS Well-Architected Serverless Design Principles

1. Speedy, Simple, Singular

Functions should be concise and single-purpose

// ✅ GOOD - Single purpose, focused function
export const processOrder = async (event: OrderEvent) => {
  // Only handles order processing
  const order = await validateOrder(event);
  await saveOrder(order);
  await publishOrderCreatedEvent(order);
  return { statusCode: 200, body: JSON.stringify({ orderId: order.id }) };
};

// ❌ BAD - Function does too much
export const handleEverything = async (event: any) => {
  // Handles orders, inventory, payments, shipping...
  // Too many responsibilities
};

Read the full file on GitHub · 405 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 405 lines · 112 tokens per session scan A 927b2a242db7

Subscribe to this mod's changes

aws-serverless-eda is a skill published in the GitHub repository zxkane/aws-skills (361 stars, last pushed 2mo ago), licensed MIT. It adds 112 tokens to every session and 2,925 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to aws-serverless-eda, differing in 38 lines, and is treated as a copy.

Related

Other skills, from other repositories