Git permission layer that makes repositories safe for AI agents.
EVM keys, a git shim, and a .repobox/config.yml file that stands between your agents and your codebase. One config file. Per-agent permissions. Enforced before anything touches your repo.
# .repobox/config.yml — protect main
groups:
founders: [alice]
agents: [codex-bot]
rules:
- group: founders
allow: ["*"]
- group: agents
allow: ["feature/**"]
deny: ["main", ".repobox/*"]Drop this in your repo. Agents get feature branches, founders keep full control.
One command. Secure your first repo in under a minute.