SandVault
Run Claude Code, OpenAI Codex, Google Gemini and shell commands safely in a sandboxed macOS user account
SandVault (sv) manages a limited user account to sandbox shell commands and AI agents, providing a lightweight alternative to application isolation using virtual machines.
Features
- AI ready - Includes Claude Code, OpenAI Codex, Google Gemini
- Fast context switching - No VM overhead; instant user switching
- Passwordless - switch accounts without a prompt (after setup)
- Shared workspace - joint access to
/Users/Shared/sv-$USER - Clean uninstall - Complete removal with
sv uninstall
Security Model
SandVault has limited access to your computer:
- Cannot access your home directory
- Runs with standard user privileges
- Cannot modify system files
- Has no access to mounted drives
- writable: /Users/Shared/sv-$USER -- only accessible by you & sandvault-$USER
- writable: /Users/sandvault-$USER -- sandvault's home directory
- readable: /usr, /bin, /etc, /opt -- system directories
- no access: /Users/* -- other user directories
- writable: /Volumes/Macintosh HD -- accessible as per file permissions
- no access: /Volumes/* -- cannot access mounted/remote/network drives
Installation
Install via Homebrew:
Install via git:
# Clone the repository git clone https://github.com/webcoyote/sandvault # Option 1: add the sandvault directory to your path export PATH="$PATH:/path/to/where/you/cloned/sandvault" # Option 2: add to your shell configuration for easy access echo >> ~/.zshrc 'alias sv="/path/to/where/you/cloned/sandvault/sv"' echo >> ~/.bashrc 'alias sv="/path/to/where/you/cloned/sandvault/sv"'
Quick Start
# Run Claude Code in the sandbox # shortcut: sv cl sv claude # Run OpenAI Codex in the sandbox # shortcut: sv co sv codex # Run Google Gemini in the sandbox # shortcut: sv g sv gemini # Run command shell in the sandbox # shortcut: sv s sv shell
Connect via SSH
The default mode for sandvault runs commands as a limited user (basically sudo -u sandbox-$USER COMMAND). Sandvault also configures the limited sandvault account so that you can run commands via SSH (basically ssh sandbox-$USER@$HOSTNAME), and everything works the same. Use the -s or --ssh option to use SSH mode with sv, or use tmux or screen (for users so inclined).
# Run using impersonation # sv COMMAND sv codex # Run using ssh # sv -s/--ssh COMMAND sv --ssh gemini
Advanced Commands
# Run shell command in sandvault and exit # Usage: # sv shell [PATH] -- [SHELL_COMMAND] # Example: sv shell /Users -- pwd # output: /Users # Run AI agent with optional arguments # Usage: # sv <agent> [PATH] [-- AGENT_ARGUMENTS] # Example: sv gemini -- --continue # Send input via stdin # Usage: # <producer> | sv shell [PATH] [-- SHELL_COMMAND] # Examples: echo "pwd ; exit" | sv shell /Users # output: /Users echo ABC | sv shell -- tr 'A-Z' 'a-z' # output: abc cat PROMPT.md | sv gemini
Maintenance Commands
# Build sandvault but do not run a command sv build sv b # Rebuild sandvault, including updating all file permissions and ACLs in the shared volume sv build --rebuild sv b -r # Uninstall sandvault (does not delete files in the shared volume) sv uninstall # Misc commands sv --version sv --help
Troubleshooting
If your sandbox is misbehaving you can fix it with a rebuild or uninstall/reinstall. They're both safe and will not delete files in the shared sandbox folder.
# Force rebuild sv --rebuild build # Uninstall then reinstall sv uninstall sv build
Custom Configuration
SandVault supports custom configuration; see ./guest/home/README.md.
Why SandVault?
After exploring Docker containers, Podman, sandbox-exec, and virtualization, I needed something that:
- Works natively on macOS without virtualization overhead
- Provides meaningful isolation without too much complexity
- Runs Claude Code with
--dangerously-skip-permissions - Runs OpenAI Codex with
--dangerously-bypass-approvals-and-sandbox - Runs Google Gemini with
--yolo - Maintains a clean separation between trusted and untrusted code
SandVault uses macOS's Unix heritage and user account system to create a simple but effective sandbox.
Alternatives
- ClodPod runs Claude Code inside a macOS virtual machine.
- Chamber is a proof-of-concept app for running Claude Code inside a macOS virtual machine.
- Claude Code Sandbox runs Claude Code in a Docker container (Linux)
License
Apache License, Version 2.0
SandVault Copyright © 2026 Patrick Wyatt
See LICENSE.md for details.
Contributors
We welcome contributions and bug reports.
See CONTRIBUTORS.md for the list of contributors to this project.
Thanks to
This project builds on the great works of other open-source authors:
- Claude - AI coding assistant
- Codex - AI coding assistant
- Homebrew: 🍺 The missing package manager for macOS (or Linux)
- Shellcheck: finds bugs in your shell scripts
- uv: An extremely fast Python package and project manager, written in Rust
- Claude Code Hooks Mastery: Quickly master how to use Claude Code hooks to add deterministic (or non-deterministic) control over Claude Code's behavior
- StatusLine: project status information for Claude Code
... as well as GNU, BSD, Linux, Git, Sqlite, Node, Python, netcat, jq, and more. "We stand upon the shoulders of giants."