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.
npx skills add eliecer2000/kiro-bootstrap --skill aws-terraformgit clone --depth 1 https://github.com/eliecer2000/kiro-bootstrapWrote 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.
[](https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-terraform)<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-terraform"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-terraform/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.
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-terraform"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-terraform.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00038 | $0.02959 |
| Opus 5 | $0.00019 | $0.01479 |
| Sonnet 5 | $0.00008 | $0.00592 |
| Haiku 4.5 | $0.00004 | $0.00296 |
Grade A, and why
aws-terraform 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 436 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AWS Terraform
Skill para desarrollo de infraestructura AWS con Terraform: módulos reutilizables, state remoto, style guide oficial de HashiCorp, testing con .tftest.hcl, seguridad, refactoring de módulos y estándares de IaC. Integra mejores prácticas de HashiCorp Agent Skills.
Principios fundamentales
- Infraestructura como código: todo recurso AWS se define en Terraform. Cero recursos manuales en consola.
- Módulos reutilizables: extraer patrones repetidos en módulos con interfaces claras (variables tipadas, outputs, validaciones).
- State remoto obligatorio: S3 + DynamoDB para locking. Nunca state local en equipo.
- Plan antes de apply: siempre revisar
terraform planantes de aplicar cambios. - Style guide de HashiCorp: seguir convenciones oficiales de formato, naming y organización.
Organización de archivos (HashiCorp Style Guide)
| Archivo | Propósito |
|---|---|
terraform.tf |
Versión de Terraform y required_providers |
providers.tf |
Configuración de providers |
main.tf |
Recursos principales y data sources |
variables.tf |
Variables de input (orden alfabético) |
outputs.tf |
Outputs (orden alfabético) |
locals.tf |
Valores locales calculados |
Estructura de proyecto recomendada
infra/
├── environments/
│ ├── dev/
│ │ ├── terraform.tf
│ │ ├── providers.tf
│ │ ├── main.tf # Llama a módulos
│ │ ├── variables.tf
│ │ ├── outputs.tf
│ │ └── terraform.tfvars
│ ├── staging/
│ └── prod/
├── modules/
│ ├── api/
│ │ ├── main.tf
│ │ ├── variables.tf
│ │ ├── outputs.tf
│ │ └── tests/
│ │ └── api_test.tftest.hcl
│ ├── data/
│ └── compute/
└── terraform.tf # Version constraints compartidas
Style Guide (basado en HashiCorp oficial)
Formato y convenciones
- 2 espacios por nivel de indentación (no tabs).
- Alinear signos
=en argumentos consecutivos. - Meta-arguments primero (
count,for_each,depends_on), luego arguments, luego blocks,lifecycleal final. - Ejecutar
terraform fmt -recursiveantes de cada commit.
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.
- 9d ago First seen · 436 lines · 38 tokens per session scan A 8a6d133100c0
aws-terraform is a skill published in the GitHub repository eliecer2000/kiro-bootstrap (9 stars, last pushed 5mo ago), licensed MIT. It adds 38 tokens to every session and 2,959 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.
Other skills, from other repositories
cdkd
Install cdkd and use it safely from an AWS CDK project. Use when bootstrapping, synthesizing, diffing, deploying, inspecting, rolling back, migrating, or destroying dev/test stacks with cdkd.
aws-cdk-mcp-server-mcp
AWS Cloud Development Kit (CDK) best practices, infrastructure as code patterns, and security compliance with CDK Nag.
cognito-passkey-auth
Amazon Cognito — Custom UI with Passkeys, Social Login & Face ID. Reference skill (loaded via skill:// from the ios agent).
amazon-location-service
Amazon Location Service. Reference skill (loaded via skill:// from the ios agent).
amazon-polly-generative
Amazon Polly Generative Voices. Reference skill (loaded via skill:// from the ios agent).
sandy
Run TypeScript scripts in sandboxed microVMs or Docker containers with AWS SDK access via IMDS. Use when investigating AWS resources, running read-only queries, or executing TypeScript automation that needs AWS credentials.