Unknown is a valid state
If identity or evidence is ambiguous, Verdict returns the questions that would unblock a decision instead of manufacturing a score.
SOLO BUILD BY ARIEL MAGALSO · LIVE PIPELINE — NOT A SCRIPT
//CASE STUDY / VERDICT
I built Verdict to answer a practical engineering question: how do you use an LLM inside a revenue workflow without letting a plausible sentence become an untraceable CRM write?
01 / THE PROBLEM
A prompt-only lead scorer can produce a confident number with no evidence, invent a company fact, or silently create a duplicate record. The dangerous part is not that the output is obviously wrong; it is that it looks ready to paste into a system of record.
If identity or evidence is ambiguous, Verdict returns the questions that would unblock a decision instead of manufacturing a score.
Facts carry a source URL, quote, and verification status. A reviewer can inspect the grounding without trusting a hidden chain of thought.
CRM changes and outreach drafts are reviewable diffs. The system can prepare work, but a person owns the consequential action.
02 / RESPONSIBILITY MAP
This boundary is the core design choice. It keeps probabilistic work useful while keeping business consequences inspectable and testable.
Engineering principle: the system never asks the model to make a decision that can be expressed as a rule and verified in a test.
03 / FAILURE ANALYSIS
“Fieldwork Group” resolves to multiple candidate companies. A naive system picks the most similar name and continues. Verdict stops at identity resolution and creates an explicit handoff for a human.
Name similarity looked high enough to keep going, but there was no exact email or domain match. Continuing would have attached research to the wrong account.
The naive design mixed a probabilistic match with downstream qualification. That made a weak identity look like strong evidence.
Only exact, confident matches may proceed. Possible matches propose no merge, emit no score, and return the candidate list plus unblocking questions.
The scenario is held in the guided demo and the evaluation suite. A future change cannot silently reintroduce the shortcut without a failing test.
04 / MEASURED PROOF
A labeled suite grades outcomes, qualification bands, false scores, false refusals, and injection leakage across development and held-out cases.
57/60 latest cases passed · claude-haiku-4-5-20251001
The same Postgres-backed audit trail exposes stage latency, completion, spend, stuck jobs, and duplicate-write prevention on an inspectable operations page.
The repository includes the API, worker, domain rules, tests, deterministic fallbacks, and a CI workflow so the demo is reproducible rather than a staged screen.
05 / OWNERSHIP
I independently designed and implemented the system boundary, application, evaluation suite, database model, operations view, interface, and deployment path.
//THE FIVE-MINUTE ROUTE
Run one decision, then inspect the engineering behind it.