Install
openclaw skills install thoughtproofEpistemic verification for AI agent outputs. Use ThoughtProof to verify AI reasoning, detect blind spots, and build consensus across multiple model families....
openclaw skills install thoughtproofMulti-agent verification protocol for AI decisions. Like a TÜV for AI reasoning.
ThoughtProof runs your question through multiple independent AI agents (different model families), then a critic layer identifies blind spots, and a synthesizer produces a consensus with confidence scores.
Pipeline: Normalize → Generate (3+ models) → Critique (adversarial) → Evaluate → Synthesize
pot-cli installed: npm install -g pot-clitp verify "Should we use microservices or monolith for our MVP?"
tp verify --context last "What about scaling considerations?"
tp deep "Is this investment thesis sound?"
pot-cli reads config from ~/.potrc.json:
{
"generators": [
{ "provider": "xai", "model": "grok-4-1-fast" },
{ "provider": "moonshot", "model": "kimi-k2.5" },
{ "provider": "anthropic", "model": "claude-sonnet-4-6" }
],
"critic": { "provider": "anthropic", "model": "claude-opus-4-6" },
"synthesizer": { "provider": "anthropic", "model": "claude-opus-4-6" }
}
Show current config: tp config
ThoughtProof enforces ≥3 different model families for generators. This is core to the protocol — no single provider can verify itself.
Each verification produces an Epistemic Block:
Blocks are stored locally as JSON and can be reviewed with tp list / tp show <n>.
| Command | Description |
|---|---|
tp verify <question> | Run full verification pipeline |
tp verify --context last | Chain from previous block |
tp deep <question> | Deep verify: multiple runs, rotated roles, meta-synthesis |
tp list | Show block history |
tp show <n> | Show a specific block |
tp config | Show current configuration |
| Tier | Agents | Time | Best For |
|---|---|---|---|
| Light | 3 | ~30s | Quick sanity checks |
| Standard | 5-7 | ~3min | Business decisions |
| Deep | 7-12 | ~5min | High-stakes, regulatory |
ThoughtProof is BYOK (Bring Your Own Key). Your API keys, your data, your models. Nothing routes through ThoughtProof servers. The skill is MIT-licensed; the consensus protocol is BSL-licensed.
references/block-format.md — Epistemic Block JSON schemareferences/consensus-protocol.md — How consensus is calculated