omgskills Get the Mac app
Skill

pricing-tracker

@firecrawl 1.1k stars Updated 2026-04-19 Author match: High

Extract and normalize pricing tiers from any SaaS, API, cloud, or LLM vendor's pricing page. Use this skill whenever the user says "pricing for X", "how much does X cost", "pricing tiers", "cost comparison", provides a URL ending in `/pricing` or `/plans`, or asks to monitor pricing over time. Pairs well with `exportSkill` to turn a run into a cron-friendly workflow. Scrape-driven; no interact needed for typical pricing pages.

Install

Install this Claude and Codex skill with the command below. The command stays visible even when copy support is unavailable.

Install command
git clone https://github.com/firecrawl/web-agent /tmp/web-agent && ln -s /tmp/web-agent/agent-core/src/skills/definitions/pricing-tracker ~/.claude/skills/pricing-tracker

View on GitHub

From README

Pricing Tracker Extract pricing tiers from a vendor's pricing page and normalize them into a consistent shape. Optimized for SaaS, API, cloud, LLM, and CDN pricing pages — all of which share similar structure but inconsistent naming. When to use User provides a pricing URL: "get pricing from https://openai.com/api/pricing" User names a vendor: "what does Vercel cost?", "get Anthropic API pricing" User wants to compare prices across vendors (delegate per-vendor extraction to this skill, then aggregate) User wants to monitor pricing on a schedule (combine with exportSkill: true to generate a standalone workflow) Do NOT use for e-commerce SKU pricing — use e-commerce instead. Strategy Find the pricing URL. If the user provided one, use it. Otherwise search " pricing" and take the top result from the vendor's own domain. Scrape with only-main-content. Pricing pages are heavy on nav and testimonials that waste context. Identify the unit.

More from this repo