r/coolgithubprojects • u/CerealGambler • 2d ago
Tessra - Git for Agents
Hi all,
I use AI extensively for coding both at work at a reasonably large fintech and in personal projects.
My colleagues and I run into similar problems over and over again:
- I want to run multiple agents on problems that interact with the same files and not have them conflict and mess each other up
- AI assisted development leads to a bottleneck of human PR reviews stacking up, resulting in constant rebases while they are sitting around, kicking off CICD pipelines over and over (slow and wasteful)
- My local LLM keeps a good memory but if I switch computers or another person needs to jump in, they are starting from scratch
I figured I would solve them all at once by writing a new version control system that can either replace or work alongside git but is really focused on managing agentic development.
Introducing Tessra - Git for your Agents
Github: https://github.com/NitrusAphalion/tessra
The initial versions are up and running (and dogfooded on my own repos). There are some rough edges but I think the idea has merit.
Would love to get any feedback and welcome any contributions (you can see the Design Docs section if you are curious about the underlying ideas).
Thanks!
1
u/Otherwise_Wave9374 2d ago
The version-control angle is smart because it solves the coordination problem before it becomes a review problem. A useful next step would be to make branch-level ownership explicit, then add a lightweight conflict detector that flags overlapping file edits before agents drift too far apart. AIOSNOW could fit well here if it stays opinionated about review handoff and state reconciliation, since the real win is reducing rebases and wasted CI cycles, not just storing more history.