Build a multi-agent research pipeline where every AI agent must pass a trust verification before participating, and every action is recorded in a hash-chained audit trail that is independently verifiable.
- Trust Gating — Agents are scored (0-100) and tiered (gold/silver/bronze). Only agents meeting the threshold can participate
- Cryptographic Audit Trail — Every agent action is recorded with SHA-256 hashes chaining to the previous entry. If any record is tampered with, all subsequent hashes break
- Multi-Agent Pipeline — Researcher → Analyst → Writer, each building on the previous output
- Visual Dashboard — See which agents pass, which get blocked, and verify the entire audit chain
- Zero External Dependencies — Fully self-contained. Only requires
openaiandstreamlit
┌─────────────────────┐
│ Trust Registry │
│ (verify agents) │
└──┬───────┬───────┬──┘
│ │ │
┌─────▼──┐ ┌──▼────┐ ┌▼────────┐
│Research │ │Analyst│ │ Writer │
│ ✅ 75 │ │ ✅ 60 │ │ 🚫 5 │
└────┬───┘ └──┬────┘ └─────────┘
│ │
▼ ▼
┌──────────────────────┐
│ Research Pipeline │
│ (trusted only) │
└──────────┬───────────┘
│
▼
┌──────────────────────┐
│ Hash-Chained Audit │
│ (tamper-evident) │
└──────────────────────┘
- Trust Check — Each agent's score is verified against the minimum threshold
- Gate — Agents below the threshold are blocked from the pipeline
- Execute — Verified agents run in sequence, each building on the previous output
- Audit — Every action (including trust checks) is recorded in a hash chain
- Python 3.9+
- OpenAI API key
pip install -r requirements.txtexport OPENAI_API_KEY=your-api-keystreamlit run trust_gated_agents.py- Paste your OpenAI API key in the sidebar
- Click Run Trust-Gated Pipeline — agents are pre-selected with an untrusted bot as Writer
- Watch: Researcher (75) and Analyst (60) pass, Untrusted Bot (5) gets blocked
Swap the Writer dropdown to "Report Writer (score 45)" to see all 3 pass.
The audit trail uses the same hash-chaining pattern as blockchain transaction logs:
[
{
"seq": 0,
"agent": "researcher-001",
"action": "trust_verification",
"hash": "a1b2c3...",
"prev_hash": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"seq": 1,
"agent": "researcher-001",
"action": "pipeline_step_1",
"hash": "d4e5f6...",
"prev_hash": "a1b2c3..."
}
]Each entry's hash is computed from: sequence + timestamp + agent + action + input_hash + output_hash + trust_score + prev_hash. Changing any field in any entry invalidates every subsequent hash.
The exported JSON is independently verifiable — no special tools needed, just SHA-256.
In multi-agent systems, two problems compound:
- Trust — How do you know which agents are reliable before giving them work?
- Accountability — After something goes wrong, how do you reconstruct what happened?
Trust gating solves #1 by checking credentials before execution. The audit trail solves #2 by creating a tamper-evident record that survives the agents' own execution — stored externally, not in the agent's own memory.
- Streamlit — Interactive UI with visual trust dashboard
- OpenAI — GPT-4o-mini for agent reasoning
- SHA-256 — Hash-chained audit trail (no external crypto dependencies)