← Back to Skills Marketplace
james-southendsolutions

Context

by James-southendsolutions · GitHub ↗ · v2.0.1 · MIT-0
cross-platform ✓ Security Clean
66
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install camino-context
Description
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...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Tags
cryptocan-make-purchasesrequires-sensitive-credentials
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install camino-context
  3. After installation, invoke the skill by name or use /camino-context
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.1
Metadata
Slug camino-context
Version 2.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 66 downloads so far.

How do I install Context?

Run "/install camino-context" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Context free?

Yes, Context is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Context support?

Context is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Context?

It is built and maintained by James-southendsolutions (@james-southendsolutions); the current version is v2.0.1.

💬 Comments