validating-aws-pricing

validating-aws-pricing is a skill for Claude Code from prajapatimehul/claude-aws-cost-saver. It costs 78 tokens per session (2,464 once invoked), scanned A, original, MIT.

A required validator for AWS cost findings that checks monthly savings estimates against AWS pricing and billing data.

In plain words
What is it for?
Use it on findings.json before generating a report to validate pricing sources and reject estimates that cannot be verified.
Why use it?
It catches incorrect prices, formulas, missing cost components, and savings claims that exceed actual spending.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the aws-cost-saver plugin — 2 skills, 1 command, 1 agent, 1 hook, 1 MCP server shipped together

Good fit Use it on findings.json before generating a report to validate pricing sources and reject estimates that cannot be verified.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add prajapatimehul/claude-aws-cost-saver
Claude Code
/plugin install aws-cost-saver

Made for: Claude Code.

Or install aws-cost-saver, the plugin that ships this one along with the rest of its 2 skills, 1 command, 1 agent, 1 hook, 1 MCP server.

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 validating-aws-pricing

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/prajapatimehul/claude-aws-cost-saver/validating-aws-pricing"><img src="https://agentmods.dev/badge/skills/prajapatimehul/claude-aws-cost-saver/validating-aws-pricing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,464 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.00078 $0.02464
Opus 5 $0.00039 $0.01232
Sonnet 5 $0.00016 $0.00493
Haiku 4.5 $0.00008 $0.00246

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

Security

Grade A, and why

validating-aws-pricing 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/validate_pricing.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

plugins/aws-cost-saver/skills/validating-aws-pricing/SKILL.md · 280 lines

How it starts

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

Validating AWS Pricing

MANDATORY validation step that catches pricing errors before they reach the user.

Why This Matters

Common errors this skill catches:

  • CloudWatch Logs: Confusing $0.50/GB ingestion with $0.03/GB storage
  • Savings exceeding actual service spend (impossible)
  • Wrong multipliers or formulas
  • Missing cost components

Purpose

This skill validates pricing for ALL findings using the Zero Hallucination Pricing System. Every finding must have a verifiable pricing_source. Findings without a pricing source or with fabricated prices are rejected (set to monthly_savings=0 with pricing_unknown=true).

Quick Start

# Validate with default $100 threshold (queries API only for >$100 findings)
python3 "${CLAUDE_PLUGIN_ROOT}/skills/validating-aws-pricing/scripts/validate_pricing.py" findings.json --profile your-profile

# Lower threshold to validate more findings
python3 "${CLAUDE_PLUGIN_ROOT}/skills/validating-aws-pricing/scripts/validate_pricing.py" findings.json --profile your-profile --threshold 50

# Works with any AWS auth method (SSO, access keys, IAM role)
python3 "${CLAUDE_PLUGIN_ROOT}/skills/validating-aws-pricing/scripts/validate_pricing.py" findings.json  # uses default credentials

What Gets Updated

For findings above threshold (default $100):

  1. Queries real AWS Pricing API for EC2, RDS, EBS
  2. Updates monthly_savings with validated value
  3. Marks api_validated: true in metadata

For findings below threshold:

  1. Preserves pricing that already carries a compliant pricing_source and calculation
  2. Resolves from the verified us-east-1 table where an exact formula exists
  3. Otherwise sets monthly_savings=0 with pricing_unknown=true — it NEVER estimates

All findings get pricing_validated metadata showing the source.

Pricing Calculation by Finding Type

Idle Resources (EC2-001, etc.)

Savings = Full monthly cost of the resource

savings = hourly_rate * 730  # Resource should be terminated

Read the full file on GitHub · 280 lines

Files

What ships with it

2 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. 11d ago First seen · 280 lines · 78 tokens per session scan A 80670e4991ea

Subscribe to this mod's changes

validating-aws-pricing is a skill published in the GitHub repository prajapatimehul/claude-aws-cost-saver (22 stars, last pushed 2mo ago), licensed MIT. It adds 78 tokens to every session and 2,464 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

finops-expert

Expert-level cloud financial operations, cost optimization, and cloud economics. Use when the user mentions cloud cost, optimization, cloud economics, or AWS cost, or when the task involves FinOps Fundamentals, Cost Management, FinOps Practices, or Cost Visibility.

personamanagmentlayer/pcl · 55 tokens

auditing-aws-s3-bucket-permissions

Systematically audit AWS S3 bucket permissions to identify publicly accessible buckets, overly permissive ACLs, misconfigured bucket policies, and missing encryption settings using AWS CLI, S3audit, and Prowler to enforce least-privilege data access controls.

adriannoes/awesome-agentic-ai · 62 tokens

aws-architecture-diagram

Always use when user asks to create, generate, or build an AWS architecture diagram, cloud infrastructure diagram, or system diagram with AWS services. Also activates for draw.io diagrams mentioning AWS services like Lambda, DynamoDB, S3, API Gateway, etc.

vidanov/aws-architecture-diagram-skill · 57 tokens

aws-architecture-diagram

Generate AWS architecture diagrams in draw.io format. Activates when the user asks to create, generate, or build an architecture diagram, system diagram, or draw.io diagram for AWS services.

vidanov/aws-architecture-diagram-skill · 43 tokens

aws-architecture-diagram

Generate AWS architecture diagrams in draw.io format. Activates when the user asks to create, generate, or build an architecture diagram, system diagram, or draw.io diagram for AWS services.

vidanov/aws-architecture-diagram-skill · 43 tokens

detecting-aws-cloudtrail-anomalies

Detect unusual API call patterns in AWS CloudTrail logs using boto3, statistical baselining, and behavioral analysis to identify credential compromise, privilege escalation, and unauthorized resource access.

adriannoes/awesome-agentic-ai · 45 tokens