Include disabled adult care expenses in TX FPP, HI CDCC, and MT care deduction#8981
Conversation
…deduction Adds the adult care_expenses input to three programs whose statutes cover care for disabled adult dependents (and, for HI, an incapacitated spouse) but which previously only read childcare expenses: - TX FPP dependent care deduction: 1 TAC 382.109(2)(B) allows up to $175/month per dependent adult with a disability. - HI dependent care benefits (Schedule X Part II): HRS 235-55.6(b)(1)(B)-(C) includes incapacitated dependents and spouses as qualifying individuals. - MT child/dependent care expense deduction (repealed eff. 2024): MCA 15-30-2131(1)(c)(i) covered dependents unable to provide self-care. Part of PolicyEngine#8811. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8981 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 1 4 +3
Lines 10 92 +82
Branches 0 1 +1
=========================================
+ Hits 10 92 +82
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
…)(c) Montana's statute qualifies dependents "unable to provide self-care because of physical or mental illness", not disabled dependents, so the eligible-child gate now reads is_incapable_of_self_care. Also fix the HI dependent care benefits reference: missing commas concatenated the three URLs into one string, and the statute anchor pointed at page 40 (rate schedules) instead of page 46 where HRS 235-55.6 begins. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…into adult-care-expenses-programs
…into adult-care-expenses-programs
PR reviewAutomated review via Overall: No critical blockers. CI is green (all 36 checks), codecov patch coverage is 100%, every parameter value and pinpoint citation was verified against primary sources, and the new formulas are correctly vectorized and parameterized. The items below are worth addressing before merge, led by two Texas regulatory questions. 🟡 Should address
🟢 Suggestions
Verified correct (spot-checked against primary sources)
Validation summary
🤖 Generated with Claude Code |
daphnehanse11
left a comment
There was a problem hiding this comment.
just nits, overall structure looks good
TX FPP: restrict the disability deduction to adults per 1 TAC
382.109(2)(B); keep the disabled-spouse pathway, which the FPP policy
manual supports ("$175 per adult with disabilities per month" with no
dependency qualifier); drop the redundant marital-unit size guard.
MT: follow Form 2441-M — the dollar tier counts all qualifying
individuals (including incapacitated adult dependents and spouses) and
caps combined childcare and adult care expenses, making the separate
overall cap redundant; rename the qualifying-person variable (fixing
the "eligibile" filename typo), inline the count, and add SB 399
(Sec. 65) and archived form references.
HI: pin combined childcare plus adult care expenses in
hi_dependent_care_benefits.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Thanks for the thorough review — everything is addressed in f9d35a3 except finding 1, which primary sources refute. Point-by-point: 🟡 Should address1. TX disabled spouse — kept, with new supporting evidence. The FPP Policy Manual §4100 ("Income Deductions"), which is already the second reference on the variable, drops the "dependent" qualifier for the adult category:
This wording is stable across every Wayback snapshot from June 2022 through October 2025 (archived copy — the live page blocks automated access). Three corroborating points:
The formula comment now cites the manual language. 2. TX adult age gate — fixed. The disability branch is now 3. MT tier count — confirmed, and the form goes further than suggested. 2022 Form 2441-M (identical in 2021; the mtrevenue.gov URLs now 404, so the parameter references point at the archived copies): line 1 counts qualifying individuals defined as under-15 dependents, incapacitated dependents of any age, and incapacitated spouses; line 2 takes the lesser of total dependent care expenses paid or the $2,400/$3,600/$4,800 tier — no in-home/out-of-home split at all. The formula now follows the form: one tiered cap on combined childcare + adult care, keyed on the full qualifying-individual count. That makes the separate 4. MT naming/duplication — done, one step further. The singular is renamed to 5. Test gaps — all three closed. MT Case 24 (childcare + adult care jointly exceeding the 3-QI $4,800 tier, cap binds), MT Case 23 (incapacitated under-15 dependent's care expenses count, per the form's QI definition), HI Case 13 (childcare 2,000 + adult care 3,000 → 5,000 in line 6). 🟢 Suggestions
Not addressed (pre-existing, out of scope)Two issues in the MT phase-out predate this PR and are left for a follow-up issue: the reduction uses each spouse's own 🤖 Generated with Claude Code |
Follow-up review (head
|
| Check | Result |
|---|---|
| Regulatory accuracy | ✅ resolved (TX manual verified, MT 2441-M reading confirmed) |
| Reference quality | ✅ upgraded (primary authority added, dead/redirect hrefs replaced) |
| Code patterns | 🔴 1 regression (TX spouse gate) |
| Test coverage | ✅ all previous gaps closed |
| CI status | 🔴 Quick Feedback failing (TX Case 7); full-suite shards pending |
One small fix from green.
🤖 Generated with Claude Code
is_tax_unit_spouse flags the oldest non-head adult in a tax unit even when unmarried, so the two-person marital unit condition is required to exclude unrelated adults (pinned by Case 7). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Correction to suggestion 1 above: dropping the 🤖 Generated with Claude Code |
daphnehanse11
left a comment
There was a problem hiding this comment.
all review comments addressed, lgtm
Summary
Adds adult care expenses to the Texas Family Planning Program (FPP), Hawaii child and dependent care credit, and Montana child and dependent care deduction when the care recipient qualifies under each program's rules.
This update also resolves the review findings:
care_expensesrepresents qualifying in-home adult care.Part of #8811. Companion PR: #8980 (SNAP).
Programs and authority
tx_fpp_dependent_care_deductionhi_dependent_care_benefitsmt_child_dependent_care_expense_deductionRoot cause and impact
The original adult-care paths did not consistently apply each program's qualifying-person rules. Texas excluded disabled spouses, and Montana continued calculating a repealed deduction after 2023.
These changes ensure eligible adult care lowers countable income where allowed, while preventing post-repeal Montana deductions. Households without adult-care expenses are unchanged.
Validation
make format(Ruff format and lint)