$npx -y skills add SafeAI-Lab-X/ClawKeeper --skill goplacesQuery Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
| 1 | # goplaces |
| 2 | |
| 3 | Modern Google Places API (New) CLI. Human output by default, `--json` for scripts. |
| 4 | |
| 5 | Install |
| 6 | |
| 7 | - Homebrew: `brew install steipete/tap/goplaces` |
| 8 | |
| 9 | Config |
| 10 | |
| 11 | - `GOOGLE_PLACES_API_KEY` required. |
| 12 | - Optional: `GOOGLE_PLACES_BASE_URL` for testing/proxying. |
| 13 | |
| 14 | Common commands |
| 15 | |
| 16 | - Search: `goplaces search "coffee" --open-now --min-rating 4 --limit 5` |
| 17 | - Bias: `goplaces search "pizza" --lat 40.8 --lng -73.9 --radius-m 3000` |
| 18 | - Pagination: `goplaces search "pizza" --page-token "NEXT_PAGE_TOKEN"` |
| 19 | - Resolve: `goplaces resolve "Soho, London" --limit 5` |
| 20 | - Details: `goplaces details <place_id> --reviews` |
| 21 | - JSON: `goplaces search "sushi" --json` |
| 22 | |
| 23 | Notes |
| 24 | |
| 25 | - `--no-color` or `NO_COLOR` disables ANSI color. |
| 26 | - Price levels: 0..4 (free → very expensive). |
| 27 | - Type filter sends only the first `--type` value (API accepts one). |