ev-charger

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
配套技能:这是Camino AI位置智能套件的一部分。安装所有可用技能(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

Install all skills from repo

Or install specific skills

Or install specific skills

npx skills add https://github.com/barneyjm/camino-skills --skill ev-charger

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

**通过clawhub安装:**
```bash
npx clawhub@latest install ev-charger

or: pnpm dlx clawhub@latest install ev-charger

or: pnpm dlx clawhub@latest install ev-charger

or: bunx clawhub@latest install ev-charger

or: bunx clawhub@latest install ev-charger

undefined
undefined

EV Charger Finder

电动汽车充电站查找工具

Find EV charging stations along a route or near a destination. Uses OpenStreetMap data to locate charging infrastructure with AI-powered ranking.
查找路线沿途或目的地附近的电动汽车充电站。借助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 EV chargers near coordinates

Find EV chargers near coordinates

./scripts/ev-charger.sh '{"lat": 34.0522, "lon": -118.2437, "radius": 5000}'
./scripts/ev-charger.sh '{"lat": 34.0522, "lon": -118.2437, "radius": 5000}'

Find chargers with custom query

Find chargers with custom query

./scripts/ev-charger.sh '{"query": "Tesla Supercharger stations", "lat": 37.7749, "lon": -122.4194}'
./scripts/ev-charger.sh '{"query": "Tesla Supercharger stations", "lat": 37.7749, "lon": -122.4194}'

Find chargers in a city

Find chargers in a city

./scripts/ev-charger.sh '{"query": "EV charging stations in Austin Texas", "limit": 20}'
undefined
./scripts/ev-charger.sh '{"query": "EV charging stations in Austin Texas", "limit": 20}'
undefined

Via curl

通过curl

bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=EV+charging+stations&lat=34.0522&lon=-118.2437&radius=5000&rank=true"
bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=EV+charging+stations&lat=34.0522&lon=-118.2437&radius=5000&rank=true"

Parameters

参数

ParameterTypeRequiredDefaultDescription
querystringNo"EV charging stations"Search query (override for specific charger 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.
radiusintNo5000Search radius in meters (larger default for EV chargers)
limitintNo20Maximum results (1-100)
参数类型是否必填默认值说明
querystring"EV charging stations"搜索查询(可指定特定充电站类型)
latfloat-搜索中心点纬度。若省略,AI会为已知位置自动生成。
lonfloat-搜索中心点经度。若省略,AI会为已知位置自动生成。
radiusint5000搜索半径(单位:米,电动汽车充电站默认值更大)
limitint20最大结果数量(1-100)

Response Format

响应格式

json
{
  "query": "EV charging stations",
  "results": [
    {
      "name": "ChargePoint Station",
      "lat": 34.0530,
      "lon": -118.2450,
      "type": "charging_station",
      "distance_m": 200,
      "relevance_score": 0.94,
      "address": "..."
    }
  ],
  "ai_ranked": true,
  "pagination": {
    "total_results": 12,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}
json
{
  "query": "EV charging stations",
  "results": [
    {
      "name": "ChargePoint Station",
      "lat": 34.0530,
      "lon": -118.2450,
      "type": "charging_station",
      "distance_m": 200,
      "relevance_score": 0.94,
      "address": "..."
    }
  ],
  "ai_ranked": true,
  "pagination": {
    "total_results": 12,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}

Examples

示例

Find chargers near a highway exit

Find chargers near a highway exit

bash
./scripts/ev-charger.sh '{"query": "EV charging near Interstate 5", "lat": 34.0522, "lon": -118.2437, "radius": 10000}'
bash
./scripts/ev-charger.sh '{"query": "EV charging near Interstate 5", "lat": 34.0522, "lon": -118.2437, "radius": 10000}'

Find Tesla Superchargers

Find Tesla Superchargers

bash
./scripts/ev-charger.sh '{"query": "Tesla Supercharger", "lat": 37.3861, "lon": -122.0839}'
bash
./scripts/ev-charger.sh '{"query": "Tesla Supercharger", "lat": 37.3861, "lon": -122.0839}'

Find chargers near a hotel

Find chargers near a hotel

bash
./scripts/ev-charger.sh '{"query": "EV charging stations near downtown Denver", "radius": 3000}'
bash
./scripts/ev-charger.sh '{"query": "EV charging stations near downtown Denver", "radius": 3000}'

Best Practices

最佳实践

  • Use a larger radius (5000-10000m) since EV chargers are less densely distributed than other amenities
  • Include the charger network name in the query if you need a specific one (e.g., "Tesla Supercharger", "ChargePoint")
  • Combine with the
    route
    skill to plan charging stops along a driving route
  • Combine with the
    relationship
    skill to check distances from chargers to your destination
  • For road trip planning, use the
    travel-planner
    skill with charging waypoints
  • 由于电动汽车充电站的分布密度低于其他设施,建议使用更大的搜索半径(5000-10000米)
  • 如果需要特定品牌的充电站,可在查询中包含网络名称(例如“Tesla Supercharger”、“ChargePoint”)
  • 结合
    route
    技能规划驾驶路线中的充电停靠点
  • 结合
    relationship
    技能检查充电站到目的地的距离
  • 对于公路旅行规划,使用带有充电途经点的
    travel-planner
    技能