Last month, I watched two AI coding agents work on our codebase simultaneously. One refactored authentication, another updated tests. Both passed CI individually, but the merge broke our entire auth flow.That's when I realized we need infrastructure designed for AI agents, not just better prompts.SAV (Shadow VCS) creates a staging area between AI agents and Git. Every change lands in .sav/commits/ first - never touches your working directory until you approve it.What makes it different:Risk scoring: Analyzes file patterns, secrets, binary size to flag dangerous changesPolicy engine: YAML rules can auto-approve docs, block anything touching auth/Audit trail: Every decision logged in SQLite for complianceConcurrency-safe: Multiple agents can work without stepping on each otherTry it:pip install savaisav initsav commit -m "AI refactor" src/*sav review sav approve The bigger picture:This is v0.1 of what I think will become essential infrastructure.The roadmap includes:- Agent orchestration with dependency graphs (so agents can coordinate complex changes)- Machine learning risk models trained on your approval patterns- Multi-repo coordination for microservicesWhy this matters now:AI agents are getting more autonomous. GitHub Copilot, Cursor, Devin-style tools are moving from "suggestions" to "autonomous PRs". We need VCS infrastructure that assumes machines are contributors, not just humans with better autocomplete.I'd love feedback from anyone dealing with AI-generated code at scale. The repo is MIT-licensed: https://github.com/AKIFQ/savComments URL: https://news.ycombinator.com/item?id=44553854Points: 1# Comments: 0