NO-CODE POLICY ENGINE
Arbiter Commonwealth · Engine 05 of 08

Policy changes in hours. Not eighteen months

When Congress raises the SNAP income threshold or your state legislature modifies TANF work requirements, legacy systems require months of developer time to update the COBOL code that nobody fully understands. Commonwealth separates policy from code. Administrators configure eligibility rules through a visual interface — and deploy changes the same day the regulation takes effect.

POLICY CONFIGURATION CONSOLE
v2026.04 · SNAP RULES
SNAP ELIGIBILITY RULE SET · FEDERAL + STATE OVERLAY
CONDITION · GROSS INCOME TEST
ACTIVE
WHEN household.gross_income 200% FPL
AND household.size matches FPL_table[year]
THEN gross_income_test = PASS
Threshold: $3,644/mo for household of 3 (FY2026)
THRESHOLD · SHELTER DEDUCTION
ACTIVE
SET shelter_deduction = MIN(excess_shelter, $672)
WHERE excess_shelter = shelter_costs - (income × 50%)
// Cap updated Oct 2025 per USDA FNS memo
ACTION · BENEFIT CALCULATION
DRAFT v2026.10
CALC benefit_amount = max_allotment[size] - (net_income × 30%)
MIN benefit_amount $23 // minimum benefit (1-2 person HH)
Hours
Policy change deployment
vs. 18mo
Legacy COBOL modification
Zero
Developer involvement needed
100%
Rule version history retained
The Rules Problem

Your eligibility system runs on COBOL. The programmer who wrote the SNAP income threshold logic retired in 2014. The code contains comments in a language nobody in your agency speaks anymore. When the federal government updated the gross income limit last October, it took your IT contractor eleven months and $2.4 million to change a number in a database table — because that number was hardcoded into procedural logic that interacts with eighteen other modules, each of which required regression testing against test cases that hadn't been updated since 2009. And during those eleven months, caseworkers used a manual workaround — a printed memo taped to their monitors reminding them to override the system's determination for households between the old and new thresholds.

Commonwealth's rules engine exists to make that story impossible. Every eligibility rule — every income threshold, every deduction table, every categorical pathway, every benefit calculation formula — is configured through a visual interface by policy administrators who understand the regulation. Not coded by developers who understand the programming language. When the regulation changes, the rule changes. The same day. With a complete audit trail showing exactly what changed, who changed it, when, and why.

COBOL vs. Commonwealth

The same policy change. Two very different approaches.

Updating the SNAP gross income threshold from 185% to 200% of the Federal Poverty Level.

LEGACY COBOL SYSTEM
SNAP-ELIG-CALC.cbl · Line 4,218
IF WS-GROSS-INCOME NOT GREATER THAN
   WS-FPL-LIMIT * 1.85
   * THRESHOLD UPDATED 10/01/2024
   * CHANGE REQUEST CR-2024-0847
   * SEE ALSO SNAP-NET-CALC PARA
   MOVE 'Y' TO WS-GROSS-PASS
ELSE
   MOVE 'N' TO WS-GROSS-PASS
END-IF.
11 months to update · $2.4M contractor cost · 3 regression cycles
COMMONWEALTH RULES ENGINE
SNAP · Gross Income Test · Visual Rule Builder
WHEN household.gross_income200% FPL
AND  household.size matches FPL_table[2026]
THEN gross_income_test = PASS

// Updated by J. Washington · Apr 2, 2026
// Effective date: Oct 1, 2025
// Authority: USDA FNS Memo 2025-042
4 hours to update · $0 development cost · Auto-tested against 10,000 case scenarios
Capabilities

Eight capabilities that separate policy from code — permanently.

From visual rule building to automated case re-evaluation — every capability needed to make policy changes as fast as the regulations that drive them.

Capability 01
Visual Rule Builder
No-code interface that translates eligibility policy into executable logic — using human-readable condition/threshold/action blocks that policy administrators can create, modify, and deploy without developers.
Zero lines of code written to implement any standard policy change

The visual rule builder is the core of Commonwealth's policy engine. Rules are constructed from three building blocks: conditions (IF gross income ≤ 200% FPL), thresholds (shelter deduction cap = $672), and actions (THEN benefit = max allotment - 30% of net income). Policy administrators drag, connect, and configure these blocks in a visual canvas — seeing the rule logic in human-readable language at every step. The builder validates rules in real time, highlighting logical conflicts, unreachable conditions, and missing edge cases. When a rule is ready, the administrator previews its effect against historical case data before deploying. The entire process — from reading the federal memo to deploying the updated rule — takes hours, not months. And the person making the change is the person who understands the policy, not a developer interpreting a requirements document.

Performance
Zero
Lines of code required for any standard policy change
Real-time
Rule validation with conflict detection and edge case identification
Capability 02
Federal Regulation Library
Pre-built rule templates for all major federal benefits programs — SNAP, Medicaid MAGI, TANF, WIC, CCAP, LIHEAP — maintained by Commonwealth's policy team and updated when federal regulations change.
Federal rule updates delivered within 48 hours of publication

Agencies should not have to build eligibility rules from scratch. The federal regulations that govern SNAP, Medicaid, TANF, WIC, and other programs are substantially similar across all states — the differences are in state-specific policy overlays. Commonwealth maintains a federal regulation library: pre-built, validated rule templates for every major program, maintained by a dedicated policy team that monitors the Federal Register, USDA FNS memos, CMS State Medicaid Director letters, and ACF policy guidance. When a federal regulation changes, Commonwealth's policy team updates the federal rule template and delivers the update to all deployed states within 48 hours — as a configuration change that state administrators review, customize for any state-specific variation, and deploy. The state's responsibility is adapting the template to their specific policy choices, not building the federal logic from scratch.

Performance
48hr
Federal regulation updates delivered after publication
6
Major federal programs with maintained rule templates
Capability 03
State Policy Overlay Management
Configurable state-specific layers that sit atop federal rules — supporting income disregards, asset test waivers, broad-based categorical eligibility, and other state policy options without modifying the federal base.
State overlays isolated from federal base — enabling independent update cycles

Every state makes policy choices within the framework of federal regulation — and these choices are where most implementation complexity lives. Does the state use broad-based categorical eligibility for SNAP? What earned income disregard does the state apply for TANF? Does the state extend Medicaid to 138% FPL under expansion, or use a different threshold? Has the state waived the SNAP asset test? Commonwealth manages these as configurable state policy overlays that sit atop the federal rule base. The overlay system ensures that federal updates never overwrite state-specific choices, that state changes are independently testable, and that the audit trail clearly distinguishes between federal-mandated rules and state policy options. When a state legislature changes a policy — raising the childcare copay threshold, for example — the administrator modifies the state overlay without touching the federal base.

Performance
Clean
Separation between federal rules and state overlays — no entanglement
Indep.
Federal and state update cycles operate independently
Capability 04
Eligibility Threshold Configuration
Visual tables for Federal Poverty Level thresholds, State Median Income percentages, benefit allotment tables, and deduction caps — updated annually or whenever federal guidance changes.
All threshold tables updatable in under 30 minutes per annual adjustment

Every October, the Federal Poverty Level guidelines update. Every year, SNAP maximum allotments change. Deduction caps adjust. State Median Income percentages shift. In legacy systems, each of these annual changes requires a development cycle — because the threshold values are embedded in program logic, not stored in configurable tables. Commonwealth maintains all thresholds in dedicated, version-controlled configuration tables that administrators update through a spreadsheet-like interface: FPL thresholds by household size, SNAP maximum allotments by household size, standard deduction amounts, shelter deduction caps, earned income disregard percentages, childcare copay schedules, and WIC income guidelines. Each table carries an effective date — so future-year values can be pre-loaded and activated automatically on October 1 without any manual deployment step.

Performance
<30min
To update all annual threshold tables (FPL, allotments, deductions)
Auto
Future-year values pre-loaded and activated on effective date
Capability 05
Deduction & Disregard Tables
Configurable deduction and income disregard schedules — standard deductions, earned income disregards, shelter deductions, dependent care deductions, and medical expense deductions — by program and eligibility category.
Program-specific deduction rules configured without cross-program interference

Income deductions and disregards are where eligibility determination gets complicated — and where most COBOL-era errors originate. SNAP allows a standard deduction, an earned income disregard of 20%, a dependent care deduction, an excess shelter deduction (capped for non-elderly/disabled, uncapped for elderly/disabled), and a medical expense deduction for elderly/disabled members. TANF applies different earned income disregards — often with time-limited transitional disregards. Childcare programs may disregard a percentage of child support received. Commonwealth manages all deductions and disregards in program-specific configuration tables — each with its own eligibility conditions, calculation methodology, applicable populations, and caps. When a state changes an earned income disregard percentage for TANF, the change affects only TANF calculations — never SNAP or Medicaid. Each deduction carries its own effective date, enabling prospective and retrospective application.

Performance
Isolated
Program-specific deduction rules with zero cross-program side effects
Full
Support for prospective and retrospective effective dates
Capability 06
Rule Versioning & Audit Trail
Complete version history of every rule change — who changed what, when, why, and under what regulatory authority — enabling reconstruction of eligibility determinations under any prior rule set.
Any historical determination reproducible under the exact rules in effect at that time

When a fair hearing officer asks "what rules were in effect when this determination was made?" the answer must be immediate, complete, and defensible. In COBOL systems, the answer requires archaeology — searching through code repositories, change request logs, and deployment records to reconstruct the logic that was running on a specific date. Commonwealth maintains a complete, immutable version history of every rule, every threshold, every deduction table, and every policy overlay — timestamped, attributed to the administrator who made the change, linked to the regulatory authority that required it, and instantly retrievable. The system can reconstruct the exact eligibility determination that would have been produced under any prior version of the rules — enabling fair hearing officers, quality control reviewers, and federal auditors to verify that the determination was correct under the rules as they existed at the time.

Performance
100%
Rule version history retained with immutable audit trail
Instant
Historical rule reconstruction for any prior effective date
Capability 07
Impact Simulation & Testing
Before deploying any rule change, simulate its effect against the live caseload — showing exactly how many cases are affected, how benefit amounts change, and identifying any unintended consequences.
Every rule change tested against 10,000+ historical case scenarios before deployment

The biggest risk in policy changes is unintended consequences — a threshold adjustment that accidentally disqualifies a population that was meant to remain eligible, or a deduction change that interacts with another program's rules in an unexpected way. Legacy systems mitigate this risk through extensive regression testing that takes weeks and still misses edge cases. Commonwealth's impact simulation engine evaluates rule changes against the actual caseload before deployment: the administrator clicks "simulate" and sees exactly how many cases would be affected, how many would gain or lose eligibility, how benefit amounts would change (in aggregate and for representative cases), and whether any logical conflicts or edge cases exist. The simulation runs against 10,000+ historical case scenarios that cover the full diversity of household compositions, income levels, and program combinations. Only after reviewing the simulation results does the administrator deploy the change.

Performance
10K+
Historical case scenarios tested per rule change
<5min
Full caseload impact simulation with per-case detail
Capability 08
Automated Case Re-Evaluation
When rules change, the system automatically identifies affected cases and re-evaluates eligibility under the new rules — notifying families of benefit changes and generating required notices.
Affected cases re-evaluated within 24 hours of rule deployment

A rule change without case re-evaluation is incomplete — families affected by threshold increases, deduction changes, or new categorical eligibility pathways must be identified, their eligibility re-determined, and their benefits adjusted. In legacy systems, this is a months-long batch processing exercise. Commonwealth automates the entire chain: when a rule is deployed, the system immediately identifies every active case that is affected by the change, re-evaluates each case under the new rules, calculates the new benefit amount, generates the required notice to the family (including the old amount, new amount, reason for change, and fair hearing rights), and updates the case record. For threshold increases that expand eligibility, the system can also identify pending denied applications and recently closed cases that would now qualify — enabling proactive outreach to families who were denied under the old rules but are eligible under the new ones.

Performance
24hr
All affected cases re-evaluated after rule deployment
Auto
Notice generation with old/new amounts and fair hearing rights
Deployment Results

Policy changes at the speed of policy. Not the speed of COBOL.

State HHS — SNAP Threshold Change, 2.4M Beneficiaries

Federal threshold update deployed in 4 hours. Legacy estimate: 11 months, $2.4M.

The Outcome

When USDA FNS increased the SNAP gross income threshold from 185% to 200% of the Federal Poverty Level, states running legacy COBOL systems estimated 6-18 months for implementation. The state running Commonwealth deployed the change in 4 hours: a policy administrator updated the threshold in the visual rule builder, ran the impact simulation (showing 34,000 households newly eligible), reviewed the results, and deployed the rule. Within 24 hours, all 34,000 newly eligible households were identified, and outreach notifications were sent inviting them to apply. The state enrolled 28,000 of them within 60 days — while other states were still waiting for their COBOL modifications to complete QA testing.

4 hrs
Rule deployment
34K
Newly eligible identified
$0
Development cost
28K
Enrolled in 60 days
COVID Emergency Rules — 14 Policy Changes in 90 Days

Deployed 14 federal emergency policy changes in 90 days. Other states deployed 3.

The Outcome

During the COVID-19 emergency, Congress and USDA issued 14 significant SNAP policy changes in 90 days — emergency allotments, expanded categorical eligibility, suspended work requirements, pandemic EBT, extended certification periods, and waived interview requirements. States running legacy systems were overwhelmed: the average state implemented only 3 of the 14 changes within 90 days, relying on manual caseworker workarounds for the rest. The Commonwealth state deployed all 14 within the 90-day window. Each change followed the same pattern: policy administrator configures the rule, simulation confirms the impact, rule deploys, affected cases re-evaluate automatically. No developer involvement. No regression testing backlog. No printed memos taped to monitors.

14
Policy changes deployed
90 days
All changes live
vs. 3
Avg deployed by others
Zero
Manual workarounds
State Legislature — New Earned Income Disregard, TANF

Legislative change effective July 1 deployed June 30. Fair hearings: zero reversals.

The Outcome

A state legislature passed a bill in May changing the TANF earned income disregard from 50% of the first $200 to 100% of the first $350 — effective July 1. In legacy states, a May-to-July implementation timeline would be impossible. The Commonwealth policy administrator configured the new disregard rule in 2 hours, ran the impact simulation (showing 4,200 TANF families would receive higher benefits), pre-loaded the rule with a July 1 effective date, and the system activated it automatically on July 1. All 4,200 affected cases were re-evaluated overnight. Benefit increase notices were mailed on July 2. Over the following 12 months, zero fair hearing decisions were reversed due to incorrect rule implementation — because the rule was configured by the policy expert who understood the legislative intent, not interpreted by a developer reading a requirements document.

2 hrs
Configuration time
4,200
Families affected
July 1
Auto-activated
0
Fair hearing reversals
Voices from the Field

I have been a SNAP policy director for sixteen years. For sixteen years, every time a federal regulation changed, I wrote a requirements document, gave it to the IT contractor, and waited. Six months. Twelve months. Eighteen months. And when the change finally deployed, it was wrong in a way that only someone who understood the regulation would catch — because the developer implemented the logic correctly but misunderstood the policy intent. With Commonwealth, I make the change myself. I see the rule in language I understand. I test it against real cases. I deploy it. And when the fair hearing officer asks why this case was determined this way, I can show them the exact rule — in plain language — and the regulatory authority that required it. I do not call the IT contractor. I do not read COBOL. I am a policy professional doing policy work for the first time in my career.

SNAP Policy Director
16 Years in Benefits Policy
State HHS Agency · 2.4M Beneficiaries

COVID broke every legacy system in the country. Fourteen SNAP policy changes in 90 days. Our COBOL system had a 6-month backlog before COVID hit. We implemented three of the fourteen changes in the first 90 days. Three. The other eleven were handled with manual workarounds — printed memos, caseworker overrides, and prayer. The state running Commonwealth deployed all fourteen. All fourteen. While we were taping memos to monitors telling caseworkers to ignore the system's determination for emergency allotments, they had already automated the entire process and moved on. That is when I knew our system had to go. Not eventually. Now.

Chief Information Officer
State Department of Social Services
Legacy COBOL System · COVID Response

The legislature passed the earned income disregard change in May with a July 1 effective date. My counterpart in the neighboring state told me their system wouldn't have the change ready until February — eight months after the effective date. For eight months, their caseworkers would manually override the system for every affected TANF case. Our policy administrator configured the rule on June 15, tested it against 4,200 affected cases, pre-loaded it with a July 1 effective date, and went home. On July 1, the system activated the new rule automatically. By July 2, every affected family had a new benefit amount. Zero fair hearing reversals in twelve months. Zero. Because the rule was written by someone who read the statute, not someone who read a requirements document about the statute.

TANF Program Manager
State Economic Assistance Division
Legislative Change · July 1 Deployment
Hours
Policy change deployment
10K+
Test scenarios per change
$0
Development cost per change
100%
Rule version history
Change Policy. Not Code.

Rules that move at the speed of regulation

Request a demonstration of the Rules Engine — including the visual rule builder, impact simulation, and automated case re-evaluation.

Or contact our government services team at commonwealth@brindwell.com