plugins/ai-resources/skills/model-price-compare/SKILL.md
Compare AI model prices across Anthropic, OpenAI, and Google. Generates pages-per-dollar / cost-per-token visualizations.
npx skillsauth add amhuppert/my-ai-resources model-price-compareInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate an interactive HTML visualization comparing pricing and capabilities of frontier AI models across major providers.
Research the current pricing for these frontier model families:
| Provider | Model | Baseline price (per 1M tokens, as of July 2026) |
|----------|-------|--------------------------------------------------|
| Anthropic | Claude Fable 5 (claude-fable-5) | $10 input / $50 output |
| Anthropic | Claude Opus 5 (claude-opus-5) | $5 input / $25 output |
| Anthropic | Claude Sonnet 5 (claude-sonnet-5) | $3 input / $15 output ($2 / $10 intro through 2026-08-31) |
| Anthropic | Claude Haiku 4.5 (claude-haiku-4-5-20251001) | $1 input / $5 output |
| OpenAI | GPT-5.6 family (Sol, Terra, Luna) | Sol $5 / $30; Terra $2.50 / $15; Luna $1 / $6 |
| Google | Latest Gemini models (Gemini 2.5 Pro, Gemini 2.5 Flash, etc.) | verify at research time |
The models listed above are baseline targets as of July 2026, and the baseline prices exist only to sanity-check research results. If newer versions exist, use the current versions. Include additional frontier models discovered during research that belong to these product lines. Exclude deprecated, preview, or fine-tuning-only variants.
Search for the official API pricing page of each provider. For each model, collect:
| Field | Description |
|-------|-------------|
| provider | Anthropic, OpenAI, or Google |
| model | Display name (e.g., "Claude Sonnet 5") |
| inputPrice | USD per 1M input tokens |
| outputPrice | USD per 1M output tokens |
| contextWindow | Maximum context window in tokens |
Use standard real-time API pricing. If a provider offers tiered pricing (batch, cached, etc.), use the default non-batch, non-cached tier.
Pages per dollar — approximate one page as 800 tokens:
pagesPerDollarInput = 1,000,000 / inputPrice / 800
pagesPerDollarOutput = 1,000,000 / outputPrice / 800
Create a self-contained HTML file saved as model-price-comparison.html in the current working directory.
Refer to references/visualization-spec.md for the complete HTML structure, Chart.js configurations, and styling guidelines.
Use consistent colors across all charts:
| Provider | Color | Hex |
|----------|-------|-----|
| Anthropic | Coral | #D97757 |
| OpenAI | Green | #10A37F |
| Google | Blue | #4285F4 |
After generating the HTML file:
references/visualization-spec.md — HTML page structure, Chart.js chart configurations, table styling, and responsive layout patternsdevelopment
Debug a running web app via the web-debugger SDK: app logs, application state, runtime snapshots, React state, query cache.
development
Thoroughly understand a software development objective before implementation: research, identify ambiguities, ask clarifying questions. Use before starting implementation of a non-trivial or ambiguously specified feature, or when requirements leave open design decisions.
development
Locate the on-disk Claude Code transcript file (.jsonl under ~/.claude/projects/) for the current or a specified conversation.
development
Reflect on codebase navigation effectiveness at end of conversation. Surfaces dead ends, inefficiencies, missing context. Does not write files — pair with /kiro:steering-custom to persist.