← 返回 Skills 市场
james-southendsolutions

Context

作者 James-southendsolutions · GitHub ↗ · v2.0.1 · MIT-0
cross-platform ✓ 安全检测通过
66
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install camino-context
功能描述
Get comprehensive context about a location including nearby places, area description, and optional weather. Use when you need to understand what's around a l...
使用说明 (SKILL.md)

Installation

Companion Skills: This is part of the Camino AI location intelligence suite. Install all available skills (camino-query, camino-places, camino-relationship, camino-context, camino-route, camino-journey, camino-real-estate, camino-hotel-finder, camino-ev-charger, camino-school-finder, camino-parking-finder, camino-fitness-finder, camino-safety-checker, camino-travel-planner) for comprehensive coverage.

# Install all skills from repo
npx skills add https://github.com/barneyjm/camino-skills

# Or install specific skills
npx skills add https://github.com/barneyjm/camino-skills --skill camino-context

Via clawhub:

npx clawhub@latest install camino-context
# or: pnpm dlx clawhub@latest install camino-context
# or: bunx clawhub@latest install camino-context

Context - Location Analysis

Get comprehensive context about a location including nearby places, area description, and optional weather.

Setup

These skills shell out to curl and authenticate via the CAMINO_API_KEY environment variable. Sign up at https://app.getcamino.ai/skills/activate for 100 free calls/month and an API key.

Add your key to Claude Code:

Add to your ~/.claude/settings.json:

{
  "env": {
    "CAMINO_API_KEY": "your-api-key-here"
  }
}

Restart Claude Code.

Alternative — pay-per-request via x402: Camino's paid endpoints also accept HTTP 402 payments in USDC on Base ($0.001/request) from any x402-capable client, with no signup or API key. These skills don't use this path; it's for agents and clients that speak x402 natively.

Usage

Via Shell Script

# Get context about a location
./scripts/context.sh '{
  "location": {"lat": 40.7589, "lon": -73.9851},
  "radius": 500
}'

# With specific context for tailored insights
./scripts/context.sh '{
  "location": {"lat": 40.7589, "lon": -73.9851},
  "radius": 500,
  "context": "lunch options"
}'

# Include weather data
./scripts/context.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: application/json" \
  -d '{"location": {"lat": 40.7589, "lon": -73.9851}, "radius": 500, "context": "lunch options"}' \
  "https://api.getcamino.ai/context"

Parameters

Field Type Required Default Description
location object Yes - Coordinate with lat/lon
radius int No 500 Search radius in meters
context string No - Context for tailored insights (e.g., "outdoor dining")
time string No - Temporal query format
include_weather bool No false Include weather data
weather_forecast string No "daily" "daily" or "hourly"

Response Format

{
  "area_description": "Busy commercial district in Midtown Manhattan...",
  "relevant_places": {
    "restaurants": [...],
    "cafes": [...],
    "transit": [...]
  },
  "location": {"lat": 40.7589, "lon": -73.9851},
  "search_radius": 500,
  "total_places_found": 47,
  "context_insights": "For lunch, you have many options including..."
}

Examples

Tourist context

./scripts/context.sh '{
  "location": {"lat": 48.8584, "lon": 2.2945},
  "radius": 1000,
  "context": "tourist visiting Paris"
}'

Business meeting location

./scripts/context.sh '{
  "location": {"lat": 40.7589, "lon": -73.9851},
  "radius": 500,
  "context": "business meeting",
  "include_weather": true
}'

Outdoor activity planning

./scripts/context.sh '{
  "location": {"lat": 37.7749, "lon": -122.4194},
  "context": "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 context-aware suggestions based on user needs
  • Weather-aware planning: Include weather data for outdoor activity planning
安全使用建议
This skill appears safe for its stated purpose. Before installing, be comfortable sharing queried locations with Camino, protect the CAMINO_API_KEY you add to Claude Code, and install only this specific skill unless you have separately reviewed the companion Camino skills.
功能分析
Type: OpenClaw Skill Name: camino-context Version: 2.0.1 The camino-context skill provides location-based intelligence by querying the Camino AI API. The implementation consists of a straightforward bash script (scripts/context.sh) that uses curl and jq to send user-provided coordinates to https://api.getcamino.ai/context. It includes basic JSON validation to prevent common command-line injection risks and follows standard practices for API key management and documentation.
能力标签
cryptocan-make-purchasesrequires-sensitive-credentials
能力评估
Purpose & Capability
The skill’s stated purpose, location analysis with optional weather, matches the included script, which posts user-supplied location JSON to Camino’s context API. The user should understand that precise locations and query context are shared with that provider.
Instruction Scope
The instructions are user-directed examples and parameter documentation; they do not contain hidden goal changes, forced tool use, or unsafe autonomous workflows.
Install Mechanism
The included code is simple, but the documentation also offers user-directed installation from an unpinned GitHub repo and suggests installing a full companion skill suite, which broadens the installed surface if followed.
Credentials
Requiring curl, jq, network access, and CAMINO_API_KEY is proportionate for a provider-backed location API skill, but the credential and location data are sensitive.
Persistence & Privilege
There is no background persistence or privilege escalation, but setup suggests storing CAMINO_API_KEY in Claude Code settings so future sessions can use it.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install camino-context
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /camino-context 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.1
元数据
Slug camino-context
版本 2.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Context 是什么?

Get comprehensive context about a location including nearby places, area description, and optional weather. Use when you need to understand what's around a l... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 66 次。

如何安装 Context?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install camino-context」即可一键安装,无需额外配置。

Context 是免费的吗?

是的,Context 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Context 支持哪些平台?

Context 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Context?

由 James-southendsolutions(@james-southendsolutions)开发并维护,当前版本 v2.0.1。

💬 留言讨论