/SKILL.md
# Surplus Funds Recovery Service — Skill Reference ## What This Does This is an AI-powered surplus funds recovery business built as a Python service. After a property is sold at a foreclosure auction for more than what was owed, the excess (surplus) goes into a court-held account. The former owner is entitled to that money but often doesn't know it exists. This service finds those cases, locates the claimants, generates the legal paperwork, and files the claims — charging a percentage of recov
npx skillsauth add b10fbreez/claudestack claudestackInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This is an AI-powered surplus funds recovery business built as a Python service. After a property is sold at a foreclosure auction for more than what was owed, the excess (surplus) goes into a court-held account. The former owner is entitled to that money but often doesn't know it exists. This service finds those cases, locates the claimants, generates the legal paperwork, and files the claims — charging a percentage of recovered funds.
lead -> contacted -> signed -> documents_prepared -> filed -> under_review -> approved -> funds_received -> fee_collected -> closed
Side exits: rejected, abandoned
| File | Purpose |
|------|---------|
| main.py | CLI entry point — all commands |
| backend.py | FastAPI server |
| surplus_funds/config.py | Settings from .env |
| surplus_funds/database.py | DB engine + session |
| surplus_funds/models/case.py | Case model (central entity) |
| surplus_funds/models/property.py | Property + foreclosure sale |
| surplus_funds/models/claimant.py | Claimant + contact info |
| surplus_funds/models/document.py | Generated documents |
| surplus_funds/services/research_engine.py | Lead scraping + qualification |
| surplus_funds/services/claimant_locator.py | Skip tracing + ownership chain |
| surplus_funds/services/document_generator.py | Legal document rendering |
| surplus_funds/services/ai_agent.py | Claude-powered analysis |
| surplus_funds/memory/case_memory.py | Memory layer |
| surplus_funds/api/routes.py | API endpoints |
| surplus_funds/api/schemas.py | Request/response schemas |
| outreach_templates.yaml | Claimant contact templates (mail, phone, email) |
outreach_templates.yaml contains ready-to-use templates for every stage of claimant contact:
| Template | Channel | When |
|----------|---------|------|
| initial_contact | Mail | First letter — within 48h of lead qualification |
| follow_up | Mail | 10-14 days after initial contact, no response |
| phone_script | Phone | Warm/cold call with objection handling |
| email_outreach | Email | Supplemental or preferred channel |
| agreement_cover | Mail | Sent with fee agreement packet |
| filing_confirmation | Mail | Within 48h of filing claim |
| recovery_notification | Mail | Funds approved/received |
Templates use {{mustache}} variables populated from case data. State-specific compliance notes included for FL, TX, CA, and GA.
Edit surplus_funds/services/research_engine.py and add to COUNTY_SOURCES:
CountySource(
county="Your County",
state="FL",
url="https://clerk.yourcounty.gov/surplus",
source_type="html_table",
selectors={...},
)
Drop an HTML template in surplus_funds/templates/ and add a generator method in document_generator.py.
Replace the placeholder in claimant_locator.py skip_trace() method with your TLO/Accurint/BeenVerified API calls.
Update .env:
SF_DATABASE_URL=postgresql+asyncpg://user:pass@localhost/surplus_funds
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.