Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

housing-scout-pro住房侦察专业版

Agent Skill

housing-scout-pro 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,136

周安装

663

GitHub Stars

公开资料未说明

下载量

5,544
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:housing-scout-pro(住房侦察专业版)
来源仓库:https://github.com/junyij/housing-scout-pro
安装命令:
openclaw skills install housing-scout-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install housing-scout-pro

简介

housing-scout-pro 用于查找和监控住房列表,支持过滤与订阅式警报。

  • 适用于购房或租房过程中的房源筛选与价格跟踪需求。
  • 支持多区域管理与实用过滤器组合使用。
  • 安装命令为 openclaw skills install housing-scout-pro,适用于 OpenClaw 宿主。
  • 使用前需确认目标城市覆盖范围与数据更新频率。

SKILL.md

name
housing-scout
description
Find and monitor housing listings (buy/rent), apply practical filters, and manage subscription-style alerts in any supported region. Use when the user asks to search homes, compare candidates, run comps, or set listing notifications.
user-invocable
true
command-dispatch
tool
command-tool
exec

Housing Scout

This skill is self-contained for ClawHub publish. All commands run against the bundled runtime under ./scripts/housing_scout/.

Quickstart (recommended)

  • Create a profile and run first search immediately:

- node ./scripts/housing_scout/housing_scout.mjs quickstart --name "great nyc area" --city "New York" --state "NY" --beds-min 3 --budget-max 2000000 --run true

Direct search (no profile required)

  • Buy:

- node ./scripts/housing_scout/housing_scout.mjs search --intent buy --city "Seattle" --state "WA" --beds-min 3 --budget-max 1200000

  • Rent:

- node ./scripts/housing_scout/housing_scout.mjs search --intent rent --city "Seattle" --state "WA" --beds-min 2 --budget-max 4500

Profile workflow

  • Create:

- node ./scripts/housing_scout/housing_scout.mjs create_profile --name "great new york city area" --city "New York" --state "NY" --country "US" --beds-min 3 --budget-max 2000000

  • List:

- node ./scripts/housing_scout/housing_scout.mjs list_profiles

  • Show:

- node ./scripts/housing_scout/housing_scout.mjs show_profile --name "great new york city area"

  • Delete:

- node ./scripts/housing_scout/housing_scout.mjs delete_profile --name "great new york city area"

  • Use profile:

- node ./scripts/housing_scout/housing_scout.mjs search --profile "great new york city area" --intent buy - node ./scripts/housing_scout/housing_scout.mjs search --profile "great new york city area" --intent rent

Provider cache operations

  • Status:

- node ./scripts/housing_scout/housing_scout.mjs provider_cache_status --provider zillow --intent buy

  • Refresh:

- node ./scripts/housing_scout/housing_scout.mjs refresh_provider_cache --provider zillow --intent buy --from ./tmp/zillow_buy.json

Other useful commands

  • Lease flow:

- node ./scripts/housing_scout/housing_scout.mjs lease --profile "great new york city area"

  • Comps from Redfin URL:

- node ./scripts/housing_scout/housing_scout.mjs comps --query south-bay-buy-default --redfin-url "https://www.redfin.com/..."

  • Subscriptions:

- node ./scripts/housing_scout/housing_scout.mjs subscribe --query south-bay-buy-default --channel telegram --to YOUR_CHAT_ID - node ./scripts/housing_scout/housing_scout.mjs unsubscribe --query south-bay-buy-default - node ./scripts/housing_scout/housing_scout.mjs unsubscribe --subscription-id sub-... - node ./scripts/housing_scout/housing_scout.mjs list_subscriptions - node ./scripts/housing_scout/housing_scout.mjs run_subscriptions

Optional preset example

  • The built-in South Bay preset is only for demo/smoke test:

- node ./scripts/housing_scout/housing_scout.mjs search --query south-bay-buy-default

Notes

  • Multi-provider selector: --providers redfin,zillow,realtor.
  • Provider status:

- Redfin: live feed/caches - Zillow: live-cache adapter (live_zillow_buy.json / live_zillow_rent.json) - Realtor: live-cache adapter (live_realtor_buy.json / live_realtor_rent.json)

  • refresh_provider_cache input shape:

- { "listings": [ { "address"|"street/city/state/zip", "url", "price"|"rent", "beds", "baths", "sqft", "homeType" } ] }

Security + data egress notes (important)

  • Redfin fetch path uses https://r.jina.ai/http/... in this runtime. This is a third-party fetch proxy.
  • Any URL supplied via Redfin/city endpoint flows may be requested through that proxy and fetched content is returned into the tool pipeline.
  • Never pass private/internal URLs (for example: localhost, 127.0.0.1, 10.x.x.x, 172.16-31.x.x, 192.168.x.x, link-local, intranet hostnames, cloud metadata endpoints).
  • Only use public real-estate pages you are comfortable sharing with an external fetch service.
  • Subscriptions/notifications can send data outside the runtime (channel + to). Verify recipients before enabling.

Notifications setup (Telegram)

  • This skill does not store bot tokens in skill files.
  • Configure Telegram credentials in OpenClaw Gateway/channel config or environment variables.
  • subscribe stores destination metadata (channel, to) in local skill state.
  • run_subscriptions emits NOTIFY_PAYLOAD JSON; delivery is performed by assistant/gateway messaging.

Local persistence + cleanup

  • The skill writes state under ./scripts/housing_scout/data/ (profiles, queries, subscriptions, snapshots, caches).
  • Keep this directory scoped to the skill workspace; do not point commands at unrelated sensitive files.
  • Remove active outbound targets when no longer needed:

- node ./scripts/housing_scout/housing_scout.mjs unsubscribe --query <queryId> - node ./scripts/housing_scout/housing_scout.mjs unsubscribe --subscription-id <subId>

  • Remove unused profiles:

- node ./scripts/housing_scout/housing_scout.mjs delete_profile --name "<profile>"

  • If you need a hard reset, manually clear JSON state files under ./scripts/housing_scout/data/.

Privacy/safety checklist

  • Replace YOUR_CHAT_ID with your own approved target.
  • Do not commit personal chat IDs, tokens, or private channels.
  • Keep credentials outside skill files (env vars or gateway config).
  • Review and prune subscriptions/caches periodically.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.16%
按下载量换算3,890

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills