fitness-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
配套技能:这是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

从仓库安装所有技能

Or install specific skills

或安装特定技能

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

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

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

or: pnpm dlx clawhub@latest install fitness-finder

或:pnpm dlx clawhub@latest install fitness-finder

or: bunx clawhub@latest install fitness-finder

或:bunx clawhub@latest install fitness-finder

undefined
undefined

Gym & Fitness Finder

健身房与健身设施查找工具

Search for gyms, yoga studios, swimming pools, and sports facilities near any location. Uses OpenStreetMap data with AI-powered ranking to find the most relevant fitness 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 gyms and fitness centers nearby

查找附近的健身房和健身中心

./scripts/fitness-finder.sh '{"lat": 40.7589, "lon": -73.9851}'
./scripts/fitness-finder.sh '{"lat": 40.7589, "lon": -73.9851}'

Search for yoga studios specifically

专门搜索瑜伽馆

./scripts/fitness-finder.sh '{"query": "yoga studios", "lat": 30.2672, "lon": -97.7431}'
./scripts/fitness-finder.sh '{"query": "yoga studios", "lat": 30.2672, "lon": -97.7431}'

Find swimming pools in a city

查找某城市的游泳池

./scripts/fitness-finder.sh '{"query": "swimming pools in Chicago", "limit": 10}'
undefined
./scripts/fitness-finder.sh '{"query": "swimming pools in Chicago", "limit": 10}'
undefined

Via curl

通过curl调用

bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=gyms+yoga+studios+fitness+centers&lat=40.7589&lon=-73.9851&radius=1500&rank=true"
bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=gyms+yoga+studios+fitness+centers&lat=40.7589&lon=-73.9851&radius=1500&rank=true"

Parameters

参数说明

ParameterTypeRequiredDefaultDescription
querystringNo"gyms yoga studios fitness centers"Search query (override for specific facility 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.
radiusintNo1500Search radius in meters
limitintNo15Maximum results (1-100)
参数类型是否必填默认值描述
query字符串"gyms yoga studios fitness centers"搜索查询词(可指定特定设施类型)
lat浮点数-搜索中心纬度。若省略,AI会为已知地点自动生成。
lon浮点数-搜索中心经度。若省略,AI会为已知地点自动生成。
radius整数1500搜索半径(单位:米)
limit整数15最大结果数量(1-100)

Response Format

响应格式

json
{
  "query": "gyms yoga studios fitness centers",
  "results": [
    {
      "name": "Equinox Fitness Club",
      "lat": 40.7595,
      "lon": -73.9845,
      "type": "fitness_centre",
      "distance_m": 80,
      "relevance_score": 0.96,
      "address": "..."
    }
  ],
  "ai_ranked": true,
  "pagination": {
    "total_results": 22,
    "limit": 15,
    "offset": 0,
    "has_more": true
  }
}
json
{
  "query": "gyms yoga studios fitness centers",
  "results": [
    {
      "name": "Equinox Fitness Club",
      "lat": 40.7595,
      "lon": -73.9845,
      "type": "fitness_centre",
      "distance_m": 80,
      "relevance_score": 0.96,
      "address": "..."
    }
  ],
  "ai_ranked": true,
  "pagination": {
    "total_results": 22,
    "limit": 15,
    "offset": 0,
    "has_more": true
  }
}

Examples

使用示例

Find yoga studios

查找瑜伽馆

bash
./scripts/fitness-finder.sh '{"query": "yoga studios", "lat": 30.2672, "lon": -97.7431}'
bash
./scripts/fitness-finder.sh '{"query": "yoga studios", "lat": 30.2672, "lon": -97.7431}'

Find gyms near a hotel

查找酒店附近的健身房

bash
./scripts/fitness-finder.sh '{"query": "gyms and fitness centers near Times Square", "radius": 1000}'
bash
./scripts/fitness-finder.sh '{"query": "gyms and fitness centers near Times Square", "radius": 1000}'

Find sports facilities

查找体育设施

bash
./scripts/fitness-finder.sh '{"query": "tennis courts and sports facilities", "lat": 34.0522, "lon": -118.2437, "radius": 3000}'
bash
./scripts/fitness-finder.sh '{"query": "tennis courts and sports facilities", "lat": 34.0522, "lon": -118.2437, "radius": 3000}'

Best Practices

最佳实践

  • Use specific facility types in the query for targeted results (e.g., "yoga studios", "CrossFit gyms", "swimming pools")
  • Use 1500m radius for urban areas, increase to 3000m for suburban locations
  • Combine with the
    route
    skill to calculate walking or cycling times to the gym
  • Combine with the
    real-estate
    skill when evaluating a neighborhood's fitness options
  • Combine with the
    relationship
    skill to compare distances between multiple facilities
  • For travelers, combine with
    hotel-finder
    to find lodging near fitness facilities
  • 在查询词中使用特定设施类型以获取精准结果(例如“yoga studios”、“CrossFit gyms”、“swimming pools”)
  • 城市区域建议使用1500米半径,郊区可增加至3000米
  • 结合
    route
    技能计算步行或骑行到健身房的时间
  • 评估社区健身资源时,可结合
    real-estate
    技能
  • 结合
    relationship
    技能比较多个设施之间的距离
  • 针对旅行者,可结合
    hotel-finder
    技能查找靠近健身设施的住宿