safety-checker

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 safety-checker

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

**通过clawhub安装:**
```bash
npx clawhub@latest install safety-checker

or: pnpm dlx clawhub@latest install safety-checker

或:pnpm dlx clawhub@latest install safety-checker

or: bunx clawhub@latest install safety-checker

或:bunx clawhub@latest install safety-checker

undefined
undefined

Late Night Safety

深夜安全保障

Find 24-hour businesses, well-lit public areas, transit stations, police stations, and hospitals near any location. Provides safety-focused context awareness for late night situations.
查找任意位置附近的24小时营业场所、光线充足的公共区域、交通枢纽、警察局和医院。为深夜场景提供以安全为核心的环境感知能力。

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 Script

bash
undefined
bash
undefined

Check safety resources near a location

检查指定位置附近的安全资源

./scripts/safety-checker.sh '{"location": {"lat": 40.7506, "lon": -73.9935}, "radius": 500}'
./scripts/safety-checker.sh '{"location": {"lat": 40.7506, "lon": -73.9935}, "radius": 500}'

Check with larger radius

扩大搜索半径检查

./scripts/safety-checker.sh '{"location": {"lat": 37.7749, "lon": -122.4194}, "radius": 800}'
undefined
./scripts/safety-checker.sh '{"location": {"lat": 37.7749, "lon": -122.4194}, "radius": 800}'
undefined

Via curl

通过curl

bash
curl -X POST -H "X-API-Key: $CAMINO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location": {"lat": 40.7506, "lon": -73.9935}, "radius": 500, "context": "late night safety: 24-hour businesses, transit, police, hospitals"}' \
  "https://api.getcamino.ai/context"
bash
curl -X POST -H "X-API-Key: $CAMINO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location": {"lat": 40.7506, "lon": -73.9935}, "radius": 500, "context": "late night safety: 24-hour businesses, transit, police, hospitals"}' \
  "https://api.getcamino.ai/context"

Parameters

参数说明

ParameterTypeRequiredDefaultDescription
locationobjectYes-Coordinate with lat/lon
radiusintNo500Search radius in meters
参数类型是否必填默认值描述
location对象-包含纬度(lat)和经度(lon)的坐标信息
radius整数500搜索半径,单位为米

Response Format

响应格式

json
{
  "area_description": "Busy commercial area in Midtown Manhattan with 24-hour businesses...",
  "relevant_places": {
    "hospitals": [...],
    "police": [...],
    "transit": [...],
    "24_hour_businesses": [...],
    "pharmacies": [...]
  },
  "location": {"lat": 40.7506, "lon": -73.9935},
  "search_radius": 500,
  "total_places_found": 34,
  "context_insights": "This area has good late-night safety resources including..."
}
json
{
  "area_description": "Busy commercial area in Midtown Manhattan with 24-hour businesses...",
  "relevant_places": {
    "hospitals": [...],
    "police": [...],
    "transit": [...],
    "24_hour_businesses": [...],
    "pharmacies": [...]
  },
  "location": {"lat": 40.7506, "lon": -73.9935},
  "search_radius": 500,
  "total_places_found": 34,
  "context_insights": "This area has good late-night safety resources including..."
}

Examples

示例

Check safety near a hotel at night

深夜检查酒店附近的安全情况

bash
./scripts/safety-checker.sh '{"location": {"lat": 40.7506, "lon": -73.9935}, "radius": 500}'
bash
./scripts/safety-checker.sh '{"location": {"lat": 40.7506, "lon": -73.9935}, "radius": 500}'

Check safety in an unfamiliar neighborhood

检查陌生街区的安全情况

bash
./scripts/safety-checker.sh '{"location": {"lat": 34.0407, "lon": -118.2468}, "radius": 600}'
bash
./scripts/safety-checker.sh '{"location": {"lat": 34.0407, "lon": -118.2468}, "radius": 600}'

Check safety near a transit stop

检查交通枢纽附近的安全情况

bash
./scripts/safety-checker.sh '{"location": {"lat": 41.8827, "lon": -87.6233}, "radius": 400}'
bash
./scripts/safety-checker.sh '{"location": {"lat": 41.8827, "lon": -87.6233}, "radius": 400}'

Use Cases

使用场景

  • Late night arrivals: Check what safety resources are near your hotel or Airbnb
  • Walking at night: Identify well-lit areas, open businesses, and emergency services along your path
  • Travel safety: Assess unfamiliar neighborhoods before visiting at night
  • Emergency awareness: Know where the nearest hospital and police station are located
  • Transit safety: Check what resources are near transit stops you'll be using late at night
  • 深夜抵达:检查酒店或Airbnb附近的安全资源
  • 深夜步行:识别沿途光线充足的区域、营业场所和应急服务点
  • 出行安全:深夜前往陌生街区前评估安全状况
  • 应急意识:了解最近的医院和警察局位置
  • 交通枢纽安全:检查深夜使用的交通枢纽附近的资源