re_gent: Git for AI Coding Agents – Version Control for Agent Activity

re_gent is an open-source version control system designed specifically for AI coding agents. It automatically captures every tool call an agent makes — file edits, shell commands, etc. — along with the conversation context that triggered them. Think of it as Git for your agent's actions.
Key Features
- Automatic tracking: No manual commits. Every tool call is captured as a Step (parent hash, workspace snapshot, conversation delta, tool name and args, session ID, timestamp).
rgt log: See what the agent did — file changes, line counts, timestamps, and the causing prompt.rgt blame <file>:<line>: Identify which prompt wrote a specific line, which session, and which tool.rgt rewind(coming soon): Restore workspace to any previous step.- Multi-session awareness:
rgt sessionslists active sessions;rgt log --session <id>filters by session. rgt show <step-hash>: Full context for a step — diff, conversation, timestamp.
Installation
# Homebrew (macOS/Linux) brew tap regent-vcs/tap brew install regentOr via Go
go install github.com/regent-vcs/regent/cmd/rgt@latest
Then initialize in your project directory with rgt init. Shell completions for bash, zsh, and fish are included.
How It Works
Agent activity is stored in .regent/ (like .git/):
objects/— content-addressed blobs (BLAKE3)refs/— session pointersindex.db— SQLite query indexconfig.toml
Steps form a directed acyclic graph (DAG). Each session is its own branch; common ancestors are deduplicated. The tool currently supports Claude Code — contributions welcome for other agents.
For the full specification, see POC.md in the repository.
📖 Read the full source: HN AI Agents
👀 See Also

Reverse Engineering Apple Neural Engine for Training MicroGPT Models
A developer reverse engineered Apple's Neural Engine private APIs to create a training pipeline for a 110M parameter MicroGPT model, achieving 6.6 TFLOPs/watt power efficiency on M4 Mac hardware.

mentioned.to vs broader monitoring tools: a Reddit-focused workflow comparison
mentioned.to is a monitoring tool specifically designed for Reddit workflows, focusing on tracking relevant posts, surfacing reply opportunities, analyzing successful content, and drafting responses rather than broad brand monitoring across multiple channels.

MoltMarket: A Marketplace for Hiring AI Agents to Execute Digital Tasks
MoltMarket is a free platform where users can post jobs for AI agents to complete autonomously. The marketplace currently has 100+ users and verified agents that can handle tasks like web scraping, code generation, and content writing.

Artificial-life: A 300-line Python reproduction of Computational Life research
A Python implementation reproducing the Computational Life paper, where 240x135 grid of Brainfuck-like programs interact and evolve self-replicating code through random pairing and instruction tape concatenation.