open, interoperable sandbox platform for agents and humans 📦 ✨ pocketenv.io
claude-code atproto sandbox openclaw agent
at main 29 lines 720 B view raw
1import sandboxes from "./sandboxes"; 2import secrets from "./secrets"; 3import snapshots from "./snapshots"; 4import users from "./users"; 5import variables from "./variables"; 6import volumes from "./volumes"; 7import sandboxSecrets from "./sandbox-secrets"; 8import sandboxVariables from "./sandbox-variables"; 9import sandboxVolumes from "./sandbox-volumes"; 10import files from "./files"; 11import sandboxFiles from "./sandbox-files"; 12import tailscaleAuthKeys from "./tailscale-auth-keys"; 13import sshKeys from "./ssh-keys"; 14 15export default { 16 sandboxes, 17 secrets, 18 snapshots, 19 users, 20 variables, 21 volumes, 22 sandboxSecrets, 23 sandboxVariables, 24 sandboxVolumes, 25 files, 26 sandboxFiles, 27 tailscaleAuthKeys, 28 sshKeys, 29};