Real Estate Debt Analysis

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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 could mistake synthetic estimates for current market or auction data and rely on them for real investment decisions.

Why it was flagged

SKILL.md describes collecting Anjuke and Ali auction prices for investment decision support, but the shown implementation estimates prices from hard-coded averages and random multipliers/discounts. This can make generated reports look more data-backed than they are.

Skill content
default_city_prices = { ... }; fluctuation = random.uniform(0.95, 1.05); return int(base_price * fluctuation) ... auction_price = anjuke_price * discount_rate
Recommendation

Treat outputs as rough illustrative estimates unless the skill clearly shows verified live data sources and timestamps. Manually verify Anjuke, Ali auction, legal, and valuation data before acting.

What this means

The skill may require Python packages or script execution that are not obvious from the registry metadata.

Why it was flagged

The registry says there is no install spec, while SKILL.md declares a runnable script and dependencies. The dependencies are purpose-aligned, but the install/runtime contract is under-declared.

Skill content
execution:\n  type: script\n  script_path: scripts/real_estate_analysis.py\ndependencies:\n  - requests>=2.31.0\n  - pandas>=2.2.2
Recommendation

Review the script and dependency installation path before running; install dependencies from trusted package sources only.

What this means

Property addresses, debt amounts, and document contents may be shared across skills or external services during analysis.

Why it was flagged

The skill is designed to receive parsed file contents from other skills and can integrate with external report/data/search services. This is aligned with the analysis purpose, but it creates data-boundary considerations.

Skill content
与Excel解析SKILL协作格式 ... excel_data.rows ... 与其他文件解析SKILL协作格式 ... file_data.content ... REPORT_GENERATOR_SERVICE ... DATA_PROCESSING_SERVICE ... WEB_SEARCH_SERVICE
Recommendation

Use only trusted parser and service integrations, and avoid submitting confidential debt portfolios unless you understand where the data will be processed.