reasonsmith — evidence records and reason-deletion certificates for decision systems
[!TIP] Live on the web: the landing page is at reasonsmith.dev and the self-contained conformance dossier at reasonsmith.dev/report.html.
What question does reasonsmith answer?
When a system makes a decision about a person, a regulatory duty often requires the reasons behind it to be recorded — and, on request, given to that person. reasonsmith answers two concrete questions about such a decision:
- Is the evidence record complete? Does it carry every field the duty's formal specification requires?
- Did the explanation engine keep the reasons it was supposed to give? Or did it drop some on the way out?
Given a decision, the symbolic artifact behind it, and an applicable regulatory duty, reasonsmith evaluates the record's structural completeness and compares actual engine behavior against ground-truth exact inference. Where the applicable requirement identifies reasons the statute obliges, its paired reason-deletion certificate shows which of them the engine dropped.
What a verdict is worth
Every evaluated result records its evidence strength, on one lattice:
unattainable— on a declared basis, signals the duty needs are outside the system's declared capability set; on a trace basis, no supplied record carries them, which does not establish that the system cannot emit them. Computed without executing the system; the missing signals are named.observed— read off the decision trace supplied; it claims nothing about decisions outside it.probed— a bounded search, never a proof: the engine perturbs the decisions the system has already made, replays each generated input through the system itself, reports any counterexample it finds within the budget and otherwise reports that none was found, naming exactly what was searched.proved— a solver result: the decision logic the system exposes is checked over every input the declared constraints admit, and a counterexample is executed before it is reported as a violation.
Combining zero verdicts is inconclusive, never vacuously satisfied. A requirement no engine here can evaluate is reported with no strength, rather than judged by a weaker check. What each verdict means — and does not mean — is stated one engine at a time in docs/semantics.md; every soundness claim there names the test that fails if the claim becomes false.
Key Finding: Form Completeness Does Not Imply Reason Fidelity
Evaluating structural form alone can launder severe compliance and reasoning gaps into documents that appear authoritative. In the ECOA/Reg B credit demonstration (python -m reasonsmith.demo), reasonsmith emits an evidence record that reads COMPLETE while its paired certificate reads FAIL because four of its five principal reasons were dropped by proof truncation:
EVIDENCE RECORD [COMPLETE]
decision: APP-1042
duty: Adverse action reasons in credit decisions
legal source: ECOA / Reg B (12 CFR 1002.9)
source of the duty: Table 7 (row 4, p. 36:22), Symbols and Neurons: A Review of Symbolic XAI in Deep Learning, Stan, Sciavicco & Napoletano, Journal of Artificial Intelligence Research, Vol. 86, Article 36, July 2026
symbolic artifact(s) Table 7 asks for: Rule-based “reason codes” mapped to standardized categories; monotone/eligibility constraints for fairness explanations
where it fits: Adverse action notice (AAN) pipeline; compliance reporting
minimal evidence retained:
[x] stored_reasons_per_decision (Stored reasons per decision):
C01 — Income insufficient for amount of credit requested
[x] model_version (model version):
credit-scoring-2026.03.1 / rules cs-rules-2026.03
[x] score_factors (score factors):
C01 0.7656; C02 0.6972; C03 0.6320; C04 0.6004; C05 0.5112
[x] audit_ids (audit IDs):
AAN-2026-0731-1042 / trace-9f3c1b
[x] retention_for_regulatory_lookback (retention for regulatory lookback):
25 months from notice date, per lender policy
supporting material (NOT Table 7 evidence, and fills no gap above):
reason-deletion certificate:
REASON-DELETION CERTIFICATE [FAIL]
query: adverse_action(APP-1042)
engine: reference:top-1-proofs claims: distribution semantics
exact inference: bounded proof enumeration to depth 1 (nesyarena ground-program IR) + exact weighted model counting
exact value 0.991399 engine value 0.765600 gap -0.225799 tolerance 1e-09
reasons: 5 found by exact inference, 1 used by the engine, 4 deleted, 0 not certifiable
Automated Conformance Checking
reasonsmith also checks decision logs against formal regulation packs, producing reports whose evaluated results record their evidence strength. Run against the committed sample log:
reasonsmith check --system docs/sample_decisions.jsonl --pack ecoa --system-name CreditScoringPipeline
CONFORMANCE REPORT
system: CreditScoringPipeline
declared scope: undeclared
pack: ecoa
headline: 3 requirements · 3 binding: 3 observed
REQUIREMENT FINDINGS:
[OBSERVED] ecoa_reg_b_1002_9_a_1_timing_of_notice (ECOA / Regulation B (12 CFR 1002.9) 12 CFR 1002.9(a)(1)): satisfied
requires: artifact_logs_decision_record, artifact_logs_notification_latency_days, artifact_logs_counteroffer_not_accepted
summary: Observed over 3 decision(s): temporal monitor for 'always((artifact_logs_decision_record >= 0.5) -> ((artifact_logs_notification_latency_days <= 30) or ((artifact_logs_counteroffer_not_accepted >= 0.5) and (artifact_logs_notification_latency_days <= 90))))' satisfied across all time steps.
[OBSERVED] ecoa_reg_b_1002_9_a_2_written_statement (ECOA / Regulation B (12 CFR 1002.9) 12 CFR 1002.9(a)(2)): satisfied
requires: artifact_logs_reason_explanation, artifact_logs_decision_record, provenance_model_version
summary: Observed over 3 decision(s): every required signal (artifact_logs_reason_explanation, artifact_logs_decision_record, provenance_model_version) carries a value in every record. Holds on the trace supplied; nothing here extends the claim to decisions not in it.
[OBSERVED] ecoa_reg_b_1002_9_b_2_specific_reasons (ECOA / Regulation B (12 CFR 1002.9) 12 CFR 1002.9(b)(2)): satisfied
requires: artifact_logs_reason_explanation, provenance_model_version, scope_statements_local_vs_global
summary: Observed over 3 decision(s): every required signal (artifact_logs_reason_explanation, provenance_model_version, scope_statements_local_vs_global) carries a value in every record. Holds on the trace supplied; nothing here extends the claim to decisions not in it.
LIMITS OF THIS REPORT
This report is not a compliance guarantee and is not legal advice. It assesses system capability information and trace evidence against formal specifications. Whether these findings discharge legal duties remains a determination this tool does not make and cannot make. A requirement reported without a strength was not evaluated or is not applicable, and no verdict on it should be read from this report. Recital and guidance items inform how statutory duties are interpreted but create no obligation of their own; interpretive requirements are evaluated and reported separately, and are never folded into the binding headline counts. A requirement reported not applicable was excluded either because no regulatory class was declared for the system at all, or because the class that was declared is not the one the requirement is limited to. This tool never infers that class, so an undeclared system is neither placed in scope nor cleared of the duty: read the declared scope line before reading a not-applicable result.
observed is the weakest rung of the strength lattice that can still say a property held: it is read off the trace supplied and claims nothing about decisions outside it. The same log checked against the Table 7 pack still exits 0, because nothing there is a breach: the GDPR Art. 22 and ECOA rows come back observed, the two interpretive rows come back unattainable with their missing signals named, and the two EU AI Act rows come back not applicable against an undeclared regulatory scope — declaring it with --system-scope high-risk is what brings them into scope, and that is the run behind the dossier at reasonsmith.dev/report.html. See docs/example-output.md for that run and for the full 905-line demo transcript, both stdout pasted unedited.
Quick Start
The install is from source today; the console command it puts on your PATH is reasonsmith, with python -m reasonsmith.cli staying available. Run the full verification suite and demonstration in one block:
git clone https://github.com/eduardstan/reasonsmith.git
cd reasonsmith
python3 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]" # the published install line lands here, replacing the four bootstrap lines above
ruff check .
pytest
python -m reasonsmith.demo
reasonsmith check --system docs/sample_decisions.jsonl --pack ecoa
Every command runs from a fresh clone in that order; docs/sample_decisions.jsonl is a committed three-record decision trace, so the last line needs no data of your own. check exits 2 when a requirement is violated, 1 on a usage or input error, and 0 otherwise — the ecoa run above exits 0.
Note: This single installation path is used by CI (.github/workflows/ci.yml). Full empirical environment measurements and torch test counts are documented in RESULTS.md.
Where the Duties Come From
The duty-to-artifact mapping is Table 7 of Symbols and Neurons: A Review of Symbolic XAI in Deep Learning (Stan, Sciavicco & Napoletano, JAIR 2026, p. 36:22), reviewing 273 primary studies across five regulatory frameworks: EU AI Act, GDPR, ECOA/Reg B, FDA GMLP, and NIST AI RMF.
Table 7 is transcribed verbatim into src/reasonsmith/table7.toml. That file is data, not code: every duty records its row number, and every machine key sits next to the exact cell text it stands for. traceability_report() prints the table side by side. Where a design decision and Table 7 disagree, Table 7 wins. Statutory texts are backed by retrieval records in docs/legal-sources.md.
What Is in the Box
Package Architecture
| File / Module | Description |
|---|---|
src/reasonsmith/table7.toml |
The six Table 7 duties transcribed verbatim, with row-level traceability |
src/reasonsmith/evidence.py |
Minimal evidence record emitter and missing field reporter |
src/reasonsmith/certificate.py |
Reason-deletion certificates against exact inference oracle (nesyarena) |
src/reasonsmith/conformance.py |
Table 19 checks, including stratified per-group evaluations |
src/reasonsmith/demo.py |
End-to-end demonstration of all six Table 7 duties (EU AI Act Art. 13 and Art. 12, GDPR Art. 22 clinical, ECOA/Reg B credit, FDA GMLP SaMD, NIST AI RMF continuous monitoring) |
src/reasonsmith/verdict.py |
Core lattice: evidence strength lattice (unattainable < observed < probed < proved) and verdict vocabulary |
src/reasonsmith/spec.py |
Core requirement loader & specification structures from packs/*.toml |
src/reasonsmith/sut.py |
System-under-test protocol — declared capabilities, decision trace, optional replay hook, and exposed logic |
src/reasonsmith/report.py |
Conformance report skeleton, headline builder, static unattainable analysis, and the text/JSON/self-contained-HTML renderers |
src/reasonsmith/rulelang.py |
The whitelisted mini-language rule and specification text is parsed and executed in, shared by the rule adapter and the proved engine |
src/reasonsmith/adapters/ |
SUT protocol adapters for JSONL decision logs, Python callables, and rule-based systems that expose their decision logic |
src/reasonsmith/engines/ |
Verification engines: record completeness check, observed rtamt temporal monitor, probed perturb-and-replay search, and proved Z3 solver |
src/reasonsmith/cli.py |
Command-line interface (reasonsmith / python -m reasonsmith.cli): check --system <log.jsonl> --pack <name> [--capabilities <file>] and validate-pack <pack> [...] |
src/reasonsmith/drift.py |
Statute drift check (python -m reasonsmith.drift): re-fetches the official legal sources and re-verifies every pack quote, reporting match / differ / could-not-verify without ever editing a pack |
src/reasonsmith/packs/table7.toml |
Table 7 rows restated as a formal requirement pack |
src/reasonsmith/packs/{eu_ai_act,gdpr,ecoa}.toml |
Statutory requirement packs with verbatim quotes from docs/legal-sources.md |
Core Components
-
The Emitter (
evidence.py):emit(duty_id, decision_id, fields)returns a record that is eitherCOMPLETEorINCOMPLETE. AnINCOMPLETErecord explicitly names the fields it lacks. Nothing is defaulted, inferred, or silently dropped. Keys outside the duty's Table 7 row are rejected, and non-Table 7 data is isolated inattachments. -
The Reason-Deletion Certificate (
certificate.py): Compares the reasons an engine actually used against exact inference ground truth (enumerated via WMC innesyarena). Using deletion probes, it tests whether disabling isolated facts changes engine output. Two independent checks must pass: the deletion probe (every reason live) and the value check against the exact oracle. Reasons that cannot be probed in isolation are reported as uncertified (INCONCLUSIVE). -
The Conformance Core (
verdict.py,report.py): Every evaluated result records its evidence strength:unattainable < observed < probed < proved.unattainableis a set difference over SUT capabilities computed without running the system: with declared capabilities it describes the system, while with trace-derived capabilities it describes only the supplied records; either way, the missing signals are named.observedevaluates passive decision traces.probedactively replays perturbed inputs.provedis a solver result. A requirement no engine here can evaluate is reported as not evaluated — no strength and no satisfied-or-violated conclusion — rather than judged by a weaker check. Combining zero verdicts isinconclusive, never vacuouslysatisfied. Engines exist for three formalisms:record(completeness over a decision trace),temporal(rtamt monitors), andlogical(Z3 when the system exposes its logic, replay probing when it exposes onlydecide()). -
The Proved Engine (
engines/proved.py):logicalrequirements are discharged by Z3 against the decision logic a system exposes throughsut.logic()— its variables, its rules, and the constraints its inputs are known to obey. Rules are encoded in static single assignment form, so a rule that reassigns a name means what it means when executed. Three things are refused rather than reported: logic or a property using a construct the encoding does not model, a solver result ofunknownor a timeout, and premises no input can satisfy — an over-constrained model makesunsatprove every property alike, so it counts as no evidence, not as proof. When the solver finds a counterexample, that input is executed before anything is reported:VIOLATEDat strengthprovedis only claimed once the violation reproduces, and the evidence summary names what it reproduced against, since a system exposing onlylogic()can be replayed only through its declared logic and not through itself. The GDPR pack ships the firstlogicalrequirement proved against real statute:gdpr_art22_1_no_prohibited_decision_for_any_inputasks Z3 whether the exposed rules admit any input on which a decision is solely automated and significantly affecting while no Article 22(2) basis applies and the Article 22(3) route to human intervention is closed. That duty is universal, so a record check over a supplied trace cannot express it; aprovedverdict here is a statement about the exposed rules over every input the declared constraints admit, and the pack's description says so in full — it is not a determination that the controller has discharged Article 22. -
The Probed Engine (
engines/probed.py): The rung for a system whose decision logic cannot be inspected. Alogicalrequirement against a system that exposesdecide()but nologic()is searched rather than proved: the engine takes the decisions the system has already made, perturbs their fields — over the values the trace shows, the property's own numeric thresholds and their neighbours — and replays each generated input through the system itself. A counterexample is replayed a second time before it is reported, and one that does not reproduce is a defect in the search, so it is reported not evaluated rather than as a violation. No counterexample within the budget isprobed, neverproved: the verdict carries what was searched — how many inputs were replayed, the strategy, the seed, and the fields the search could vary — andRequirementResultrefuses to be constructed without it, so no rendering can drop it. The same seed replays the same inputs in the same order, so a reported budget can be re-derived. Defaults are 200 replayed inputs at seed 0, both configurable. -
Binding vs interpretive duties and regulatory scope: Each requirement records whether it is a legally binding duty or an interpretive recital/guidance item, and any regulatory class it is limited to. The headline names both halves —
6 requirements · 4 binding: 2 observed, 2 unattainable · 2 interpretive: 2 observed— so an interpretive item is reported without being counted as compliance evidence. A class-limited requirement is checked only against a system declared to be in that class via--system-scope; the class is never inferred, so an undeclared system has those requirements reported not applicable. Classes come from one fixed vocabulary —prohibited,high-risk,limited-risk,minimal-risk,general-purpose— which both a pack'sscopeand a declared--system-scopeare checked against, after trimming whitespace and lowercasing and with nothing else guessed. A value outside it is a usage error naming what would have been accepted, so a misspelling on either side cannot become a duty that quietly never matches. A class the vocabulary knows but the chosen pack does not target is not an error: those duties are reported not applicable as a declared mismatch. -
The CLI (
cli.py): Four packs ship — Table 7, EU AI Act, GDPR, ECOA/Reg B — and the CLI runs one against a JSONL decision log. It is installed as thereasonsmithcommand (pip install -e ".[dev]") and stays runnable aspython -m reasonsmith.cli:reasonsmith check --system decisions.jsonl --pack ecoa [--json] [--html report.html] reasonsmith check --system decisions.jsonl --pack eu_ai_act --system-scope high-risk --html report.html reasonsmith validate-pack ecoa eu_ai_act gdpr table7
checkexits 2 when a requirement is violated, 1 on a usage or input error, and 0 otherwise. Unattainable, not applicable and not evaluated are findings to read in the report, not breaches, so none of them changes the exit code. Reports render to plain text, structured JSON (--json), or a self-contained offline HTML report (--html FILE). By default the CLI reads capabilities from the supplied log, and a result resting on that says so rather than speaking for the system; pass--capabilities caps.txtto instead have the system's maintainers declare what it can emit. The file has one signal name per line; blank lines and whole-line comments whose first nonblank character is#are ignored. The report then says the capabilities were declared. An empty declaration file declares nothing, which is a distinct claim from having no declaration at all, and a malformed line is refused naming the file and the line.validate-packvalidates one or more requirement packs and prints what each contains, exiting 0 for any packs acheckrun could load and 1 at the first one the loader refuses, naming the file and the requirement at fault; the authoring guide isdocs/authoring-packs.md. -
Machine-Readable & Visual HTML Output: Records, certificates, and reports serialize to dicts (
to_dict()), JSON (to_json(indent=None)), and self-contained HTML (render_html()). Each carries the same facts as its text rendering, including its missing-field report and its own limits, so a downstream consumer cannot read a partial document as a complete one. Values outside JSON's own types are stringified rather than raising. Conformance results need no serializer:group_stats()andstratified()already return plain dicts of JSON-native types, sojson.dumps(stratified(groups))is the whole recipe — and an unmeasured metric serialises asnull, never0. The HTML report opens from anyfile://path with zero network dependencies, presents the evidence strength lattice, splits binding vs interpretive duties, highlights counterexample trace witnesses for violations, and visually distinguishes unattainable architectural gaps from runtime violations. -
The Statute Drift Check (
drift.py): A maintenance check, not a conformance engine.python -m reasonsmith.driftre-fetches each official statutory document recorded indocs/legal-sources.mdand compares the packs'verbatim_textagainst the live source, collapsing only whitespace (the one thing a printer legitimately changes). Every requirement ismatch,differ(both strings named) orcould-not-verify(the source is unreachable or no longer carries the passage — never a pass), and a pack is never edited automatically..github/workflows/statute-drift.ymlruns it on the first of every month and files a single GitHub issue when anything drifts; the tests run the same check against recorded byte-faithful fixture slices, so the suite needs no network. -
Dependencies & PyPI:
nesyarenasupplies ground-program IR, proof enumeration, and exact WMC (pinned tonesyarena==0.1.0on PyPI inpyproject.toml);pip install -e ".[dev]"in a venv is the single install path.rtamt, which supplies STL temporal monitoring, andz3-solver, which supplies the SMT solver behind the proved engine, are declared runtime dependencies ofreasonsmith, both pinned exactly.torch, by contrast, is an optional dependency ofnesyarena(~1GB) and is deliberately not a declared dependency ofreasonsmith— it was installed and measured in a separate environment, recorded in RESULTS.md.
Summary of Empirical Findings
| Metric / Finding | Observed Result | Rationale & Mechanism |
|---|---|---|
| Stratified Checks (Design A: Confidence Varies) | Coverage gap: 0.0000 Fidelity gap: +0.0535 Retained share gap: +0.2802 |
Top-k proof truncation keeps fixed proof count regardless of confidence scaling. Coverage remains identical across groups; retained share catches the atypical group's loss of value. |
| Stratified Checks (Design B: Reason Multiplicity Varies) | Coverage gap: +0.3000 Fidelity gap: +0.1472 Retained share gap: +0.1129 |
Cases with more reasons suffer lower coverage under fixed k=1 truncation (a case with 5 reasons retains 1/5th; a case with 2 retains 1/2). |
| Signal Stability (Drift across windows) | Stability score: 0.3333 | Under top-1 settings, drift in a single signal silently swaps the stated reason across windows on an unchanged applicant file. |
The stratified rows are measured on frozen synthetic cohorts, built to separate the two mechanisms from each other. Whether real atypical cases trip more reasons than typical ones is an empirical question about data this table does not have, and the table does not answer it. Every figure in it is reproduced in RESULTS.md, along with the exact environment and versions, both suites' pass/fail/skip counts with torch installed, and a byte-for-byte diff of two demo runs.
Figures this README takes from the paper rather than from running code — the 273 primary studies, the six Table 7 duties — and the rough ~1GB size of the torch download are not measurements and are not reproduced there.
Limits
Status: Early research software. Nothing here is a compliance guarantee, and none of it is legal advice.
- A certificate speaks only about the specific program, base interpretation, and query tested.
- Table 7 completeness checks the form of a record, never the truth or accuracy of its contents.
- Static capability analysis (
unattainable) checks declared or trace-derived signal names, not operational runtime correctness.
Licence
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reasonsmith-0.2.0.tar.gz.
File metadata
- Download URL: reasonsmith-0.2.0.tar.gz
- Upload date:
- Size: 161.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfa68c3510abdd6eba8aab14ff3340fbd31058df8de7e908f05d2ea52d6acbf3
|
|
| MD5 |
73ef8731306309a7e5ccb17c0c39353c
|
|
| BLAKE2b-256 |
47e006935fbb5d44246e0b32b6ea124c5bbec51092f1b62bbf4a1e6ddfbaae38
|
File details
Details for the file reasonsmith-0.2.0-py3-none-any.whl.
File metadata
- Download URL: reasonsmith-0.2.0-py3-none-any.whl
- Upload date:
- Size: 118.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b502f26f212054a811d21b8afba08227873a4d7f469eeb37d49456356637901
|
|
| MD5 |
9e63c3c29e04d62b664194d09f7fd297
|
|
| BLAKE2b-256 |
826028a0ef73e31e5b6866a796681bebedb84b8c61055d852b0b311e3d1d86cc
|