Add purpose-aware property assessor intake
This commit is contained in:
@@ -12,7 +12,10 @@ Start from the property address when possible. Treat listing URLs as supporting
|
||||
Accept any of:
|
||||
- a street address
|
||||
- one or more listing URLs
|
||||
- an address plus user constraints such as investment only, owner-occupant, long-term rental, STR, or distance to a target location
|
||||
- an address plus the reason for the assessment, such as investment property, vacation home, owner-occupant, long-term rental, STR, or housing for a child in college
|
||||
|
||||
The assessment purpose is required for a decision-grade result.
|
||||
If the user does not say why they want the property assessed, stop and ask before finalizing the analysis.
|
||||
|
||||
## Core workflow
|
||||
|
||||
@@ -73,14 +76,18 @@ Quick command summary:
|
||||
cd ~/.openclaw/workspace/skills/property-assessor
|
||||
npm install
|
||||
scripts/property-assessor assess --address "<street-address>"
|
||||
scripts/property-assessor assess --address "<street-address>" --recipient-email "<target@example.com>"
|
||||
scripts/property-assessor assess --address "<street-address>" --assessment-purpose "<purpose>"
|
||||
scripts/property-assessor assess --address "<street-address>" --assessment-purpose "<purpose>" --recipient-email "<target@example.com>"
|
||||
scripts/property-assessor locate-public-records --address "<street-address>"
|
||||
scripts/property-assessor render-report --input "<report-payload-json>" --output "<output-pdf>"
|
||||
```
|
||||
|
||||
`assess` is the address-first entrypoint. It should:
|
||||
- require the assessment purpose
|
||||
- resolve official public-record jurisdiction automatically from the address
|
||||
- build the report payload skeleton
|
||||
- try to discover Zillow and HAR listing URLs from the address when no listing URL is provided
|
||||
- run the approval-safe Zillow/HAR photo extractor chain automatically
|
||||
- build a purpose-aware report payload
|
||||
- stop and ask for recipient email(s) before rendering the PDF
|
||||
- render the PDF only after recipient email(s) are known
|
||||
|
||||
@@ -112,6 +119,12 @@ scripts/property-assessor assess --address "<street-address>"
|
||||
```
|
||||
|
||||
This command should automatically include the public-record jurisdiction result in the returned assessment payload.
|
||||
When `--assessment-purpose` is present, it should also:
|
||||
- frame the analysis around that stated purpose
|
||||
- try Zillow discovery from the address
|
||||
- try HAR discovery from the address
|
||||
- run Zillow photo extraction first when available, then HAR as fallback
|
||||
- include the extracted `imageUrls` in `photoReview` when successful
|
||||
|
||||
This command currently:
|
||||
- resolves the address through the official Census geocoder
|
||||
|
||||
Reference in New Issue
Block a user