Sandbox Setup

Set up and configure the agent-sandbox development environment

bananayong Updated

File contents

Agent Sandbox Setup

This skill helps configure the agent-sandbox Docker development environment.

Available Tools

The sandbox includes: bat, eza, fd, dust, procs, btm, xh, mcfly, fzf, zoxide, starship, micro, lazygit, gitui, tokei, yq, delta, gping, duf, ripgrep, jq, tmux, pre-commit, gitleaks, hadolint, shellcheck.

Common Tasks

Initialize pre-commit in a project

cp ~/.pre-commit-config.yaml.template .pre-commit-config.yaml
pre-commit install
pre-commit run --all-files

Check Docker access

docker version
docker compose version

Verify tool availability

for tool in claude codex gemini opencode bat eza fd dust procs btm xh mcfly fzf delta rg jq yq; do
  command -v "$tool" && echo "OK: $tool" || echo "MISSING: $tool"
done

bananayong/agent-sandbox/tree/main/configs/claude/skills/sandbox-setup commit 7fdbbe3559

Frequently asked questions

npx skillmds@latest add bananayong/sandbox-setup