camino-parking-finder

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Installation

安装

Companion Skills: This is part of the Camino AI location intelligence suite. Install all available skills (camino-query, camino-places, camino-relationship, camino-context, camino-route, camino-journey, camino-real-estate, camino-hotel-finder, camino-ev-charger, camino-school-finder, camino-parking-finder, camino-fitness-finder, camino-safety-checker, camino-travel-planner) for comprehensive coverage.
bash
undefined
配套技能:这是Camino AI位置智能套件的一部分。安装所有可用技能(camino-query、camino-places、camino-relationship、camino-context、camino-route、camino-journey、camino-real-estate、camino-hotel-finder、camino-ev-charger、camino-school-finder、camino-parking-finder、camino-fitness-finder、camino-safety-checker、camino-travel-planner)以获得全面覆盖。
bash
undefined

Install all skills from repo

Install all skills from repo

Or install specific skills

Or install specific skills

npx skills add https://github.com/barneyjm/camino-skills --skill camino-parking-finder

**Via clawhub:**
```bash
npx clawhub@latest install camino-parking-finder
npx skills add https://github.com/barneyjm/camino-skills --skill camino-parking-finder

**通过clawhub安装:**
```bash
npx clawhub@latest install camino-parking-finder

or: pnpm dlx clawhub@latest install camino-parking-finder

or: pnpm dlx clawhub@latest install camino-parking-finder

or: bunx clawhub@latest install camino-parking-finder

or: bunx clawhub@latest install camino-parking-finder

undefined
undefined

Parking Finder

停车场查找工具

Locate parking garages, lots, and street parking near your destination. Uses OpenStreetMap data with AI-powered ranking to find the most relevant parking options.
定位目的地附近的停车场、停车区及路边停车位。该工具使用OpenStreetMap数据并结合AI驱动的排名功能,查找最相关的停车选项。

Setup

设置

These skills shell out to
curl
and authenticate via the
CAMINO_API_KEY
environment variable. Sign up at https://app.getcamino.ai/skills/activate for 100 free calls/month and an API key.
Add your key to Claude Code:
Add to your
~/.claude/settings.json
:
json
{
  "env": {
    "CAMINO_API_KEY": "your-api-key-here"
  }
}
Restart Claude Code.
Alternative — pay-per-request via x402: Camino's paid endpoints also accept HTTP 402 payments in USDC on Base ($0.001/request) from any x402-capable client, with no signup or API key. These skills don't use this path; it's for agents and clients that speak x402 natively.
这些技能通过调用
curl
并使用
CAMINO_API_KEY
环境变量进行身份验证。访问https://app.getcamino.ai/skills/activate注册,每月可获得100次免费调用及一个API密钥。
将密钥添加到Claude Code中
将以下内容添加到你的
~/.claude/settings.json
文件中:
json
{
  "env": {
    "CAMINO_API_KEY": "your-api-key-here"
  }
}
重启Claude Code。
替代方案——通过x402按次付费:Camino的付费端点还支持任何兼容x402的客户端以Base链上的USDC进行HTTP 402支付(每次请求0.001美元),无需注册或API密钥。本技能不使用此路径;该路径适用于原生支持x402的Agent和客户端。

Usage

使用方法

Via Shell Script

通过Shell脚本

bash
undefined
bash
undefined

Find parking near a venue

查找场馆附近的停车场

./scripts/parking-finder.sh '{"query": "parking near Madison Square Garden", "limit": 10}'
./scripts/parking-finder.sh '{"query": "parking near Madison Square Garden", "limit": 10}'

Find parking with coordinates

通过坐标查找停车场

./scripts/parking-finder.sh '{"lat": 40.7505, "lon": -73.9934, "radius": 500}'
./scripts/parking-finder.sh '{"lat": 40.7505, "lon": -73.9934, "radius": 500}'

Find parking garages specifically

专门查找停车场

./scripts/parking-finder.sh '{"query": "parking garages", "lat": 37.7749, "lon": -122.4194}'
undefined
./scripts/parking-finder.sh '{"query": "parking garages", "lat": 37.7749, "lon": -122.4194}'
undefined

Via curl

通过curl

bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=parking+garages+lots&lat=40.7505&lon=-73.9934&radius=1000&rank=true"
bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=parking+garages+lots&lat=40.7505&lon=-73.9934&radius=1000&rank=true"

Parameters

参数

ParameterTypeRequiredDefaultDescription
querystringNo"parking garages lots"Search query (override for specific parking types)
latfloatNo-Latitude for search center. AI generates if omitted for known locations.
lonfloatNo-Longitude for search center. AI generates if omitted for known locations.
radiusintNo1000Search radius in meters
limitintNo15Maximum results (1-100)
参数类型是否必填默认值描述
querystring"parking garages lots"搜索查询(可指定特定停车类型)
latfloat-搜索中心纬度。若省略,AI会针对已知地点自动生成。
lonfloat-搜索中心经度。若省略,AI会针对已知地点自动生成。
radiusint1000搜索半径(单位:米)
limitint15最大结果数(1-100)

Response Format

响应格式

json
{
  "query": "parking garages lots",
  "results": [
    {
      "name": "Icon Parking - West 33rd Street",
      "lat": 40.7502,
      "lon": -73.9930,
      "type": "parking",
      "distance_m": 120,
      "relevance_score": 0.93,
      "address": "..."
    }
  ],
  "ai_ranked": true,
  "pagination": {
    "total_results": 11,
    "limit": 15,
    "offset": 0,
    "has_more": false
  }
}
json
{
  "query": "parking garages lots",
  "results": [
    {
      "name": "Icon Parking - West 33rd Street",
      "lat": 40.7502,
      "lon": -73.9930,
      "type": "parking",
      "distance_m": 120,
      "relevance_score": 0.93,
      "address": "..."
    }
  ],
  "ai_ranked": true,
  "pagination": {
    "total_results": 11,
    "limit": 15,
    "offset": 0,
    "has_more": false
  }
}

Examples

示例

Parking near a stadium

体育场附近的停车场

bash
./scripts/parking-finder.sh '{"query": "parking near Dodger Stadium", "radius": 2000}'
bash
./scripts/parking-finder.sh '{"query": "parking near Dodger Stadium", "radius": 2000}'

Parking near an airport

机场附近的停车场

bash
./scripts/parking-finder.sh '{"query": "long term parking near SFO airport", "radius": 3000}'
bash
./scripts/parking-finder.sh '{"query": "long term parking near SFO airport", "radius": 3000}'

Parking in a downtown area

市中心区域的停车场

bash
./scripts/parking-finder.sh '{"lat": 41.8781, "lon": -87.6298, "radius": 800, "limit": 10}'
bash
./scripts/parking-finder.sh '{"lat": 41.8781, "lon": -87.6298, "radius": 800, "limit": 10}'

Best Practices

最佳实践

  • Use a smaller radius (500-1000m) in dense urban areas where parking is nearby but hard to find
  • Use a larger radius (2000-3000m) near stadiums, airports, or suburban destinations
  • Include the venue name in your query for contextual results (e.g., "parking near Madison Square Garden")
  • Combine with the
    camino-route
    skill to get walking directions from parking to your destination
  • Combine with the
    camino-relationship
    skill to compare distances between multiple parking options
  • Specify "parking garages" or "street parking" in the query for more targeted results
  • 在停车资源紧张的密集城区,使用较小的半径(500-1000米)
  • 在体育场、机场或郊区目的地附近,使用较大的半径(2000-3000米)
  • 在查询中包含场馆名称以获得上下文相关结果(例如:"parking near Madison Square Garden")
  • 结合
    camino-route
    技能获取从停车场到目的地的步行路线
  • 结合
    camino-relationship
    技能比较多个停车场选项之间的距离
  • 在查询中指定"parking garages"或"street parking"以获得更精准的结果