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 (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.
bash
undefined
配套Skill:这是Camino AI位置智能套件的一部分。为实现全面覆盖,请安装所有可用Skill(query、places、relationship、context、route、journey、real-estate、hotel-finder、ev-charger、school-finder、parking-finder、fitness-finder、safety-checker、travel-planner)。
bash
undefined

Install all skills from repo

从仓库安装所有Skill

Or install specific skills

或安装特定Skill

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

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

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

or: pnpm dlx clawhub@latest install parking-finder

或:pnpm dlx clawhub@latest install parking-finder

or: bunx clawhub@latest install parking-finder

或:bunx clawhub@latest install 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

设置

Instant Trial (no signup required): Get a temporary API key with 25 calls:
bash
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
:
json
{
  "env": {
    "CAMINO_API_KEY": "your-api-key-here"
  }
}
Restart Claude Code.
即时试用(无需注册):获取临时API密钥,可调用25次:
bash
curl -s -X POST -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}' \
  https://api.getcamino.ai/trial/start
返回结果:
{"api_key": "camino-xxx...", "calls_remaining": 25, ...}
若要每月免费调用1000次,请访问https://app.getcamino.ai/skills/activate注册。
将密钥添加到Claude Code:
将以下内容添加到您的
~/.claude/settings.json
文件中:
json
{
  "env": {
    "CAMINO_API_KEY": "your-api-key-here"
  }
}
重启Claude Code。

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)
参数类型是否必填默认值描述
query字符串"parking garages lots"搜索查询词(可指定特定停车类型)
lat浮点数-搜索中心纬度。若未提供,AI会为已知地点自动生成
lon浮点数-搜索中心经度。若未提供,AI会为已知地点自动生成
radius整数1000搜索半径(单位:米)
limit整数15最大结果数量(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
    route
    skill to get walking directions from parking to your destination
  • Combine with the
    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")
  • 结合
    route
    Skill获取从停车场到目的地的步行路线
  • 结合
    relationship
    Skill比较多个停车场之间的距离
  • 在查询词中指定“parking garages”或“street parking”以获得更精准的结果