Install
openclaw skills install usa-tax-return-review-1040Review U.S. individual income tax returns (Form 1040/1040-SR) for the most recent tax year, compare major return items against current-year tax rules, check consistency across historical returns when multiple years are provided, generate a standalone DOCX risk register, and estimate audit likelihood from return content. Use when tasks involve 1040 compliance review, multi-year consistency analysis, tax-law validation, or audit-risk assessment.
openclaw skills install usa-tax-return-review-1040Run a structured review of normalized Form 1040 data for the latest tax year in the provided set. Produce three artifacts: a detailed findings JSON file, a markdown summary, and a separate DOCX risk report listing major items and related risks.
python scripts/review_1040.py --input <normalized_returns.json> --output-dir output/form-1040-review
review_summary.mdreview_findings.jsonform-1040-risk-report.docxtax_year in the input as the current return.review_findings.json).review_summary.md).form-1040-risk-report.docx) that lists each major item, severity, observations, and recommended documentation.Use the normalized schema in references/input_schema.json. At minimum, include:
tax_yearfiling_statusmajor_items for core 1040 lines (AGI, deduction, taxable income, tax, payments, refund/amount owed)Use references/major_items_reference.md for canonical key mapping.
scripts/review_1040.py performs:
python-docx.If python-docx is missing, install it:
python -m pip install --user python-docx
python scripts/review_1040.py \
--input references/example_returns.json \
--output-dir output/form-1040-review