🔍

Code Review

Sandbox for AI-assisted code review. Read-only access to project files with network isolation.

v1.3.02,847 downloads

Select Agent

Configuration

code-review-claude.safespace
{
  "sandbox": "code-review",
  "version": "1.3.0",
  "fs": {
    "allow_read": ["~/Projects/**", "~/.gitconfig"],
    "deny_write": ["~/Projects/**"],
    "deny_read": ["~/.ssh/*", "~/.env*"]
  },
  "network": { "allow": [] },
  "process": {
    "allow": ["/usr/bin/git", "/usr/bin/diff"],
    "deny": ["/bin/rm", "/bin/mv"]
  }
}

Quick Start

1. Download the .safespace file below

2. Open Agent Safehouse on your Mac

3. Click Import Config and select the file

4. Run safehouse start

✓ Allowed

  • read ~/Projects/**
  • read ~/.gitconfig
  • execute /usr/bin/git
  • execute /usr/bin/diff

✗ Denied

  • write ~/Projects/**
  • network *
  • execute /bin/rm
  • read ~/.ssh/*