npx skills add ...
npx skills add posthog/posthog.com --skill competitor-data-verifier
npx skills add posthog/posthog.com --skill competitor-data-verifier
Verify and update competitor product data by scraping competitor websites using WebFetch/WebSearch. Use when the user asks to verify, check, or update competitor information in competitorData files (like amplitude.tsx, mixpanel.tsx), or when they want to ensure competitor feature data is accurate and current. This skill systematically checks product features, pricing, platform details, and generates update recommendations with source URLs for verification.
Verify and update competitor product data in src/hooks/competitorData/*.tsx by scraping competitor websites.
Read the competitor data file and understand what needs verifying:
If any feature key is unclear (e.g. instant_rollbacks, persist_across_auth), check the matching feature definition file in src/hooks/featureDefinitions/ for the human-readable label and description. For example, feature keys under feature_flags.management.features are defined in src/hooks/featureDefinitions/feature_flags.tsx. This tells you exactly what the feature means so you can search for the right thing on the competitor's site.
This is the most important optimization. Launch multiple WebFetch and WebSearch calls in parallel — don't do them one at a time.
Batch 1 — Direct page fetches + searches in parallel:
Batch 2 — Fill gaps (for anything Batch 1 missed or 404'd):
Batch 3 — Targeted follow-ups for remaining unknowns. Try docs subdomains (docs.{competitor}.com) which scrape more reliably than marketing pages.
WebFetch often returns incomplete content (nav/footer only) on JS-heavy pages. When this happens:
docs.{competitor}.com pages are usually static and scrape well/pricing vs /plans vs /buy/security vs /trust vs /compliance/analytics vs /product-analytics vs /products/analytics/integrations vs /data-connections vs /marketplaceFor each field in the competitor data file, classify as:
Use this streamlined format (see references/report-template.md for full template):
/pricing page is the single highest-value page — it reveals plan names, feature gates, and free tier limits all at oncedocs.{competitor}.com) scrape more reliably than marketing pages