← Back to Skills Marketplace
james-southendsolutions

Places Search

cross-platform ✓ Security Clean
703
Downloads
2
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install camino-places
Description
Locate places using flexible query formats - free-form search or structured address components. Returns coordinates, addresses, and optional street-level pho...
README (SKILL.md)

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 /query
Method POST GET
Input Free-form OR structured address Natural language with context
Coordinates Returns them (geocoding) Can auto-generate for search center
AI Ranking No Yes
Photos Optional street-level imagery No
Best 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": "[email protected]"}' \
  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.

Usage

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

Parameter Type Required Default Description
query string No* - Free-form search (e.g., "Eiffel Tower", "Central Park")
amenity string No - Amenity/POI type
street string No - Street name and number
city string No - City name
county string No - County name
state string No - State or province
country string No - Country name or code
postalcode string No - Postal/ZIP code
limit int No 10 Maximum results (1-50)
include_photos bool No false Include street-level imagery
photo_radius int No 100 Photo search radius in meters (10-500)
mode string No "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
  }
]

Examples

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
Usage Guidance
This skill appears internally consistent: it needs CAMINO_API_KEY and uses curl/jq to call api.getcamino.ai/search. Before installing or running: (1) Confirm you trust api.getcamino.ai and the GitHub repo referenced by the npx install examples; (2) Prefer using an ephemeral/trial key or set CAMINO_API_KEY only in the environment for the process (avoid placing secrets in global files if you don’t want long-lived storage); (3) Inspect the remote repo/scripts if you plan to run npx/pnpm commands, since those fetch and execute code from the network; (4) Monitor API usage and rotate the key if you suspect misuse.
Capability Analysis
Type: OpenClaw Skill Name: camino-places Version: 0.2.0 The skill bundle is benign. It provides a shell script (`scripts/places.sh`) that uses `curl` and `jq` to interact with the `https://api.getcamino.ai/search` endpoint for place lookup, requiring a `CAMINO_API_KEY`. The script correctly validates JSON input and passes it as the request body, preventing shell injection. The `SKILL.md` documentation clearly outlines the skill's purpose, dependencies, and usage, without any evidence of prompt injection attempts or instructions for the AI agent to perform malicious actions. There are no signs of data exfiltration, persistence mechanisms, or obfuscation.
Capability Assessment
Purpose & Capability
Name/description (place lookup, geocoding, optional street photos) match the actual behavior: the script and docs call https://api.getcamino.ai/search and only require CAMINO_API_KEY, curl, and jq.
Instruction Scope
SKILL.md and scripts are focused on forming and POSTing the JSON search payload to the Camino API. They only reference the declared env var and standard shell tools; they do not read unrelated files or exfiltrate data to other endpoints.
Install Mechanism
This is instruction-only with an included shell script; no install spec writes arbitrary archives to disk. The README suggests npx/pnpm install from a GitHub repo which is common — exercise the usual caution before running remote installers.
Credentials
Only CAMINO_API_KEY is required and declared as the primary credential. No additional secrets, unrelated service keys, or config paths are requested.
Persistence & Privilege
Skill does not request always:true or system-wide changes. It suggests storing the API key in ~/.claude/settings.json (expected for integrations) but does not modify other skills or system settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install camino-places
  3. After installation, invoke the skill by name or use /camino-places
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.2.0
- Added curl and jq as required external binaries in the skill metadata for improved clarity on dependencies. - No functional changes to features or usage. Documentation update only.
v0.1.0
- Initial release of the camino-places skill for flexible place lookup and geocoding. - Supports both free-form (e.g. "Eiffel Tower") and structured address searches. - Returns coordinates, display names, detailed addresses, and optional street-level photos. - Provides usage examples for shell scripts and direct curl/API integration. - Includes detailed parameter documentation and best practices. - Compatible with the Camino AI skills suite; requires a CAMINO_API_KEY.
Metadata
Slug camino-places
Version 0.2.0
License
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is Places Search?

Locate places using flexible query formats - free-form search or structured address components. Returns coordinates, addresses, and optional street-level pho... It is an AI Agent Skill for Claude Code / OpenClaw, with 703 downloads so far.

How do I install Places Search?

Run "/install camino-places" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Places Search free?

Yes, Places Search is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Places Search support?

Places Search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Places Search?

It is built and maintained by James-southendsolutions (@james-southendsolutions); the current version is v0.2.0.

💬 Comments