Agent skill

policyengine-review-patterns

PolicyEngine code review patterns - validation checklist, common issues, review standards

Stars 26
Forks 5

Install this agent skill to your Project

npx add-skill https://github.com/PolicyEngine/policyengine-claude/tree/main/skills/technical-patterns/policyengine-review-patterns-skill

SKILL.md

PolicyEngine Review Patterns

Comprehensive patterns for reviewing PolicyEngine implementations.

Understanding WHY, Not Just WHAT

Pattern Analysis Before Review

When reviewing implementations that reference other states:

🔴 CRITICAL: Check WHY Variables Exist

Before approving any state-specific variable, verify:

  1. Does it have state-specific logic? - Read the formula
  2. Are state parameters used? - Check for parameters(period).gov.states.XX
  3. Is there transformation beyond aggregation? - Look for calculations
  4. Would removing it break functionality? - Test dependencies

Example Analysis:

python
# IL TANF has this variable:
class il_tanf_assistance_unit_size(Variable):
    adds = ["il_tanf_payment_eligible_child", "il_tanf_payment_eligible_parent"]
    # ✅ VALID: IL-specific eligibility rules

# But IN TANF shouldn't copy it blindly:
class in_tanf_assistance_unit_size(Variable):
    def formula(spm_unit, period):
        return spm_unit("spm_unit_size", period)
    # ❌ INVALID: No IN-specific logic, just wrapper

Wrapper Variable Detection

Red Flags - Variables that shouldn't exist:

  • Formula is just return entity("federal_variable", period)
  • Aggregates federal baseline with no transformation
  • No state parameters accessed
  • Comment says "use federal" but creates variable anyway

Action: Request deletion of unnecessary wrapper variables


Priority Review Checklist

🔴 CRITICAL - Automatic Failures

These issues will cause crashes or incorrect results:

1. Vectorization Violations

python
❌ FAILS:
if household("income") > 1000:  # Will crash with arrays
    return 500

✅ PASSES:
return where(household("income") > 1000, 500, 100)

2. Hard-Coded Values

python
❌ FAILS:
benefit = min_(income * 0.33, 500)  # Hard-coded 0.33 and 500

✅ PASSES:
benefit = min_(income * p.rate, p.maximum)

3. Missing Parameter Sources

yaml
❌ FAILS:
reference:
  - title: State website
    href: https://state.gov

✅ PASSES:
reference:
  - title: Idaho Admin Code 16.05.03.205(3)
    href: https://adminrules.idaho.gov/rules/current/16/160503.pdf#page=14

🟡 MAJOR - Must Fix

These affect accuracy or maintainability:

4. Test Quality Issues

yaml
❌ FAILS:
income: 50000  # No separator

✅ PASSES:
income: 50_000  # Proper formatting

5. Calculation Accuracy

  • Order of operations matches regulations
  • Deductions applied in correct sequence
  • Edge cases handled (negatives, zeros)

6. Description Style

yaml
❌ FAILS:
description: The amount of SNAP benefits  # Passive voice

✅ PASSES:
description: SNAP benefits  # Active voice

🟢 MINOR - Should Fix

These improve code quality:

7. Code Organization

  • One variable per file
  • Proper use of defined_for
  • Use of adds for simple sums

8. Documentation

  • Clear references to regulation sections
  • Changelog entry present

Common Issues Reference

Documentation Issues

Issue Example Fix
No primary source "See SNAP website" Add USC/CFR citation
Wrong value $198 vs $200 in source Update parameter
Generic link dol.gov Link to specific regulation
Missing subsection "7 CFR 273" "7 CFR 273.9(d)(3)"

Code Issues

Issue Impact Fix
if-elif-else with data Crashes microsim Use where/select
Hard-coded values Inflexible Move to parameters
Missing defined_for Inefficient Add eligibility condition
Manual summing Wrong pattern Use adds attribute

Test Issues

Issue Example Fix
No separators 100000 100_000
No documentation output: 500 Add calculation comment
Wrong period 2024-04 Use 2024-01 or 2024
Made-up variables heating_expense Use existing variables

Source Verification Process

Step 1: Check Parameter Values

For each parameter file:

python
✓ Value matches source document
✓ Source is primary (statute > regulation > website)
✓ URL links to exact section with page anchor
✓ Effective dates correct

Step 2: Validate References

Primary sources (preferred):

  • USC (United States Code)
  • CFR (Code of Federal Regulations)
  • State statutes
  • State admin codes

Secondary sources (acceptable):

  • Official policy manuals
  • State plan documents

Not acceptable alone:

  • Websites without specific sections
  • Summaries or fact sheets
  • News articles

Code Quality Checks

Vectorization Scan

See policyengine-vectorization skill for comprehensive vectorization patterns and scan targets.

Hard-Coding Scan

Search for numeric literals — flag anything like:

python
"0.5"
"100"
"0.33"
"65"

Review Response Templates

For Changes Required

markdown
## PolicyEngine Review: CHANGES REQUIRED ❌

### Critical Issues (Must Fix)

1. **Non-vectorized code** - lines 45-50
   ```python
   # Replace this:
   if income > threshold:
       benefit = high_amount

   # With this:
   benefit = where(income > threshold, high_amount, low_amount)
  1. Parameter value mismatch - standard_deduction.yaml
    • Source shows $200, parameter has $198
    • Reference: 7 CFR 273.9(d)(1), page 5

Major Issues (Should Fix)

  1. Missing primary source - income_limit.yaml
    • Add statute/regulation citation
    • Current website link insufficient

Please address these issues and re-request review.


---

## Test Validation

### Check Test Structure

```yaml
# Verify proper format:
- name: Case 1, description.  # Numbered case with period
  period: 2024-01  # Valid period (2024-01 or 2024)
  input:
    people:
      person1:  # Generic names
        employment_income: 50_000  # Underscores
  output:
    # Calculation documented
    # Income: $50,000/year = $4,167/month
    program_benefit: 250

Run Test Commands

bash
# Unit tests
pytest policyengine_us/tests/policy/baseline/gov/

# Integration tests
policyengine-core test <path> -c policyengine_us

# Microsimulation
pytest policyengine_us/tests/microsimulation/

Review Priorities by Context

New Program Implementation

  1. Parameter completeness
  2. All documented scenarios tested
  3. Eligibility paths covered
  4. No hard-coded values

Bug Fixes

  1. Root cause addressed
  2. No regression potential
  3. Tests prevent recurrence
  4. Vectorization maintained

Refactoring

  1. Functionality preserved
  2. Tests still pass
  3. Performance maintained
  4. Code clarity improved

Large-Scale Refactoring (Renaming)

⚠️ CRITICAL: Variable/function renaming has high potential to break things

When reviewing PRs that rename variables or functions across the codebase:

  1. Test Coverage Requirements

    • All existing tests must pass
    • Run microsimulation tests if available
    • Consider running notebooks mentioned in repo docs
    • Check for implicit dependencies (string references, dynamic lookups)
  2. Common Breakage Points

    • Variables referenced as strings (e.g., in reforms, API endpoints)
    • Dynamic variable lookups via entity(variable_name, period)
    • Parameter files that reference variable names
    • Documentation/examples that hardcode variable names
    • External tools/APIs that depend on variable naming
  3. Validation Strategy

    bash
    # Basic validation
    pytest  # All unit tests
    
    # If notebooks exist, run them
    jupyter nbconvert --execute notebook.ipynb
    
    # Check for string references to renamed variables
    grep -r "old_variable_name" --include="*.py" --include="*.yaml"
    
  4. Approval Requirements

    • Even if tests pass, require maintainer review
    • Look for usage in API/web app if variables are exposed
    • Check if any variables are part of the public interface

Quick Review Checklist

Parameters:

  • Values match sources
  • References include subsections
  • All metadata fields present
  • Effective dates correct

Variables:

  • Properly vectorized (no if-elif-else)
  • No hard-coded values
  • Uses existing variables
  • Includes proper metadata

Tests:

  • Proper period format
  • Underscore separators
  • Calculation comments
  • Realistic scenarios

Overall:

  • Changelog entry
  • Code formatted
  • Tests pass
  • Documentation complete

Review-Fix Loop Discipline

  • The review-fix loop must continue until 0 critical issues are found OR the max round limit is reached. Never stop early when criticals remain, even if other severity levels are clean.
  • When an implementation agent creates a correct pattern (e.g., an _in_effect boolean), do not instruct them to remove it in favor of a "simpler" approach that introduces an anti-pattern. Trust domain-specific correctness over superficial simplicity.

Expand your agent's capabilities with these related and highly-rated skills.

PolicyEngine/policyengine-claude

policyengine-healthcare

Healthcare program modeling in PolicyEngine-US — Medicaid, ACA marketplace, CHIP, and Medicare. Covers encoding rules, running analyses, and navigating the unique complexity of US healthcare programs. Triggers: "healthcare", "health insurance", "Medicaid", "ACA", "CHIP", "Medicare", "marketplace", "premium tax credit", "APTC", "PTC", "SLCSP", "benchmark plan", "rating area", "age curve", "family tier", "coverage gap", "Medicaid expansion", "MAGI", "medicaid_magi", "aca_magi", "medicaid_income_level", "medicaid_category", "enrollment", "takeup", "take-up", "per capita", "CSR", "cost sharing", "insurance premium", "second lowest silver", "required contribution percentage", "42 CFR", "IRC 36B", "categorical eligibility", "expansion adult", "healthcare reform", "healthcare analysis", "health policy".

26 5
Explore
PolicyEngine/policyengine-claude

policyengine-us

ALWAYS LOAD THIS SKILL FIRST before writing any PolicyEngine-US code. Contains the correct API patterns for household calculations and population simulations using the new policyengine package. Covers US federal and state taxes/benefits. Triggers: "what would", "how much would a", "benefit be", "eligible for", "qualify for", "single parent", "married couple", "family of", "household of", "if they earn", "earning $", "making $", "calculate benefits", "calculate taxes", "benefit for a", "what would I get", "what is the maximum", "what is the rate", "poverty line", "income limit", "benefit amount", "maximum benefit", "compare states", "TANF", "SNAP", "EITC", "CTC", "SSI", "WIC", "Section 8", "Medicaid", "ACA", "child tax credit", "earned income", "supplemental security", "housing voucher", "microsimulation", "population", "reform", "policy impact", "budgetary", "decile".

26 5
Explore
PolicyEngine/policyengine-claude

policyengine-uk

ALWAYS LOAD THIS SKILL FIRST before writing any PolicyEngine-UK code. Contains the correct API patterns for household calculations and population simulations using the new policyengine package (not policyengine_uk directly). Triggers: "what would", "how much would a", "benefit be", "eligible for", "qualify for", "single parent", "married couple", "family of", "household of", "if they earn", "with income of", "earning £", "making £", "calculate benefits", "calculate taxes", "benefit for a", "tax for a", "what would I get", "what would they get", "what is the rate", "what is the threshold", "personal allowance", "maximum benefit", "income limit", "benefit amount", "how much is", "Universal Credit", "child benefit", "pension credit", "housing benefit", "council tax", "income tax", "national insurance", "JSA", "ESA", "PIP", "disability living allowance", "working tax credit", "child tax credit", "Scotland", "Wales", "UK", "microsimulation", "population", "reform", "policy impact", "budgetary", "decile".

26 5
Explore
PolicyEngine/policyengine-claude

policyengine-canada

ALWAYS LOAD THIS SKILL FIRST before writing any PolicyEngine-Canada code. Contains Canadian federal and provincial tax/benefit rules for household calculations. IMPORTANT: PolicyEngine-Canada does NOT have representative population microdata. Do NOT attempt microsimulation or population-level estimates for Canada. Only provide household-level analysis (single-family impacts, eligibility, benefit amounts). Triggers: "what would", "how much would a", "benefit be", "eligible for", "qualify for", "single parent", "married couple", "family of", "household of", "if they earn", "earning $", "making $", "calculate benefits", "calculate taxes", "benefit for a", "what would I get", "what is the maximum", "what is the rate", "income limit", "benefit amount", "maximum benefit", "compare provinces", "CCB", "Canada Child Benefit", "GST credit", "HST credit", "GST/HST", "OAS", "Old Age Security", "GIS", "Guaranteed Income Supplement", "CWB", "Canada Workers Benefit", "EI", "Employment Insurance", "CPP", "Canada Pension Plan", "RRSP", "TFSA", "Ontario Child Benefit", "OCB", "Ontario Trillium Benefit", "OTB", "BC Climate Action", "Alberta Child Benefit", "Quebec", "CRA", "Canada Revenue Agency", "Canadian", "Canada", "Ontario", "British Columbia", "Alberta", "Saskatchewan", "Manitoba", "Nova Scotia", "New Brunswick", "PEI", "Newfoundland", "Yukon", "NWT", "Nunavut", "provincial tax", "federal tax Canada".

26 5
Explore
PolicyEngine/policyengine-claude

policyengine-ui-kit-consumer

This skill should be used when setting up a new project that uses @policyengine/ui-kit, debugging CSS or styling issues in a consumer app, or when Tailwind utility classes are not being generated. Also use when creating globals.css, configuring PostCSS, or troubleshooting "no styles", "no spacing", or "no layout" problems. Triggers: "ui-kit import", "globals.css setup", "Tailwind not working", "styles not applying", "utility classes missing", "setup ui-kit", "PostCSS config", "no styling", "CSS broken", "import ui-kit", "theme.css", "no layout", "no spacing", "@tailwindcss/postcss"

26 5
Explore
PolicyEngine/policyengine-claude

policyengine-tailwind-shadcn

Tailwind CSS v4 + shadcn/ui integration patterns for PolicyEngine frontend projects. Covers @theme namespaces, CSS variable conventions, SVG var() usage, and common mistakes. Triggers: "Tailwind v4", "@theme", "shadcn", "CSS variables", "design tokens CSS", "theme.css", "@theme inline"

26 5
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results