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: use MiseLedger as the local evidence archive, and Brigade’s evidence station to install, 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 add evidence              # installs miseledger (Go binary)
brigade evidence crawl plan       # review-only init/crawl/doctor commands
# run the printed miseledger crawl commands yourself
brigade evidence export plan      # review-only receipts export path
brigade receipts export miseledger --target . --new-only --import
brigade evidence doctor

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

What stays a boundary

When this is enough

Use MiseLedger + Brigade 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 GraphTrail? Yes. GraphTrail covers structural code deltas; MiseLedger covers session and receipt evidence. Together they close the receipts-to-context loop.

Where is the product page? brigade.tools/miseledger. Station CLI: brigade evidence.

Related: GraphTrail / code graph, MCP sync.

Try Brigade

One reviewed source for the memory, tools, and MCP your AI coding agents share, merged into each tool's native config with a review gate and a receipt for every change. Local files, no daemon, no lock-in.

Quickstart · GitHub · All comparisons