openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > RealEstate

Real estate transaction support with affordability analysis, property evaluation, and offer strategy. Use when user mentions buying a home, selling property,...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v3.0.0

统计:⭐ 0 · 247 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:agistack/realestate

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill's included code and runtime behavior are mostly coherent with a local real-estate helper, but the SKILL.md claims many additional scripts and reference files that are not present and a few promises (e.g., 'NEVER provide investment advice') cannot be enforced — this mismatch and incomplete packaging warrant caution.

目的

The name/description match the two included scripts: affordability calculation and property evaluation. However, SKILL.md advertises many other scripts (build_offer.py, prep_inspection.py, review_lease.py, track_transaction.py, analyze_market.py, plus multiple reference docs) that are not included in the bundle. That incomplete packaging is an incoherence: either the skill is partial/incomplete or the metadata is inaccurate.

说明范围

The runtime instructions direct the agent to run multiple scripts and to store data under memory/realestate/ (SKILL.md). The two included scripts operate locally, print output, and (evaluate_property.py) write to ~/.openclaw/workspace/memory/realestate/properties.json. The instructions reference additional workflows (file-based lease review, inspection prep, market analysis) that would require additional scripts or external data; those are mis…

安装机制

No install spec and no external downloads — instruction-only plus two small local scripts. This minimizes supply-chain risk; nothing is being fetched or executed from unknown URLs.

证书

The skill requests no environment variables, no credentials, and accesses only a single user-local path (~/.openclaw/workspace/memory/realestate). There are no surprising secret requests or network endpoints.

持久

The skill writes persistent data to the user's workspace memory directory (properties.json). always:false (not force-installed) and no elevated privileges are requested. Persisting user data to ~/.openclaw/workspace/memory/realestate is consistent with the stated 'local storage' claim, but users should be aware this creates files under their home directory that the skill will read/write.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「RealEstate」。简介:Real estate transaction support with affordability analysis, property evaluatio…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agistack/realestate/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: realestate
description: Real estate transaction support with affordability analysis, property evaluation, and offer strategy. Use when user mentions buying a home, selling property, house hunting, mortgages, inspections, or rental agreements. Calculates true affordability, evaluates properties systematically, builds offer strategies, reviews contracts, and tracks transaction milestones. NEVER provides investment advice.
---

# Real Estate

Real estate navigation system. Buy smart, sell smart.

## Critical Privacy & Safety

### Data Storage (CRITICAL)
- **All real estate data stored locally only**: `memory/realestate/`
- **No MLS access** or listing services
- **No mortgage lender connections**
- **No document submission** through this skill
- User controls all data retention and deletion

### Safety Boundaries
- ✅ Calculate true affordability including all costs
- ✅ Evaluate properties systematically
- ✅ Build evidence-based offer strategies
- ✅ Review lease agreements
- ❌ **NEVER provide investment advice**
- ❌ **NEVER guarantee** property values
- ❌ **NEVER replace** licensed real estate agents
- ❌ **NEVER replace** real estate attorneys

### Important Note
Real estate transactions are legally complex and high-stakes. This skill provides educational support only. Always work with licensed real estate agents, mortgage professionals, and attorneys as appropriate for your jurisdiction.

### Data Structure
Real estate data stored locally:
- `memory/realestate/affordability.json` - Affordability calculations
- `memory/realestate/properties.json` - Property evaluations
- `memory/realestate/offers.json` - Offer strategies and history
- `memory/realestate/inspections.json` - Inspection findings
- `memory/realestate/contracts.json` - Contract review notes
- `memory/realestate/transactions.json` - Transaction tracking

## Core Workflows

### Calculate Affordability
```
User: "What can I actually afford?"
→ Use scripts/calculate_affordability.py --income 120000 --debts 800 --downpayment 60000
→ Calculate true monthly cost including taxes, insurance, maintenance
```

### Evaluate Property
```
User: "Evaluate this house at 123 Main St"
→ Use scripts/evaluate_property.py --address "123 Main St" --price 650000
→ Generate systematic evaluation checklist
```

### Build Offer Strategy
```
User: "Help me make an offer on the house I saw"
→ Use scripts/build_offer.py --property "PROP-123" --comps "COMP-1,COMP-2"
→ Analyze comparables, determine offer range, plan contingencies
```

### Prepare for Inspection
```
User: "What should I look for during inspection?"
→ Use scripts/prep_inspection.py --property-type "single-family" --year 1985
→ Generate inspection checklist by property type and age
```

### Review Lease
```
User: "Review this lease agreement"
→ Use scripts/review_lease.py --file "lease.pdf"
→ Identify unusual clauses, flag potential issues
```

## Module Reference
- **Affordability Analysis**: See [references/affordability.md](references/affordability.md)
- **Property Evaluation**: See [references/evaluation.md](references/evaluation.md)
- **Offer Strategy**: See [references/offers.md](references/offers.md)
- **Inspection Guide**: See [references/inspection.md](references/inspection.md)
- **Selling Strategy**: See [references/selling.md](references/selling.md)
- **Lease Review**: See [references/leases.md](references/leases.md)
- **Closing Process**: See [references/closing.md](references/closing.md)

## Scripts Reference
| Script | Purpose |
|--------|---------|
| `calculate_affordability.py` | Calculate true affordability |
| `evaluate_property.py` | Systematic property evaluation |
| `build_offer.py` | Build offer strategy |
| `prep_inspection.py` | Prepare for inspection |
| `review_lease.py` | Review lease agreements |
| `track_transaction.py` | Track transaction milestones |
| `compare_properties.py` | Compare multiple properties |
| `analyze_market.py` | Analyze local market data |