Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-goodrx Install via the SkillsCat registry.
SKILL.md
GoodRx
Overview
Drug price comparison platform. Compare prescription drug prices across pharmacies and find nearby pharmacies.
Workflows
Find drug prices
searchDrugs(query)→name,url(url path = slug)getDrugPrices(slug)→ pharmacy prices withdrugName,pharmacy,price
Find pharmacies near me
getPharmacies(zipCode?)→ list of pharmacy chains with URLs
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchDrugs | search for a drug | query | name, url | entry point; autocomplete results |
| getDrugPrices | compare prices across pharmacies | slug ← searchDrugs | drugName, pharmacy, price | coupon prices at CVS, Walgreens, etc. |
| getPharmacies | find nearby pharmacies | zipCode (optional) | name, slug, url | entry point; defaults to browser geolocation |
Quick Start
# Search for a drug
openweb goodrx exec searchDrugs '{"query":"metformin"}'
# Get drug prices at pharmacies
openweb goodrx exec getDrugPrices '{"slug":"metformin"}'
# Find nearby pharmacies
openweb goodrx exec getPharmacies '{}'
# Find pharmacies by ZIP code
openweb goodrx exec getPharmacies '{"zipCode":"90210"}'