openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Realtor

Realtor.com — search listings, agents, and property details via API

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 147 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aiwithabidi/realtor

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally consistent for calling the Realtor RapidAPI endpoints with a single API key, but it reads an undeclared .env/workspace location which you should be aware of before installing.

目的

Name/description, CLI commands, and the single required env var (REALTOR_API_KEY) align with the script's behavior: it calls Realtor endpoints via RapidAPI (realtor16.p.rapidapi.com) using X-RapidAPI-Key.

说明范围

SKILL.md instructs running the included Python CLI and nothing else, which matches the script. However, the runtime script will attempt to read a .env file from $WORKSPACE or ~/.openclaw/workspace/.env as a fallback when REALTOR_API_KEY is not in the environment; this behavior is not declared in SKILL.md and expands the skill's file-access scope.

安装机制

No install steps (instruction-only with an included script). Nothing is downloaded or written to disk by an installer, so install risk is low.

证书

The declared required credential (REALTOR_API_KEY) is appropriate. But the script also reads the WORKSPACE env var to locate a .env file if the key is not in the environment. WORKSPACE was not declared in requires.env and reading a .env introduces a small risk if that file contains other secrets or is in an unexpected location.

持久

always is false and the skill does not persistently modify agent/system configuration. It only performs network requests at runtime and exits; no elevated privileges requested.

综合结论

This skill appears to do what it says: call Realtor endpoints via RapidAPI using your REALTOR_API_KEY. Before installing, note two things: (1) the script will fall back to reading a .env file from $WORKSPACE or ~/.openclaw/workspace/.env if the environment variable is not set — if you keep other secrets in that .env, consider moving them or ensuring the file is safe; (2) the API host used is a RapidAPI endpoint (realtor16.p.rapidapi.com), not …

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Realtor」。简介:Realtor.com — search listings, agents, and property details via API。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/realtor/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: realtor
description: "Realtor.com — search listings, agents, and property details via API"
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🏡", "requires": {"env": ["REALTOR_API_KEY"]}, "primaryEnv": "REALTOR_API_KEY", "homepage": "https://www.agxntsix.ai"}}
---

# 🏡 Realtor.com

Realtor.com — search listings, agents, and property details via API

## Requirements

| Variable | Required | Description |
|----------|----------|-------------|
| `REALTOR_API_KEY` | ✅ | RapidAPI key for Realtor API |

## Quick Start

```bash
# Search for-sale listings
python3 {{baseDir}}/scripts/realtor.py search-sale --city <value> --state_code <value> --postal_code <value> --price_min <value> --price_max <value>

# Search rentals
python3 {{baseDir}}/scripts/realtor.py search-rent --city <value> --state_code <value> --postal_code <value>

# Search recently sold
python3 {{baseDir}}/scripts/realtor.py search-sold --city <value> --state_code <value>

# Get property details
python3 {{baseDir}}/scripts/realtor.py property --property_id <value>

# Search agents
python3 {{baseDir}}/scripts/realtor.py agents --city <value> --state_code <value> --name <value>

# Get agent details
python3 {{baseDir}}/scripts/realtor.py agent-get --nrds_id <value>

# Location auto-complete
python3 {{baseDir}}/scripts/realtor.py auto-complete --input <value>
```

## All Commands

| Command | Description |
|---------|-------------|
| `search-sale` | Search for-sale listings |
| `search-rent` | Search rentals |
| `search-sold` | Search recently sold |
| `property` | Get property details |
| `agents` | Search agents |
| `agent-get` | Get agent details |
| `auto-complete` | Location auto-complete |

## Output Format

All commands output JSON by default. Add `--human` for readable formatted output.

```bash
python3 {{baseDir}}/scripts/realtor.py <command> --human
```

## Script Reference

| Script | Description |
|--------|-------------|
| `{{baseDir}}/scripts/realtor.py` | Main CLI — all commands in one tool |

## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.

📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)