Git for AI Agents Version control for AI agent activity. Track what your agent did, which prompt wrote each line, and rewind when things break.
Demo
Every tool call is automatically captured. No manual commits needed.
Quick Start
# Install via Homebrew (macOS/Linux) brew tap regent-vcs/tap brew install regent # Or via Go go install github.com/regent-vcs/regent/cmd/rgt@latest # Initialize in your project cd your-project rgt init # Work with Claude Code normally (every tool call is tracked) # See what happened rgt log rgt blame src/file.go:42
That's it. Your agent activity is now auditable.
What You Get
See what your agent actually did
... continue reading