Add Contra Costa County General Assistance#8593
Draft
hua7450 wants to merge 2 commits into
Draft
Conversation
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Add the county-administered General Assistance (GA) cash-relief program (CA Welfare & Institutions Code section 17000 et seq.): - Fill-the-gap benefit: max_(grant standard - max_(countable income, 0), 0), with the inner floor guarding against negative-income inflation. - Grant standards: single $336/month (stable since 2011 per WCLP), couple $454/month (current EHSD). - Eligibility: age >= 18; $500 personal-property limit; qualified immigration status; no dependent children (families -> CalWORKs); not receiving SSI/SSDI/UIB/SDI; Contra Costa County residence. - Register the program in programs.yaml. - 46 unit/integration tests, all passing. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8593 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 3 10 +7
Lines 68 121 +53
=========================================
+ Hits 68 121 +53
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:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements Contra Costa County, California's General Assistance (GA) program — a county-administered indigent cash-assistance program under California Welfare & Institutions Code § 17000 et seq. GA pays the gap between a grant standard and the recipient's net countable income to adults without dependent children who are ineligible for other cash aid.
Administered by the Contra Costa County Employment and Human Services Department (EHSD). Files live under
gov/local/ca/cc/, parallel to the existing Alameda County GA implementation atgov/local/ca/ala/ga/.Closes #8592
Regulatory authority
Benefit
Fill-the-gap:
max_(grant standard - max_(countable income, 0), 0). The innermax_(income, 0)floors countable income at zero so net-negative flows (e.g. self-employment losses) cannot inflate the grant above the standard.Eligibility
age >= 18personal_property <= 500(EHSD "up to $500" → inclusive)spm_unit_count_children == 0(families → CalWORKs)ssi,social_security_disability,unemployment_compensation,ca_state_disability_insuranceincome < base_amount(brochure: "earnings less than the maximum allowable grant")in_cc(county_str == CONTRA_COSTA_COUNTY_CA)Verification notes / known simplifications
Not modeled (by design)
personal_propertyis treated as the net countable-asset figureFiles
Reference implementation
policyengine_us/variables/gov/local/ca/ala/ga/Test plan
policyengine-core test)make formatclean (ruff format + check)🤖 Generated with Claude Code