# Send Local Places to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "local-places",
    "name": "Local Places",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/steipete/local-places",
    "canonicalUrl": "https://clawhub.ai/steipete/local-places",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/local-places",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=local-places",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "pyproject.toml",
      "SKILL.md",
      "SERVER_README.md",
      "src/local_places/__init__.py",
      "src/local_places/google_places.py",
      "src/local_places/schemas.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "local-places",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T02:08:52.688Z",
      "expiresAt": "2026-05-12T02:08:52.688Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=local-places",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=local-places",
        "contentDisposition": "attachment; filename=\"local-places-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "local-places"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/local-places"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/local-places",
    "downloadUrl": "https://openagent3.xyz/downloads/local-places",
    "agentUrl": "https://openagent3.xyz/skills/local-places/agent",
    "manifestUrl": "https://openagent3.xyz/skills/local-places/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/local-places/agent.md"
  }
}
```
## Documentation

### 📍 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

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

Check server: curl http://127.0.0.1:8000/ping


Resolve location:

curl -X POST http://127.0.0.1:8000/locations/resolve \\
  -H "Content-Type: application/json" \\
  -d '{"location_text": "Soho, London", "limit": 5}'

Search places:

curl -X POST http://127.0.0.1:8000/places/search \\
  -H "Content-Type: application/json" \\
  -d '{
    "query": "coffee shop",
    "location_bias": {"lat": 51.5137, "lng": -0.1366, "radius_m": 1000},
    "filters": {"open_now": true, "min_rating": 4.0},
    "limit": 10
  }'

Get details:

curl http://127.0.0.1:8000/places/{place_id}

### Conversation Flow

If user says "near me" or gives vague location → resolve it first
If multiple results → show numbered list, ask user to pick
Ask for preferences: type, open now, rating, price level
Search with location_bias from chosen location
Present results with name, rating, address, open status
Offer to fetch details or refine search

### Filter Constraints

filters.types: exactly ONE type (e.g., "restaurant", "cafe", "gym")
filters.price_levels: integers 0-4 (0=free, 4=very expensive)
filters.min_rating: 0-5 in 0.5 increments
filters.open_now: boolean
limit: 1-20 for search, 1-10 for resolve
location_bias.radius_m: must be > 0

### Response Format

{
  "results": [
    {
      "place_id": "ChIJ...",
      "name": "Coffee Shop",
      "address": "123 Main St",
      "location": {"lat": 51.5, "lng": -0.1},
      "rating": 4.6,
      "price_level": 2,
      "types": ["cafe", "food"],
      "open_now": true
    }
  ],
  "next_page_token": "..." 
}

Use next_page_token as page_token in next request for more results.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: steipete
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T02:08:52.688Z
- Expires at: 2026-05-12T02:08:52.688Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/local-places)
- [Send to Agent page](https://openagent3.xyz/skills/local-places/agent)
- [JSON manifest](https://openagent3.xyz/skills/local-places/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/local-places/agent.md)
- [Download page](https://openagent3.xyz/downloads/local-places)