aws-api

aws-api is a skill for Claude Code, Codex from eliecer2000/kiro-bootstrap. It costs 33 tokens per session (1,627 once invoked), scanned A, original, MIT.

Guidance for designing, implementing, and documenting HTTP APIs on Amazon Web Services, including API Gateway and OpenAPI contracts. OpenAPI is a written description of an API’s routes, inputs, and outputs.

In plain words
What is it for?
Create or modify API Gateway endpoints, define request and response schemas, set access rules, handle errors, and connect endpoints to backend services.
Why use it?
It helps keep API behavior defined before coding and provides consistent handling for authentication, validation, errors, and backend connections.

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-api
Any agent
npx skills add eliecer2000/kiro-bootstrap --skill aws-api
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-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-api.svg)](https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-api)
Your own site
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-api"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-api.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,627 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 $0.00033 $0.01627
Opus 5 $0.00016 $0.00813
Sonnet 5 $0.00007 $0.00325
Haiku 4.5 $0.00003 $0.00163

Measured 4d ago against content hash 9effa1cec857, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aws-api 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 4d 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-api/SKILL.md · 177 lines

How it starts

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

AWS API Integration

Skill para diseño, implementación y documentación de APIs HTTP en AWS usando API Gateway (REST y HTTP API), contratos OpenAPI, autenticación, autorización, validación de requests, manejo de errores y patrones de integración con servicios backend.

Principios fundamentales

  • Toda API debe tener un contrato OpenAPI 3.0+ como fuente de verdad antes de escribir código.
  • Preferir HTTP API (API Gateway v2) sobre REST API salvo que se necesiten features exclusivas de REST (WAF nativo, caching integrado, request validation server-side, usage plans).
  • Cada endpoint debe tener definidos: método, path, request schema, response schemas (2xx, 4xx, 5xx), headers requeridos y content-type.
  • Nunca exponer errores internos al cliente. Usar un envelope de error consistente.

Estructura de contrato OpenAPI

openapi: "3.0.3"
info:
  title: Mi API
  version: "1.0.0"
paths:
  /recurso:
    get:
      operationId: listarRecursos
      summary: Lista recursos paginados
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
        - name: nextToken
          in: query
          schema:
            type: string
      responses:
        "200":
          description: OK
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ListResponse"
        "400":
          $ref: "#/components/responses/BadRequest"
        "500":
          $ref: "#/components/responses/InternalError"

Envelope de error estándar

Todas las respuestas de error deben seguir este formato:

{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "El campo 'email' es requerido",
    "requestId": "abc-123",
    "details": []
  }
}

Códigos de error recomendados: VALIDATION_ERROR, NOT_FOUND, UNAUTHORIZED, FORBIDDEN, CONFLICT, RATE_LIMITED, INTERNAL_ERROR.

Autenticación y autorización

Read the full file on GitHub · 177 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. 4d ago First seen · 177 lines · 33 tokens per session scan A 9effa1cec857

Subscribe to this mod's changes

aws-api is a skill published in the GitHub repository eliecer2000/kiro-bootstrap (9 stars, last pushed 5mo ago), licensed MIT. It adds 33 tokens to every session and 1,627 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.