📊
Data Processing
Isolated environment for data transformation. Write access to output directory only.
v1.1.0•1,923 downloads
Select Agent
Configuration
data-processing-claude.safespace
{
"sandbox": "data-processing",
"version": "1.1.0",
"fs": {
"allow_read": ["~/Data/input/**"],
"allow_write": ["~/Data/output/**"],
"deny_read": ["~/.ssh/*", "~/.env*"]
},
"network": { "allow": [] },
"process": {
"allow": ["/usr/bin/python3", "/usr/bin/sqlite3"],
"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 ~/Data/input/**
- write ~/Data/output/**
- execute /usr/bin/python3
- execute /usr/bin/sqlite3
✗ Denied
- network *
- write ~/Documents/**
- read ~/.ssh/*
- execute /bin/rm -rf