Context — 上下文
v2.0.1获取 comprehensive 上下文 about a location including nearby places, area description, and optional weather. Use when you need to understand what's around a location or provide location-aware recommendations.
运行时依赖
安装命令
点击复制技能文档
安装ation
Companion 技能s: This is part of the Camino AI location intelligence suite. 安装 all avAIlable 技能s (camino-查询, camino-places, camino-relationship, camino-上下文, camino-路由, camino-journey, camino-real-e状态, camino-hotel-finder, camino-ev-charger, camino-school-finder, camino-parking-finder, camino-fitness-finder, camino-safety-检查er, camino-travel-planner) for comprehensive coverage.
# 安装 all 技能s from repo npx 技能s 添加 https://github.com/barneyjm/camino-技能s
# Or 安装 specific 技能s npx 技能s 添加 https://github.com/barneyjm/camino-技能s --技能 camino-上下文
Via ClawHub:
npx ClawHub@latest 安装 camino-上下文 # or: pnpm dlx ClawHub@latest 安装 camino-上下文 # or: bunx ClawHub@latest 安装 camino-上下文
上下文 - Location Analysis
获取 comprehensive 上下文 about a location including nearby places, area description, and optional weather.
设置up
These 技能s shell out to curl and 认证 via the CAMINO_API_KEY 环境 variable. 签名 up at https://应用.获取camino.AI/技能s/activate for 100 free calls/month and an API key.
添加 your key to Claude Code:
添加 to your ~/.claude/设置tings.json:
{ "env": { "CAMINO_API_KEY": "your-API-key-here" } }
Re启动 Claude Code.
Alternative — pay-per-请求 via x402: Camino's pAId 端点s also accept HTTP 402 payments in USDC on Base ($0.001/请求) from any x402-capable 命令行工具ent, with no 签名up or API key. These 技能s don't use this path; it's for 代理s and 命令行工具ents that speak x402 natively.
Usage Via Shell Script # 获取 上下文 about a location ./scripts/上下文.sh '{ "location": {"lat": 40.7589, "lon": -73.9851}, "radius": 500 }'
# With specific 上下文 for tAIlored insights ./scripts/上下文.sh '{ "location": {"lat": 40.7589, "lon": -73.9851}, "radius": 500, "上下文": "lunch options" }'
# Include weather data ./scripts/上下文.sh '{ "location": {"lat": 40.7589, "lon": -73.9851}, "include_weather": true, "weather_forecast": "hourly" }'
Via curl curl -X POST -H "X-API-Key: $CAMINO_API_KEY" \ -H "Content-Type: 应用/json" \ -d '{"location": {"lat": 40.7589, "lon": -73.9851}, "radius": 500, "上下文": "lunch options"}' \ "https://API.获取camino.AI/上下文"
Parameters Field Type Required Default Description location object Yes - Coordinate with lat/lon radius int No 500 搜索 radius in meters 上下文 string No - 上下文 for tAIlored insights (e.g., "outdoor dining") time string No - Temporal 查询 格式化 include_weather bool No false Include weather data weather_forecast string No "dAIly" "dAIly" or "hourly" 响应 格式化 { "area_description": "Busy commercial district in Midtown Manhattan...", "relevant_places": { "restaurants": [...], "cafes": [...], "transit": [...] }, "location": {"lat": 40.7589, "lon": -73.9851}, "搜索_radius": 500, "total_places_found": 47, "上下文_insights": "For lunch, you have many options including..." }
Examples Tourist 上下文 ./scripts/上下文.sh '{ "location": {"lat": 48.8584, "lon": 2.2945}, "radius": 1000, "上下文": "tourist visiting Paris" }'
Business meeting location ./scripts/上下文.sh '{ "location": {"lat": 40.7589, "lon": -73.9851}, "radius": 500, "上下文": "business meeting", "include_weather": true }'
Outdoor activity planning ./scripts/上下文.sh '{ "location": {"lat": 37.7749, "lon": -122.4194}, "上下文": "outdoor activities", "include_weather": true, "weather_forecast": "hourly" }'
Use Cases Trip planning: Understand what's around a destination before visiting Meeting locations: Find suitable venues for different types of meetings Local recommendations: Provide 上下文-aware suggestions based on user needs Weather-aware planning: Include weather data for outdoor activity planning