MartinLoop: Open-Source Control Plane for AI Coding Agents with Budget Stops and Audit Trails
MartinLoop is an open-source control plane for AI coding agents that addresses common failure modes: retrying the same broken approach, passing tasks without proof, burning tokens quietly, making unauditable changes, and failing in ways that are hard to classify. It provides hard budget stops, JSONL run records, inspectable audit trails, failure classification, test-verified completion, and reproducible benchmark runs.
Key features include:
- Hard budget stops — cap spending on agent runs automatically.
- JSONL run records — every step logged in a structured format.
- Inspectable audit trails — any engineer can review the agent's actions.
- Failure classification — categorize why an agent failed (e.g., stuck in loop, wrong approach).
- Test-verified completion — agents must pass defined tests before reporting done.
- Reproducible benchmark runs — standardize evaluation across agents.
The project is positioned as CI/CD for autonomous coding agents. The core is open source on GitHub: https://github.com/Keesan12/Martin-Loop. A demo is available at https://martinloop.com/demo.
Useful for teams using Claude Code, Codex, Cursor, Devin-style agents, or custom agent loops who need governance, budgets, evals, and auditability over their AI coding workflows.
📖 Read the full source: r/ClaudeAI
👀 See Also

cstat: A Native Rust Status Line for Claude Code with 2ms Performance
cstat is a native Rust binary that replaces claude-hud's 62ms status line with a 2ms implementation by eliminating 24 subprocess spawns per invocation. It displays model info, rate limits, git status, context window usage, active tools, subagents, and task progress.

Ollama Update Adds OpenClaw Support for Kimi k2.5 Cloud Model
Ollama has released an update that integrates OpenClaw support for cloud models, including free access to the Kimi k2.5 model with web search functionality, running on NVIDIA data centers.

Cloudflare's AI Platform: Unified Inference Layer for AI Agents
Cloudflare's AI Platform provides a single API to access 70+ models across 12+ providers, including multimodal support for image, video, and speech models. It enables switching between models with one-line code changes and offers centralized cost monitoring with custom metadata.

Mnemos: an MCP server for persistent Claude Code memory
Mnemos is an open-source MCP server that gives Claude Code persistent memory across sessions, recording corrections as structured patterns and pushing ranked context at startup. Single 15 MB Go binary, no Docker or vector DB needed.