Skin in the Game
I have shipped over thirty extensions for Swamp in the last two months. Models for AWS, Cloudflare, GitHub, Reddit, Redmine, PostgreSQL. Vaults, datastores, workflows, reports. All of it generated by an AI agent. And nearly all of it would have been structurally wrong without a system designed to catch structural mistakes before they ship. The agent writes fast. It writes plausibly. It writes code that passes type checks and lint on the first try. What it does not do, reliably, is reason about the system-level consequences of its local decisions. It will generate a paginator that works for 50 results and silently degrades at 50,000. It will reuse an instance name across two methods because the name looks right in isolation. It will swallow a rate-limit header because the happy path never triggers the branch. ...