environment

Solid

Extend this sandbox's own environment (system packages, language toolchains, SDKs — e.g. Rust, Android, JDK, Go, Python) by proposing custom Dockerfile steps the owner approves. Use when a task needs a tool that isn't installed and a runtime install wouldn't survive, or when the user asks to add capabilities to the sandbox itself.

AI & Automation 22 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
45
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Sandbox environment (overlay Dockerfile) You run inside a container built from `ghcr.io/intentic/sandbox:stable`. Anything you install at runtime outside `/work` is lost when the container is recreated. To extend the environment permanently, propose custom Dockerfile steps — the owner reviews and approves them, then a rebuild recreates the sandbox (`/work` persists). ## Check what's already here first The image is not bare, and reaching for an install before looking wastes a lot of a turn. Baked in every profile: - **Toolchain** — git (+ git-lfs), tmux, zsh, make/g++, python3 with **pip and venv** (`python` works too), node 24 (which runs `.ts` files directly — `tsx` is a shim over it), pnpm/npm. - **Python libraries** — **PyYAML** and **Pillow** are baked, so `import yaml` and `from PIL import Image` work with no venv. They are the only two; anything else still needs pip inside a venv. - **First-party CLIs** — `intentic`, `iq`, `lsp`. - **Search & data** — ripgrep, `jq`, `yq` (YAML, for shell pipelines — in Python just `import yaml`), sqlite3, xmllint, file, tree. - **Network** — curl, wget, rsync, openssh, ss/ip, netstat/ifconfig, lsof, fuser, ping, traceroute, dig/host, nc, socat. - **Process & files** — ps/top, killall/pstree, strace, patch, less, nano/vi, diff, hexdump/xxd/column, unzip/zip, tar with gzip/xz/zstd/bzip2, sponge, envsubst, uuidgen, bc, dos2unix. The heavier features are FEATURE PACKS that ride the image profile: the standard sandbox image ...

Details

Author
intentic
Repository
intentic/intentic
Created
2 weeks ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

DevOps & Infrastructure Listed

dev-sandbox

Use when work should run inside a per-branch Docker dev sandbox - initiating one, checking state, attaching over ssh, executing commands or tests inside the Linux clone, refreshing it from origin, and tearing it down. Trigger on "run this in a sandbox", "spin up a sandbox", "sandbox status", "attach to the sandbox", "test this on Linux", "verify cross-platform", "run the suite in the container", working a second feature branch in parallel, or ANY time an in-sandbox result is about to be trusted - the origin-clone caveat here decides whether that result means anything.

2 Updated 3 weeks ago
petermcalister
AI & Automation Listed

sandbox-sdk

Build secure sandboxed code execution with the Cloudflare Sandbox SDK — code interpreters, CI, dev environments, untrusted code, preview URLs. Retrieval-first.

26 Updated today
nikolanovoselec
AI & Automation Listed

sandboxing-agentic-systems

Contain an agent that runs code or reads untrusted content, layer by layer. Covers OS-level filesystem and network isolation that also catches spawned subprocesses, an egress proxy that checks request provenance, treating tool outputs and fetched pages as prompt-injection vectors, and keeping credentials outside the sandbox behind a proxy. Use this whenever someone designs a sandbox for a coding or computer-use agent, asks how to safely let an agent run shell commands or browse, worries about prompt injection from tool results, needs to limit what an autonomous agent can reach or delete, or asks where an agent's credentials should live. Trigger on "sandbox the agent," "agent runs untrusted code," "prompt injection," "restrict network access," and similar. This is environment containment; deciding which actions need approval before they run is a separate concern (action gating).

1 Updated 4 weeks ago
Hoja-Solutions