aws-serverless

aws-serverless is a skill for Claude Code, Codex from eliecer2000/kiro-bootstrap. It costs 40 tokens per session (2,776 once invoked), scanned A, original, MIT.

A guide for building serverless applications on AWS, where cloud services run code and handle infrastructure management for you.

In plain words
What is it for?
It helps build Lambda functions, APIs, message queues, notifications, database event handlers, and deployments with AWS SAM or CDK.
Why use it?
It helps prevent common reliability problems in event-driven applications, such as repeated event processing, lost failed messages, slow starts, and poor monitoring.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/eliecer2000/kiro-bootstrap/aws-serverless
Any agent
npx skills add eliecer2000/kiro-bootstrap --skill aws-serverless
Clone the repo
git clone --depth 1 https://github.com/eliecer2000/kiro-bootstrap

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-serverless.svg)](https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-serverless)
Your own site
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-serverless"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-serverless.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,776 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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.00040 $0.02776
Opus 5 $0.00020 $0.01388
Sonnet 5 $0.00008 $0.00555
Haiku 4.5 $0.00004 $0.00278

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

Security

Grade A, and why

aws-serverless 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 5d 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.

skills/aws-serverless/SKILL.md · 402 lines

How it starts

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

AWS Serverless

Skill para construir aplicaciones serverless production-ready en AWS. Cubre Lambda functions, API Gateway (REST/HTTP/WebSocket), arquitecturas event-driven con SQS/SNS/DynamoDB Streams, modelado DynamoDB, despliegue con SAM/CDK, y optimización de cold starts.

Principios fundamentales

  • Serverless-first: diseñar para ejecución efímera, stateless y event-driven.
  • Cada Lambda = una responsabilidad. No monolitos Lambda.
  • Inicializar clientes AWS fuera del handler (reutilización en warm starts).
  • Usar partial batch failure reporting en SQS/Kinesis/DynamoDB Streams.
  • Dead Letter Queues (DLQ) obligatorias en toda cola y suscripción.
  • Idempotencia en todo handler que procese eventos (at-least-once delivery).
  • Observabilidad desde el día 1: structured logging, tracing, métricas custom.

Patrones de Lambda Handler

Node.js Handler (TypeScript)

import { Logger } from '@aws-lambda-powertools/logger';
import { Tracer } from '@aws-lambda-powertools/tracer';
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';
import { DynamoDBDocumentClient, GetCommand } from '@aws-sdk/lib-dynamodb';
import type { APIGatewayProxyEventV2, APIGatewayProxyResultV2 } from 'aws-lambda';

const logger = new Logger({ serviceName: 'mi-servicio' });
const tracer = new Tracer({ serviceName: 'mi-servicio' });

// Inicializar fuera del handler (warm start reuse)
const client = tracer.captureAWSv3Client(new DynamoDBClient({}));
const docClient = DynamoDBDocumentClient.from(client);
const TABLE_NAME = process.env.TABLE_NAME!;

export const handler = async (
  event: APIGatewayProxyEventV2
): Promise<APIGatewayProxyResultV2> => {
  try {
    const body = typeof event.body === 'string' ? JSON.parse(event.body) : event.body;
    const result = await processRequest(body);

    return {
      statusCode: 200,
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify(result),
    };
  } catch (error) {
    logger.error('Error processing request', { error });
    return {
      statusCode: 500,
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({ error: 'Internal server error' }),
    };
  }
};

Read the full file on GitHub · 402 lines

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. 5d ago First seen · 402 lines · 40 tokens per session scan A d9f62c777264

Subscribe to this mod's changes

aws-serverless is a skill published in the GitHub repository eliecer2000/kiro-bootstrap (9 stars, last pushed 5mo ago), licensed MIT. It adds 40 tokens to every session and 2,776 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.