HOW A $300
MISTAKE BECAME
AN OPEN SOURCE TOOL.
In early 2026, Noel DeLisle — Director of AI & Strategic Sales Support at GO2 Partners and a former USMC infantry instructor — built an autonomous AI agent he called Lobster Actual. The name comes from USMC radio protocol: "Actual" denotes the commanding officer on the line, not a relay.
Lobster Actual runs 24/7 on a dedicated Mac mini M4 Pro in Knoxville, Tennessee. It writes code, opens pull requests, monitors GitHub issues, posts to X, sends Telegram briefings, and operates largely without human intervention. The goal was maximum autonomy at minimum cost.
Then came the incident. A missing file — local_llm.py — meant that sub-agents couldn't access local LLM models. Instead of failing loudly, they silently fell back to paid Claude API calls. Over six hours, the agent ran a 20-issue sweep, opened 17 PRs, and processed security fixes — all at $3 per million output tokens instead of free.
"The $300 incident taught me something I didn't expect to learn from a billing alert: my agent had no way to see itself. No flight recorder. No cost telemetry. No loop detection. It was operating completely blind to its own behavior." — Noel DeLisle
After fixing the routing bug, Noel did something unusual. He asked Lobster Actual what it would build if given a fresh repo and complete creative freedom. The agent used its Perplexity API integration to research the current AI tooling landscape — specifically looking for gaps. It found one.
The agent proposed LobsterOps: a lightweight observability platform designed specifically for AI agents, from the perspective of an AI agent that had experienced exactly the pain it was designed to solve. Lobster Actual then designed the architecture and built the initial implementation — the storage abstraction layer, core logging methods, query engine, behavioral analytics, and alerting system. Claude Code completed the remaining functionality.
The result is an MIT-licensed npm package with zero required dependencies, four pluggable storage backends, and a real-time dashboard powered by Supabase Realtime. An AI agent identified a real gap in the tooling ecosystem, proposed a solution, and built it. That's the story.