← 返回 Skills 市场
james-southendsolutions

Real Estate Intelligence

作者 James-southendsolutions · GitHub ↗ · v0.2.0
cross-platform ✓ 安全检测通过
846
总下载
6
收藏
3
当前安装
2
版本数
在 OpenClaw 中安装
/install camino-real-estate
功能描述
Evaluate any address for home buyers and renters. Get nearby schools, transit, grocery stores, parks, restaurants, and walkability using Camino AI's location...
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install camino-real-estate
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /camino-real-estate 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug camino-real-estate
版本 0.2.0
许可证
累计安装 3
当前安装数 3
历史版本数 2
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 846 次。

如何安装 Real Estate Intelligence?

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

Real Estate Intelligence 是免费的吗?

是的,Real Estate Intelligence 完全免费(开源免费),可自由下载、安装和使用。

Real Estate Intelligence 支持哪些平台?

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

谁开发了 Real Estate Intelligence?

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

💬 留言讨论