← Back to Skills Marketplace
james-southendsolutions

Real Estate Intelligence

cross-platform ✓ Security Clean
846
Downloads
6
Stars
3
Active Installs
2
Versions
Install in OpenClaw
/install camino-real-estate
Description
Evaluate any address for home buyers and renters. Get nearby schools, transit, grocery stores, parks, restaurants, and walkability using Camino AI's location...
README (SKILL.md)

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.

# 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 real-estate

Via clawhub:

npx clawhub@latest install real-estate
# or: pnpm dlx clawhub@latest install real-estate
# or: bunx clawhub@latest install real-estate

Real Estate Scout

Evaluate any address or location for home buyers and renters. Combines location context analysis with targeted amenity searches to surface nearby schools, transit, grocery stores, parks, restaurants, and walkability insights.

Setup

Instant Trial (no signup required): Get a temporary API key with 25 calls:

curl -s -X POST -H "Content-Type: application/json" \
  -d '{"email": "[email protected]"}' \
  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:

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

Restart Claude Code.

Usage

Via Shell Script

# Evaluate an address
./scripts/real-estate.sh '{"address": "742 Evergreen Terrace, Springfield", "radius": 1000}'

# Evaluate with coordinates
./scripts/real-estate.sh '{"location": {"lat": 40.7589, "lon": -73.9851}, "radius": 1500}'

# Evaluate with smaller radius for dense urban area
./scripts/real-estate.sh '{"address": "350 Fifth Avenue, New York, NY", "radius": 500}'

Via curl

# Step 1: Geocode the address
curl -H "X-API-Key: $CAMINO_API_KEY" \
  "https://api.getcamino.ai/query?query=742+Evergreen+Terrace+Springfield&limit=1"

# Step 2: Get context with real estate focus
curl -X POST -H "X-API-Key: $CAMINO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location": {"lat": 40.7589, "lon": -73.9851}, "radius": 1000, "context": "real estate evaluation: schools, transit, grocery, parks, restaurants, walkability"}' \
  "https://api.getcamino.ai/context"

Parameters

Parameter Type Required Default Description
address string No* - Street address to evaluate (geocoded automatically)
location object No* - Coordinate with lat/lon to evaluate
radius int No 1000 Search radius in meters around the location

*Either address or location is required.

Response Format

{
  "area_description": "Residential neighborhood in Midtown Manhattan with excellent transit access...",
  "relevant_places": {
    "schools": [...],
    "transit": [...],
    "grocery": [...],
    "parks": [...],
    "restaurants": [...]
  },
  "location": {"lat": 40.7589, "lon": -73.9851},
  "search_radius": 1000,
  "total_places_found": 63,
  "context_insights": "This area offers strong walkability with multiple grocery options within 500m..."
}

Examples

Evaluate a suburban address

./scripts/real-estate.sh '{"address": "123 Oak Street, Palo Alto, CA", "radius": 1500}'

Evaluate an urban apartment

./scripts/real-estate.sh '{"location": {"lat": 40.7484, "lon": -73.9857}, "radius": 800}'

Evaluate a neighborhood by coordinates

./scripts/real-estate.sh '{"location": {"lat": 37.7749, "lon": -122.4194}, "radius": 2000}'

Best Practices

  • Use address for street addresses; the script will geocode them automatically
  • Use location with lat/lon when you already have coordinates
  • Start with a 1000m radius for suburban areas, 500m for dense urban areas
  • Combine with the relationship skill to calculate commute distances to workplaces
  • Combine with the route skill to estimate travel times to key destinations
  • Use the school-finder skill for more detailed school searches
Usage Guidance
This skill appears coherent and limited to calling Camino's public APIs. Before installing: 1) Confirm the GitHub repo (https://github.com/barneyjm/camino-skills) is trustworthy and review any code there; 2) Prefer using a trial or limited-scope API key first and monitor usage; 3) Be cautious when storing the API key in ~/.claude/settings.json—ensure that file is protected and you understand where your agent stores secrets; 4) If you need stricter isolation, run the provided shell script locally and inspect it (it only calls api.getcamino.ai) rather than installing unreviewed packages. If you expect the skill to do anything beyond geocoding and context queries, do not install it until reviewed further.
Capability Analysis
Type: OpenClaw Skill Name: camino-real-estate Version: 0.2.0 The skill bundle is benign. The `SKILL.md` provides clear documentation and installation instructions without any prompt injection attempts against an AI agent. The `scripts/real-estate.sh` script correctly uses `curl` and `jq` to interact with the `api.getcamino.ai` endpoint, requiring a `CAMINO_API_KEY`. Input is properly sanitized using `jq` for URL encoding and JSON body construction, mitigating shell injection risks. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or obfuscation. All actions align with the stated purpose of evaluating real estate locations.
Capability Assessment
Purpose & Capability
Name/description, required environment variable (CAMINO_API_KEY), and referenced endpoints (api.getcamino.ai) align with a location-intelligence/real-estate evaluator. Declared binaries (curl, jq) are appropriate for the included shell script.
Instruction Scope
SKILL.md and scripts instruct only: accept JSON input, optionally geocode an address, call Camino's /query and /context endpoints, and output JSON. They do not instruct reading unrelated local files or contacting unexpected endpoints. The README suggests storing the API key in ~/.claude/settings.json (user action) which is expected for convenience but is a local secret storage choice to be considered by the user.
Install Mechanism
The registry has no automated install spec (instruction-only skill with an included script). SKILL.md suggests using npx to fetch a third-party GitHub repo or clawhub; fetching code from an external repo is common but users should verify the repo's authenticity before running install commands.
Credentials
Only one credential (CAMINO_API_KEY) is required and it's the expected API key for the Camino API used by the script. No other secrets or unrelated environment variables are requested.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system-wide settings. It runs as an on-demand script and only uses the declared API key and network calls to Camino's API.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install camino-real-estate
  3. After installation, invoke the skill by name or use /camino-real-estate
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.2.0
- Added curl and jq as required binaries in the skill's metadata. - No functional or usage changes; documentation now explicitly lists binary dependencies.
v0.1.0
First public release of the Camino Real Estate skill. - Evaluate any address for home buyers and renters using Camino AI’s location intelligence. - Provides data on nearby schools, transit, grocery stores, parks, restaurants, and walkability. - Shell/cURL usage examples and setup instructions for API key included. - Customizable search radius and support for both address and lat/lon input. - Detailed response format documented for easy integration.
Metadata
Slug camino-real-estate
Version 0.2.0
License
All-time Installs 3
Active Installs 3
Total Versions 2
Frequently Asked Questions

What is Real Estate Intelligence?

Evaluate any address for home buyers and renters. Get nearby schools, transit, grocery stores, parks, restaurants, and walkability using Camino AI's location... It is an AI Agent Skill for Claude Code / OpenClaw, with 846 downloads so far.

How do I install Real Estate Intelligence?

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

Is Real Estate Intelligence free?

Yes, Real Estate Intelligence is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Real Estate Intelligence support?

Real Estate Intelligence is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Real Estate Intelligence?

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

💬 Comments