Zillow × Airbnb Matcher

PassAudited by ClawScan on May 10, 2026.

Overview

The visible artifacts match the advertised real-estate search purpose, but installation uses local npm/shell setup and a RapidAPI key despite sparse registry metadata.

This looks reasonable for a Zillow/Airbnb research helper. Before installing, be comfortable with running the npm-based installer, use a limited RapidAPI key, keep the local .env private, and independently verify any investment conclusions before acting on them.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user relying only on registry metadata might miss that setup runs local code, installs npm packages, and uses an API credential.

Why it was flagged

The registry-level metadata does not fully expose the source provenance, shell install step, or RapidAPI key requirement that the included skill files describe.

Skill content
Source: unknown; Homepage: none; Install specifications: No install spec — this is an instruction-only skill; Required env vars: none
Recommendation

Review the included SKILL.md, installer, package files, and owner/source before installing; verify the expected version and setup requirements.

What this means

Installing the skill can run the included setup script and third-party npm dependency installation.

Why it was flagged

The installer executes local shell/Node commands and installs npm dependencies. This is normal for this Node-based skill, but it is still code execution on the user's machine.

Skill content
npm install --silent 2>&1 | tail -5
...
node "$SKILL_DIR/scripts/search.js" --demo
Recommendation

Run the installer only from a trusted copy of the skill, review package.json/package-lock.json, and use demo mode first if unsure.

What this means

The key can consume the user's RapidAPI quota and should be treated as a credential.

Why it was flagged

The skill sends the user-provided RapidAPI key to the declared RapidAPI Airbnb endpoint to fetch listing data, which is expected for the advertised integration.

Skill content
'X-RapidAPI-Key': RAPIDAPI_KEY,
'X-RapidAPI-Host': 'airbnb13.p.rapidapi.com'
Recommendation

Use a RapidAPI key limited to the needed APIs, keep the .env file private, monitor usage, and rotate the key if it is exposed.