Install
$ agentstack add skill-scoobydont-666-shared-claude-skills-container-sandbox Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Destructive filesystem operation.
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Container Sandbox — Isolated Execution Environment
Run potentially dangerous operations inside ephemeral Docker containers. The host filesystem is protected — containers get read-only project mounts with a writable overlay.
When to Use
- Destructive Ansible playbooks (
--force,--limittesting) - Untrusted scripts from external sources
- Operations that modify system state (
rm -rf, package installs) - Testing migrations or schema changes before applying to production
- Running code from unknown repos
Quick Start
Basic sandbox (Ubuntu + project files):
docker run --rm -it \
-v "$(pwd):/project:ro" \
-v /tmp/sandbox-work:/work \
-w /work \
ubuntu:24.04 \
bash -c "cp -r /project/* /work/ && bash"
Python sandbox (with project deps):
docker run --rm -it \
-v "$(pwd):/project:ro" \
-v /tmp/sandbox-work:/work \
-w /work \
python:3.12-slim \
bash -c "cp -r /project/* /work/ && pip install -r requirements.txt 2>/dev/null; bash"
GPU sandbox (for CUDA operations):
docker run --rm -it --gpus all \
-v "$(pwd):/project:ro" \
-v /tmp/sandbox-work:/work \
-w /work \
nvidia/cuda:13.1-devel-ubuntu24.04 \
bash
Ansible dry-run sandbox:
docker run --rm -it \
-v /opt/ai-project:/project:ro \
-v ~/.ssh:/root/.ssh:ro \
-w /work \
--network host \
willhallonline/ansible:latest \
bash -c "cp -r /project/* /work/ && ansible-playbook -i inventory playbook.yml --check --diff"
Extracting Results
After running operations in the sandbox:
# Copy results out of the sandbox work directory
docker cp :/work/results/ ./sandbox-results/
# Or use the /tmp/sandbox-work mount (persists after --rm if pre-created)
ls /tmp/sandbox-work/
Safety Rules
- Always mount project directories as
:ro(read-only) - Use
/tmp/sandbox-workor/workfor writable operations - Use
--rmto auto-cleanup containers after exit - Use
--network nonefor maximum isolation (no internet access) - Never mount
/or/homeas writable into a sandbox - GPU sandboxes (
--gpus all) still share the host GPU — use for testing, not isolation
Integration with Claude Code
When Claude needs to run something risky, instruct it to:
- Build the Docker command with appropriate mounts
- Execute the command via Bash tool
- Capture stdout/stderr from the container
- Extract any produced files from the work directory
- Clean up:
rm -rf /tmp/sandbox-work
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: scoobydont-666
- Source: scoobydont-666/shared-claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.