Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-yelp Install via the SkillsCat registry.
SKILL.md
Yelp
Overview
Local business discovery platform — search businesses, autocomplete suggestions, read reviews. Commerce archetype.
Workflows
Search for local businesses
autocompleteBusinesses(prefix, loc)→ suggestions withquerysearchBusinesses(find_desc, find_loc)→ business list withname,rating,address
Browse by location
searchBusinesses(find_desc, find_loc)→ results withbizId,alias,categories- Paginate with
startparam (10 results per page)
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| autocompleteBusinesses | typeahead suggestions | prefix, loc | title, query, subtitle, type | entry point; node transport |
| searchBusinesses | search businesses by keyword + location | find_desc, find_loc | name, rating, reviewCount, categories, address | entry point; adapter (browser); paginated (start); currently blocked by DataDome |
Quick Start
# Autocomplete suggestions
openweb yelp exec autocompleteBusinesses '{"prefix": "piz", "loc": "San Francisco, CA"}'
# Search for businesses
openweb yelp exec searchBusinesses '{"find_desc": "pizza", "find_loc": "San Francisco, CA"}'
# Paginate search results (page 2)
openweb yelp exec searchBusinesses '{"find_desc": "pizza", "find_loc": "San Francisco, CA", "start": 10}'