Search and browse wellness providers (SmartListings).
PREREQUISITE: Read
../betterness-shared/SKILL.mdfor auth, global flags, and security rules.
betterness smart-listings <command> [flags]
smart-listings searchSearch SmartListings by name, description, tags, or location.
# Text search
betterness smart-listings search --query "yoga" --json
# Location search
betterness smart-listings search --lat 40.7128 --lng -74.0060 --radius 10 --json
# Only followed providers
betterness smart-listings search --following --json
# Paginated
betterness smart-listings search --query "nutrition" --limit 20 --page 0 --json
| Option | Description |
|---|---|
--query <text> | Text search query |
--lat <n> | Latitude for proximity search |
--lng <n> | Longitude for proximity search |
--radius <km> | Radius in km: 1, 2, 5, 10, or 20 |
--following | Only show followed providers |
--limit <n> | Results per page (default: 10) |
--page <n> | Page number, zero-based (default: 0) |
Returns: name, city, state, rating, externalId
smart-listings detailGet full details of a SmartListing by ID.
betterness smart-listings detail --id sl-abc123 --json
| Option | Description |
|---|---|
--id <externalId> | Required. SmartListing external ID |
search to find providers, then detail with the externalId for full information.--lat and --lng. Add --radius to control the search area.