%% AgenticFunding — platform architecture (source of truth for the /dev diagram).
%% GitHub renders this natively in markdown; the site ships a hand-tuned inline SVG
%% derived from it (vouch-frontend-next/app/dev/route.ts) so the page stays
%% dependency-free and theme-aware. Keep the two in sync when the architecture changes.
flowchart LR
subgraph INPUTS
A["Borrower answers
& documents"]
B["Public registries
(company · regulator · LEI · sanctions)"]
C["Consented bank data
(open banking)"]
end
subgraph AGENT["THE AGENT — AgenticFunder"]
G["GATHER
case checklist engine · borrower portal · email front-door"]
V["VERIFY
registry adapters · deterministic document checks (local-only)"]
H["CHASE
due-logic scheduler · templated emails · reply-to-case loop"]
P["ATTEST & PACKAGE
declarations · truth statement · readiness evaluation"]
G --> V --> H --> P
end
A --> G
B --> V
C --> V
P --> D["DEAL PACKAGE (final output)
PDF — human underwriters
JSON — funder systems (the open standard)"]
D --> F["FUNDER
deterministic gates + human underwriting decide"]