技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v2.1.0
统计:⭐ 0 · 193 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:agenticio/mortgage
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's description promises multiple mortgage features, but the package only includes a single affordability script and several referenced scripts/docs are missing, which is an incoherence that warrants caution before installing.
目的
The SKILL.md describes many capabilities (compare_types.py, prep_documents.py, track_application.py, compare_lenders.py, references/*.md, etc.) but the bundle contains only scripts/calculate_affordability.py and no reference documents. That mismatch means the declared capabilities are not actually present in the package.
说明范围
Runtime instructions reference multiple scripts and local storage under memory/mortgage/; only calculate_affordability.py exists. The provided script prints estimates and does not read or write the declared JSON files, so the SKILL.md and the actual runtime behavior diverge. The instructions also assume agent use of several non-existent scripts, which could cause the agent to attempt fetching or executing missing components.
安装机制
No install spec (instruction-only + one small script). Nothing is downloaded or installed automatically and there are no external URLs or archives in the package.
证书
No environment variables or credentials are requested, which is appropriate. The script will create and use a local directory (~/.openclaw/workspace/memory/mortgage) for storage if other code follows the README — users should note that the skill will create files under the user's home directory if additional scripts are added.
持久
always is false and the skill does not request elevated privileges. Its only filesystem action in included code is to create a directory under the user's home; that is normal for a local-agent utility.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Mortgage」。简介:Mortgage process guidance with affordability calculations and application track…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agenticio/mortgage/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: mortgage
description: Mortgage process guidance with affordability calculations and application tracking. Use when user mentions buying a home, mortgage rates, affordability, down payment, mortgage application, or lender comparison. Calculates affordability, explains mortgage types, prepares application documents, and tracks approval milestones. NEVER provides mortgage advice or recommends specific lenders.
---
# Mortgage
Mortgage navigation system. From dreaming to closing.
## Critical Privacy & Safety
### Data Storage (CRITICAL)
- **All mortgage data stored locally only**: `memory/mortgage/`
- **No external APIs** for mortgage data
- **No connection** to lender systems
- **No rate locks** or application submissions
- User controls all data retention and deletion
### Safety Boundaries (NON-NEGOTIABLE)
- ✅ Calculate affordability estimates
- ✅ Explain mortgage types and terms
- ✅ Prepare application document checklists
- ✅ Track application milestones
- ❌ **NEVER provide mortgage advice** or product recommendations
- ❌ **NEVER recommend specific lenders**
- ❌ **NEVER guarantee** approval or rates
- ❌ **NEVER replace** licensed mortgage brokers
### Legal Disclaimer
Mortgage decisions involve significant financial commitment and depend on individual circumstances, credit history, and market conditions. This skill provides educational support and organization only. Always work with a licensed mortgage broker or financial advisor.
## Quick Start
### Data Storage Setup
Mortgage data stored in your local workspace:
- `memory/mortgage/affordability.json` - Affordability calculations
- `memory/mortgage/scenarios.json` - Comparison scenarios
- `memory/mortgage/documents.json` - Application documents
- `memory/mortgage/applications.json` - Application tracking
- `memory/mortgage/lenders.json` - Lender comparison notes
Use provided scripts in `scripts/` for all data operations.
## Core Workflows
### Calculate Affordability
```
User: "How much house can I afford on $100k salary?"
→ Use scripts/calculate_affordability.py --income 100000 --debts 500
→ Estimate affordable price range and monthly payment
```
### Compare Mortgage Types
```
User: "Should I get a fixed or ARM mortgage?"
→ Use scripts/compare_types.py --scenario "first-time buyer"
→ Explain options with pros/cons for situation
```
### Prepare Documents
```
User: "What documents do I need for mortgage application?"
→ Use scripts/prep_documents.py --type "conventional" --employment "w2"
→ Generate complete document checklist
```
### Track Application
```
User: "Track my mortgage application"
→ Use scripts/track_application.py --application-id "APP-123"
→ Show current stage and next steps
```
### Compare Lenders
```
User: "Compare these two lender offers"
→ Use scripts/compare_lenders.py --lender1 "Bank A" --lender2 "Credit Union B"
→ Side-by-side comparison of rates, fees, terms
```
## Module Reference
For detailed implementation:
- **Affordability**: See [references/affordability.md](references/affordability.md)
- **Mortgage Types**: See [references/mortgage-types.md](references/mortgage-types.md)
- **Document Preparation**: See [references/documents.md](references/documents.md)
- **Lender Comparison**: See [references/lender-comparison.md](references/lender-comparison.md)
- **Application Tracking**: See [references/application-tracking.md](references/application-tracking.md)
- **Closing Process**: See [references/closing.md](references/closing.md)
## Scripts Reference
| Script | Purpose |
|--------|---------|
| `calculate_affordability.py` | Calculate home affordability |
| `compare_types.py` | Compare mortgage types |
| `prep_documents.py` | Generate document checklist |
| `track_application.py` | Track application status |
| `compare_lenders.py` | Compare lender offers |
| `calculate_payment.py` | Calculate monthly payment |
| `estimate_closing_costs.py` | Estimate closing costs |
| `set_reminder.py` | Set rate lock reminders |
## Disclaimer
This skill provides educational support only. Mortgage decisions depend on individual circumstances, credit history, and market conditions. Always work with a licensed mortgage broker or financial advisor.