aws-cost-operations

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

Guidance for managing and reducing AWS costs, where AWS is Amazon’s cloud-computing service. It covers spending analysis, budgets, resource sizing, Savings Plans, and service-specific cost controls.

In plain words
What is it for?
Use it to analyze Cost Explorer data, configure budget alerts, right-size Lambda, DynamoDB, S3, EC2, RDS, and NAT Gateway resources, and evaluate Savings Plans.
Why use it?
It helps teams find waste, estimate costs before deployment, and use actual resource usage when deciding how to reduce cloud spending.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to analyze Cost Explorer data, configure budget alerts, right-size Lambda, DynamoDB, S3, EC2, RDS, and NAT Gateway resources, and evaluate Savings Plans.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliecer2000/kiro-bootstrap/aws-cost-operations
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 eliecer2000/kiro-bootstrap --skill aws-cost-operations
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-cost-operations

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-cost-operations/github.svg)](https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-cost-operations)
Your own site
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-cost-operations"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-cost-operations/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-cost-operations

Your own site · 80×15
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-cost-operations"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-cost-operations.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,340 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.
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.00035 $0.01340
Opus 5 $0.00017 $0.00670
Sonnet 5 $0.00007 $0.00268
Haiku 4.5 $0.00003 $0.00134

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

Security

Grade A, and why

aws-cost-operations 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.

skills/aws-cost-operations/SKILL.md · 141 lines

How it starts

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

AWS Cost & Operations

Skill para optimización de costos AWS, monitoreo de gastos, presupuestos, right-sizing, Savings Plans, análisis con Cost Explorer y estrategias de reducción de costos por servicio.

Principios fundamentales

  • Cost awareness desde día 1. Estimar costos antes de desplegar.
  • Tag everything: tags de Project, Environment, Team, ManagedBy en todos los recursos.
  • Right-size primero, reservar después. Medir uso real antes de comprar Savings Plans.
  • Alertas de presupuesto configuradas. Nunca operar sin Budget alerts.
  • Revisar costos semanalmente. Cost Explorer como herramienta principal.

Estrategias de optimización por servicio

Servicio Estrategia Ahorro estimado
Lambda Right-size memory (Powertools Tracer), ARM64 (Graviton) 20-40%
DynamoDB On-demand → Provisioned con auto-scaling para cargas estables 30-50%
S3 Lifecycle policies (IA → Glacier), Intelligent-Tiering 40-70%
EC2 Savings Plans, Spot para batch, right-sizing 30-60%
RDS Reserved Instances, Aurora Serverless v2 para cargas variables 30-50%
NAT Gateway VPC endpoints para tráfico a servicios AWS 50-80%
CloudWatch Ajustar log retention, filtrar métricas innecesarias 20-40%

Presupuestos y alertas (CDK)

new budgets.CfnBudget(this, 'MonthlyBudget', {
  budget: {
    budgetName: `${projectName}-monthly`,
    budgetType: 'COST',
    timeUnit: 'MONTHLY',
    budgetLimit: { amount: 500, unit: 'USD' },
  },
  notificationsWithSubscribers: [
    {
      notification: {
        notificationType: 'ACTUAL',
        comparisonOperator: 'GREATER_THAN',
        threshold: 80,
        thresholdType: 'PERCENTAGE',
      },
      subscribers: [{ subscriptionType: 'EMAIL', address: '[email protected]' }],
    },
    {
      notification: {
        notificationType: 'FORECASTED',
        comparisonOperator: 'GREATER_THAN',
        threshold: 100,
        thresholdType: 'PERCENTAGE',
      },
      subscribers: [{ subscriptionType: 'EMAIL', address: '[email protected]' }],
    },
  ],
});

Read the full file on GitHub · 141 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. 10d ago First seen · 141 lines · 35 tokens per session scan A 32bd9b2a9d3f

Subscribe to this mod's changes

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