@openclaw/local-places

by openclaw · v1.0.1 · prompt

Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.

Install

Add @openclaw/local-places to Claude Code with the PolySkill CLI: polyskill add @openclaw/local-places

Instructions

# 📍 Local Places _Find places, Go fast_ Search for nearby places using a local Google Places API proxy. Two-step flow: resolve location first, then search. ## Setup ```bash cd {baseDir} echo "GOOGLE_PLACES_API_KEY=your-key" > .env uv venv && uv pip install -e ".[dev]" uv run --env-file .env uvicorn local_places.main:app --host 127.0.0.1 --port 8000 ``` Requires `GOOGLE_PLACES_API_KEY` in `.env` or environment. ## Quick Start 1. **Check server:** `curl http://127.0.0.1:8000/ping` 2. **Resolve location:** ```bash curl -X POST http://127.0.0.1:8000/locations/resolve \ -H "Content-Type: applicat…

Keywords: restaurants, cafes, local, google-places