ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

housing-scout

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/junyij/housing-scout-pro
Or

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

Metadata

Author@junyij
Stars1865
Views0
Updated2026-03-03
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-junyij-housing-scout-pro": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.