一键导入
lien-discovery-skill
Discover and analyze lien positions from AcclaimWeb and RealTDM to detect HOA foreclosures and senior mortgage survival
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Discover and analyze lien positions from AcclaimWeb and RealTDM to detect HOA foreclosures and senior mortgage survival
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Autonomous browser control via Chrome DevTools Protocol and Accessibility Tree for full screen control like GPT Operator. Use when user requests "control my screen", "verify Lovable", "test scrapers", "debug DOM", "autonomous testing", or any browser automation task. NO screenshots - uses CDP + semantic queries for 10x faster, 100% reliable element targeting.
Calculate maximum bid using BidDeed formula and bid/judgment ratios to determine BID/REVIEW/SKIP decisions
Extract property data from Brevard County Property Appraiser GIS API including photos, valuations, and parcel details
Execute 12-stage Everest Ascent pipeline for foreclosure auction analysis from discovery to disposition
Find qualified leads with decision makers and outreach strategies
Implement Stripe payments, webhooks, and subscriptions correctly first time
| name | lien-discovery-skill |
| description | Discover and analyze lien positions from AcclaimWeb and RealTDM to detect HOA foreclosures and senior mortgage survival |
Analyzes recorded liens to determine priority positions and detect critical scenarios like HOA foreclosures.
First Position Lien: Foreclosure wipes out junior liens HOA Foreclosure: Senior mortgage SURVIVES (buyer inherits it)
This is THE most critical determination in auction analysis.
\$([0-9,]+\.\d{2})(\d{1,2}/\d{1,2}/\d{4})Book (\d+) Page (\d+)Instrument# (\d+)Priority Order:
Exception: HOA foreclosure on assessment lien
Red Flags:
Action:
if (plaintiff_is_hoa AND senior_mortgage_exists):
decision = "DO_NOT_BID"
reason = "HOA foreclosure - senior mortgage survives"
{
"lien_analysis": {
"total_liens": 3,
"liens": [
{
"position": "1st",
"type": "mortgage",
"amount": 250000,
"holder": "Wells Fargo Bank",
"recording_date": "2018-03-15",
"instrument": "2018012345",
"status": "active"
},
{
"position": "2nd",
"type": "hoa_assessment",
"amount": 15000,
"holder": "Satellite Beach HOA",
"recording_date": "2023-06-01",
"status": "foreclosing"
},
{
"position": "tax",
"type": "tax_certificate",
"amount": 8500,
"holder": "Brevard County Tax Collector",
"status": "active"
}
],
"foreclosure_type": "hoa",
"senior_mortgage_survives": true,
"buyer_inherits": [
"Wells Fargo 1st mortgage ($250K)",
"Tax certificate ($8.5K)"
],
"recommendation": "DO_NOT_BID"
}
}
Search by case number: 2024-CA-001234
→ Returns: Lis pendens, mortgages, liens
→ Parse each PDF document
→ Extract amounts, dates, parties
Get parcel ID from BCPAO
Search AcclaimWeb by parcel
→ Find ALL recorded instruments on property
→ Build complete lien chain
Search tax certificates by parcel
→ Any outstanding certificates?
→ Add to lien analysis
Order liens by recording date
Apply Florida priority rules
Identify which liens survive foreclosure
Calculate satisfaction amounts
Plaintiff: Wells Fargo Bank
Lien Position: 1st mortgage
Junior Liens: 2nd mortgage ($50K), HOA lien ($5K)
→ Result: Junior liens wiped out, buyer gets clean title
→ Decision: Proceed with normal analysis
Plaintiff: Palm Bay Homeowners Association
Lien Position: Assessment lien (subordinate)
Senior Liens: 1st mortgage Wells Fargo ($300K)
→ Result: Buyer inherits $300K mortgage
→ Decision: DO_NOT_BID
Plaintiff: Brevard County Tax Collector
Lien Position: Tax lien (senior to all)
Other Liens: 1st mortgage ($200K), 2nd mortgage ($50K)
→ Result: ALL liens wiped out, clean title
→ Decision: Strong opportunity
BECA Scraper V2.0 Features:
# Stage 4: Lien Priority Analysis
lien_data = lien_discovery_skill.analyze(case_number, parcel_id)
if lien_data['senior_mortgage_survives']:
decision = "DO_NOT_BID"
max_bid = 0
else:
# Proceed to Stage 5
continue_pipeline()
"Use lien-discovery-skill to analyze liens for case 2024-CA-001234"
"Search AcclaimWeb and RealTDM for property at 123 Main St Melbourne"