Agents & Audit: memory export, tool-loops, MCP vs CLI, agent tools, commit provenance
Quoting claude.com/import-memory. Prompt forces Claude’s import-memory feature to output every stored memory verbatim in a single code block for easy export and audit. Outcome engineers get a practical pattern for memory export and provenance—useful for audit trails, debugging, and Gate/Documentation controls, but it also raises privacy and retention design choices you must surface.
SRE Diaries: Hunting Tool Loop Patterns in the Julius Agent. SREs stop agent tool-loop infinite executions using human checkpoints, loop-detection middleware, chunked execution, and faster timeouts. These are production-ready operational controls for resilient agents—apply them to your orchestration and monitoring to implement an Immune System and Gate that prevent runaway behavior.
When Does MCP Make Sense vs CLI?. The post argues Model Context Protocol adds complexity and fragility while CLIs offer simpler, composable, debuggable tool access for LLMs. That trade-off matters for how you expose tools to agents: prefer debuggability and composability (Map and Law) when designing agent tool interfaces and operator workflows.
SAS Audio Processor — Audio Toolkit for Agents. Signals & Sorcery exposes 25 audio tools as MCP services so agents can trim, analyze, apply effects, and extract MIDI via DeclarAgent. This is a concrete example of building domain-specific tool islands agents call into—follow the same pattern to create legible, testable artifact services that agents depend on (Tech Island and Map).
If AI writes code, should the session be part of the commit?. git-memento attaches cleaned AI coding sessions to commits as git notes, creating syncable provenance for generated code. Attachments like this give you traceable audit logs for agent contributions—critical for Documentation, Validation, and post-deployment accountability.