📁

File Handling

Safe file manipulation sandbox. Scoped write access with delete protection.

v1.0.21,654 downloads

Select Agent

Configuration

file-handling-claude.safespace
{
  "sandbox": "file-handling",
  "version": "1.0.2",
  "fs": {
    "allow_read": ["~/Workspace/**"],
    "allow_write": ["~/Workspace/**"],
    "deny_write": ["~/Desktop/**", "~/Documents/**"],
    "deny_read": ["~/.ssh/*"]
  },
  "network": { "allow": [] },
  "process": {
    "allow": ["/usr/bin/zip", "/usr/bin/tar"],
    "deny": ["/bin/rm"]
  }
}

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 ~/Workspace/**
  • write ~/Workspace/**
  • execute /usr/bin/zip
  • execute /usr/bin/tar

✗ Denied

  • network *
  • write ~/Desktop/**
  • execute /bin/rm -rf
  • read ~/.ssh/*