RealEstate

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a benign local real-estate helper, but it stores property details locally and references several helper files that are not included.

This skill is reasonable to install if you want local real-estate planning help. Be aware that property details can be saved in local memory, and several advertised workflows are not included in the provided files, so avoid running or fetching missing helper scripts from unknown sources.

Findings (2)

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

Home-search details may remain in local OpenClaw memory after the immediate task and could be reused or seen later if the workspace is retained.

Why it was flagged

The property evaluation helper stores user-supplied property addresses and prices in a persistent local JSON file under the real-estate memory directory.

Skill content
"address": args.address, "price": args.price, ... with open(props_file, 'w') as f: json.dump(data, f, indent=2)
Recommendation

Only enter property details you are comfortable storing locally, and delete the real-estate memory files when you no longer need them.

What this means

Some advertised workflows may fail or tempt an agent/user to look for unreviewed replacement files outside the provided package.

Why it was flagged

SKILL.md documents several runnable helper scripts and reference modules, but the provided manifest includes only SKILL.md, calculate_affordability.py, and evaluate_property.py.

Skill content
`build_offer.py` | Build offer strategy ... `prep_inspection.py` ... `review_lease.py` ... `track_transaction.py`
Recommendation

Use only the included reviewed scripts unless the missing files are supplied by the skill package and can be reviewed; the publisher should include or remove missing references.