# Send Places Search 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": "camino-places",
    "name": "Places Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/James-southendsolutions/camino-places",
    "canonicalUrl": "https://clawhub.ai/James-southendsolutions/camino-places",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/camino-places",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=camino-places",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/places.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/camino-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/camino-places",
    "downloadUrl": "https://openagent3.xyz/downloads/camino-places",
    "agentUrl": "https://openagent3.xyz/skills/camino-places/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camino-places/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camino-places/agent.md"
  }
}
```
## Documentation

### Installation

Companion Skills: This is part of the Camino AI location intelligence suite. Install all available skills (query, places, relationship, context, route, journey, real-estate, hotel-finder, ev-charger, school-finder, parking-finder, fitness-finder, safety-checker, travel-planner) for comprehensive coverage.

# Install all skills from repo
npx skills add https://github.com/barneyjm/camino-skills

# Or install specific skills
npx skills add https://github.com/barneyjm/camino-skills --skill places

Via clawhub:

npx clawhub@latest install places
# or: pnpm dlx clawhub@latest install places
# or: bunx clawhub@latest install places

### Places - Flexible Place Lookup

Locate places using free-form queries or structured address components. Supports geocoding, place lookup, and optional street-level imagery.

### Places vs Query

Feature/places/queryMethodPOSTGETInputFree-form OR structured addressNatural language with contextCoordinatesReturns them (geocoding)Can auto-generate for search centerAI RankingNoYesPhotosOptional street-level imageryNoBest For"Eiffel Tower", address lookup"quiet cafes near Times Square"

Use /places for geocoding addresses or finding specific named places.
Use /query for natural language queries with AI ranking.

### Setup

Instant Trial (no signup required): Get a temporary API key with 25 calls:

curl -s -X POST -H "Content-Type: application/json" \\
  -d '{"email": "you@example.com"}' \\
  https://api.getcamino.ai/trial/start

Returns: {"api_key": "camino-xxx...", "calls_remaining": 25, ...}

For 1,000 free calls/month, sign up at https://app.getcamino.ai/skills/activate.

Add your key to Claude Code:

Add to your ~/.claude/settings.json:

{
  "env": {
    "CAMINO_API_KEY": "your-api-key-here"
  }
}

Restart Claude Code.

### Via Shell Script

# Free-form search for a landmark
./scripts/places.sh '{"query": "Eiffel Tower"}'

# Search with street-level photos
./scripts/places.sh '{"query": "Empire State Building", "include_photos": true}'

# Structured address search
./scripts/places.sh '{"street": "1600 Pennsylvania Avenue", "city": "Washington", "state": "DC", "country": "USA"}'

# Search by city
./scripts/places.sh '{"city": "San Francisco", "state": "California", "limit": 5}'

### Via curl (direct API calls)

The skill is named places but calls the /search API endpoint. For direct API calls:

curl -X POST -H "X-API-Key: $CAMINO_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"query": "Eiffel Tower", "include_photos": true}' \\
  "https://api.getcamino.ai/search"

### Parameters

ParameterTypeRequiredDefaultDescriptionquerystringNo*-Free-form search (e.g., "Eiffel Tower", "Central Park")amenitystringNo-Amenity/POI typestreetstringNo-Street name and numbercitystringNo-City namecountystringNo-County namestatestringNo-State or provincecountrystringNo-Country name or codepostalcodestringNo-Postal/ZIP codelimitintNo10Maximum results (1-50)include_photosboolNofalseInclude street-level imageryphoto_radiusintNo100Photo search radius in meters (10-500)modestringNo"basic""basic" or "advanced" search depth

*Either query or at least one address component is required.

### Response Format

[
  {
    "display_name": "Eiffel Tower, 5 Avenue Anatole France, 75007 Paris, France",
    "lat": 48.8584,
    "lon": 2.2945,
    "type": "tourism",
    "importance": 0.95,
    "address": {
      "tourism": "Eiffel Tower",
      "road": "Avenue Anatole France",
      "city": "Paris",
      "country": "France",
      "postcode": "75007"
    },
    "photos": [
      {
        "url": "https://...",
        "lat": 48.8580,
        "lon": 2.2948,
        "heading": 45
      }
    ],
    "has_street_imagery": true
  }
]

### Geocode an address

./scripts/places.sh '{"street": "350 Fifth Avenue", "city": "New York", "state": "NY"}'

### Find a landmark with photos

./scripts/places.sh '{"query": "Statue of Liberty", "include_photos": true, "photo_radius": 200}'

### Search by postal code

./scripts/places.sh '{"postalcode": "90210", "country": "USA"}'

### Advanced mode for richer data

./scripts/places.sh '{"query": "Times Square", "mode": "advanced", "include_photos": true}'

### Best Practices

Use query for landmarks, POIs, and well-known places
Use structured address fields for precise geocoding
Enable include_photos when you need visual context
Use mode: "advanced" for web-enriched place data
Combine address components for more accurate results
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: James-southendsolutions
- Version: 0.2.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/camino-places)
- [Send to Agent page](https://openagent3.xyz/skills/camino-places/agent)
- [JSON manifest](https://openagent3.xyz/skills/camino-places/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/camino-places/agent.md)
- [Download page](https://openagent3.xyz/downloads/camino-places)