Decision Passport: An Audit Layer for AI Agent Execution Governance

What Decision Passport Addresses
The recent Claude Code source leak discussion on r/LocalLLaMA highlights a critical architectural gap in AI agent systems. As agents gain capabilities like tool access, browser access, memory handling, background execution, and multi-step workflows, the governance question shifts from "can the agent do useful work?" to accountability questions.
The Governance Gap
The source identifies key questions that current logging and observability tools don't fully address:
- Who authorized this action?
- Under what policy?
- What execution context existed at the time?
- What changed?
- What was blocked?
- Whether that record can still be trusted later outside the original runtime
The author notes: "Logs help you inspect. Proof helps you defend."
Decision Passport Features
The tool provides:
- Append-only execution records
- Portable proof bundles
- Offline verification
- Tamper-evident chains
- Verifier-first design
The author clarifies this doesn't "solve" sandbox escape or agent safety by itself, but makes the governance gap more visible and provides stronger answers to what happened, in what order, under what permission, with what evidence, and whether anyone can verify it later without trusting the original platform.
Available Repositories
The project is open source with two main components:
- Core:
https://github.com/brigalss-a/decision-passport-core - OpenClaw Lite:
https://github.com/brigalss-a/decision-passport-openclaw-lite
Discussion Points
The source raises questions for the community to consider:
- Is this just better observability?
- A missing audit/proof layer?
- Overengineering for most agent workflows?
📖 Read the full source: r/LocalLLaMA
👀 See Also

MCP Lets Claude Analyze Google Search Console Data Automatically
A new free MCP connects Claude directly to Google Search Console, enabling natural language queries on search performance data like queries, pages, clicks, and CTR without manual CSV exports.

2026 Hermes Agent Alternatives Roundup: Self-Hosted Options from OpenClaw to memU Bot
A developer who has been running Hermes since launch tested every self-hosted and managed alternative after the ClawHub security mess. Key findings: OpenClaw (370k stars) but 9 CVEs in 4 days and ~20% malicious packages; TrustClaw rebuilt with OAuth/sandboxing; nanobot at ~4K lines Python with MCP; memU Bot with unique structured memory. Managed options include Perplexity Computer (19 models, $200/mo), Claude Cowork (opens real Mac apps), and KimiClaw (40GB RAG, locked to K2.5, Chinese data law). Full roundup at source.

Open-Source Ralph Loop Toolkit for Claude Code: Pickle Rick and Mr. Meeseeks Agents
An open-source extension for Claude Code implements the Ralph Loop technique with two autonomous agents: Pickle Rick for PRD-driven development and Mr. Meeseeks for code review. Both use tmux with live dashboards and macOS notifications.

OpenClaw Implements Agent History Compression to Reduce Context Usage
OpenClaw now compresses agent history by replacing completed subtask logs with structured summaries, reducing ~1M tokens to ~30K. The system uses a 4-pass scanner to identify task lifecycles and generates masked summaries that maintain agent compatibility.