← 返回 Skills 市场
james-southendsolutions

Places Search

作者 James-southendsolutions · GitHub ↗ · v0.2.0
cross-platform ✓ 安全检测通过
703
总下载
2
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install camino-places
功能描述
Locate places using flexible query formats - free-form search or structured address components. Returns coordinates, addresses, and optional street-level pho...
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install camino-places
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /camino-places 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug camino-places
版本 0.2.0
许可证
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Places Search 是什么?

Locate places using flexible query formats - free-form search or structured address components. Returns coordinates, addresses, and optional street-level pho... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 703 次。

如何安装 Places Search?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install camino-places」即可一键安装,无需额外配置。

Places Search 是免费的吗?

是的,Places Search 完全免费(开源免费),可自由下载、安装和使用。

Places Search 支持哪些平台?

Places Search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Places Search?

由 James-southendsolutions(@james-southendsolutions)开发并维护,当前版本 v0.2.0。

💬 留言讨论