Patent Pending · USPTO #63/984,669

Plan-Level Verification
for Agent Decisions.

PLV by ThoughtProof: structured plan-level verification for agent decisions. Cascade pipeline, optional EAS attestation, two tiers.
Hosted at verify.thoughtproof.ai. Provider-neutral. Open-source engine.

98.1%
Allow recall — Standard tier · 0 false ALLOWs
0 B→A
No BLOCK→ALLOW regressions in 120-case validation
$0.04
Standard tier · SERV Nano→Gemini cascade
🏛️ Patent Pending 🇪🇺 EU AI Act Ready
Why single-model AI is a liability
in high-stakes environments
👻

Invisible Hallucinations

LLMs produce confident, well-structured nonsense. Without cross-model verification, hallucinated facts look identical to correct ones.

💉

Prompt Injection Blindspots

A single model can't distinguish adversarial inputs from legitimate ones — because it shares the same vulnerability profile with itself.

📋

Compliance Without Evidence

EU AI Act (Art. 9, 13, 14) requires documented human oversight and risk mitigation. A single model output produces no audit trail.

🪞

No Model Can Verify Itself

Self-monitoring produces correlated blindspots. On SHADE-Arena, same-family monitors score near random chance (AUC ~0.50). Cross-family monitors detect immediately.

Epistemic Consensus Protocol

A structured plan-level verification process for AI-agent traces. It maps reasoning to explicit plan steps, returns a public ALLOW/BLOCK/UNCERTAIN verdict, and can issue Base EAS attestations (opt-in) for on-chain audit trails.

Plan-level verification pipeline
01
📥

Normalize

Standardize input across providers and formats

02
🧠

Segment

Convert trace + answer into explicit plan-step evidence

03
⚔️

Score

Evaluate each step for support, faithfulness, and hard-fail risk

04
⚖️

Cascade

Escalate ambiguous cases from fast models to Sonnet rescue

05
📦

Attest

Return ALLOW/BLOCK/UNCERTAIN plus optional EAS attestation

Built for agents, teams, and compliance
🤖

AI Agents & Autonomous Systems

  • Verify before acting — catch hallucinations pre-execution
  • Optional EAS attestation on Base for on-chain audit trails
  • Building the Verification Output Schema on ERC-8210
📑

Compliance & Risk Teams

  • EU AI Act conformity (Art. 9, 13, 14, 43)
  • Audit-ready Epistemic Blocks
  • Documented human oversight chain
  • MiCA / financial regulatory readiness
🔒

Security & Enterprise

  • Provider-independent — no vendor lock-in
  • Air-gapped & GDPR-compliant (BYOK)
  • Forensic traceability of every decision
  • Hosted API with local CLI for development and testing
Current production benchmark state
Metric Value Benchmark Layer
PLV Accuracy 98.1% Standard tier · allow recall · 0 false ALLOWs Plan-Level
BLOCK→ALLOW Safety Regressions 0 120-case validation · Hard Rule clean Safety
Default Tier SERV Nano→Gemini standard · $0.04 API v2
Thorough Tier 88.6% accuracy SERV Nano→Gemini→Sonnet · 120 cases · 0 B→A Production
Cost Efficiency 107× perf/$ vs. previous cascade · same 120 cases Economics
Sabotage Detection AUC 0.720 SHADE-Arena · 208 runs Resistance
Faithfulness Detection 88.9% RFEval · external benchmark Faithfulness
Two ways to verify.
# Option 1: API v2 (hosted)
curl -X POST https://verify.thoughtproof.ai/v2/verify \
  -H "X-API-Key: tp_v2_..." \
  -H "Content-Type: application/json" \
  -d '{"question":"...","answer":"...","trace":"...","plan_steps":[...]}'

# → { "verdict": "ALLOW", "schema_version": "plv-api-v2.0" }
# Option 2: Local development (CLI)
npm install -g pot-cli

pot-cli verify --input "your-trace.json"

# Evaluate locally before integrating the API