Search Brigade

Search Brigade pages and docs.

[ COMPARISON ]

Local evidence ledger for agent work

You want searchable proof of what agents did, without shipping session logs to a SaaS analytics product.

Updated July 9, 2026 · Escoffier Labs

Short answer: Brigade ships a built-in evidence ledger, formerly the standalone MiseLedger: the local evidence archive, with Brigade’s evidence commands to plan crawls and export verify/run receipts into it. Crawl and import stay operator-run at a process boundary; Brigade does not silently upload logs.

The problem

Agent work leaves scraps: session transcripts, verify receipts, git commits, chat exports. Grepping folders does not scale. Hosted “agent analytics” products require trust and network access you may not want for private work.

The path

brigade setup                     # installs the evidence engine, digest-verified
brigade evidence crawl plan       # review-only: see the init/crawl/doctor commands first
brigade evidence crawl sessions   # crawl harness session logs into the ledger
brigade evidence search "auth timeout"
brigade receipts export miseledger --target . --new-only --import
brigade evidence doctor

Pipeline in plain language: crawl local sources → adapter JSONL → the Evidence SQLite ledger + FTS → evidence briefs on the next Brigade run.

What stays a boundary

When this is enough

Use Brigade’s evidence ledger when you want local FTS over agent history and receipt-linked evidence on future runs. Use a hosted observability product when you need multi-tenant dashboards, SSO, or team-wide cloud retention policies.

Questions

Is this the same as memory handoffs? No. Handoffs are durable notes you promote into memory cards. The evidence ledger is searchable history and receipts, treated as untrusted context rather than instructions.

Does it work with the code graph? Yes. Code intelligence covers structural code deltas; Evidence covers session and receipt evidence. Together they close the receipts-to-context loop.

Where is the capability page? brigade.tools/evidence-memory. CLI: brigade evidence.

Related: Code intelligence / code graph, MCP sync.

Try Brigade

Brigade keeps coding-agent work trackable across tools, repos, and sessions: tasks, receipts, shared memory, and synced tools. Local files, no Brigade daemon.

Quickstart · GitHub · All comparisons