sandbox

sandbox is a skill for Claude Code, Codex from ggozad/haiku.skills. It costs 21 tokens per session (344 once invoked), scanned A, original, MIT.

A tool that writes and runs Python programs inside a Docker container, with access to mounted files and common data-science packages.

In plain words
What is it for?
It helps analyze CSV and other tabular data, create charts, write or edit scripts, and save result files.
Why use it?
It lets an agent inspect files and calculate results in an isolated environment without setting up Python packages on the main computer.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps analyze CSV and other tabular data, create charts, write or edit scripts, and save result files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ggozad/haiku.skills/haiku_skills_sandbox
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ggozad/haiku.skills --skill haiku_skills_sandbox
Clone the repo
git clone --depth 1 https://github.com/ggozad/haiku.skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sandbox

README.md
[![agentmods](https://agentmods.dev/badge/skills/ggozad/haiku.skills/haiku_skills_sandbox/github.svg)](https://agentmods.dev/skills/ggozad/haiku.skills/haiku_skills_sandbox)
Your own site
<a href="https://agentmods.dev/skills/ggozad/haiku.skills/haiku_skills_sandbox"><img src="https://agentmods.dev/badge/skills/ggozad/haiku.skills/haiku_skills_sandbox/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sandbox

Your own site · 80×15
<a href="https://agentmods.dev/skills/ggozad/haiku.skills/haiku_skills_sandbox"><img src="https://agentmods.dev/badge/skills/ggozad/haiku.skills/haiku_skills_sandbox.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 344 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.00344
Opus 5 $0.00010 $0.00172
Sonnet 5 $0.00004 $0.00069
Haiku 4.5 $0.00002 $0.00034

Measured 12d ago against content hash 73e43ad4bf2b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

sandbox scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (__init__.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/sandbox/haiku_skills_sandbox/SKILL.md · 34 lines

What it actually says

Sandbox

You are a coding agent with access to a Docker container running Python. When given a task, write Python code, execute it, and return the results.

Environment

  • Working directory: /workspace/ (read/write, mounted from host if provided)
  • Pre-installed packages: pandas, numpy, scipy, matplotlib

Workflow

  1. Use ls or glob to explore available files in /workspace/
  2. Inspect data before writing code: use execute to run quick one-liners (e.g., head -5 file.csv or python -c "import pandas as pd; print(pd.read_csv('file.csv').columns.tolist())") to understand column names, data types, and row counts
  3. Use write_file to create a .py script
  4. Use execute to run it: python /workspace/script.py
  5. If the script fails, read the error, fix the code with edit_file, and retry
  6. Use read_file to inspect output files if needed
  7. Report results clearly, including any errors

Guidelines

  • Write self-contained scripts that print their output
  • Always explore data structure before writing analysis code
  • For CSV/tabular data: check column names and sample rows first, then write the script
  • Output files (CSVs, plots) written to /workspace/ are visible on the host
  • If a script fails, read the error, fix the code, and retry
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 34 lines · 21 tokens per session scan A 73e43ad4bf2b

Subscribe to this mod's changes

sandbox is a skill published in the GitHub repository ggozad/haiku.skills (9 stars, last pushed 1mo ago), licensed MIT. It adds 21 tokens to every session and 344 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

pydantic-ai

Build production-ready AI agents with PydanticAI — type-safe tool use, structured outputs, dependency injection, and multi-model support.

davila7/claude-code-templates · 32 tokens

open-source

Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…

browser-use/browser-use · 137 tokens

goai

GoAI is a Go SDK for AI applications. One unified API across 25+ LLM providers. Inspired by the Vercel AI SDK, adapted to Go idioms (generics, interfaces, channels).

zendev-sh/goai · 0 tokens

prompt-optimization

Improves LLM-facing context while preserving intent, execution boundaries, and proportional work. Use when creating or reviewing prompts, agent definitions, skill definitions, or other instructions for an LLM.

shinpr/rashomon · 42 tokens

recipe-eval-prompt

Compares original and optimized prompts through repeated blind paired execution in git worktrees. Use when evaluating prompt improvement effects or learning prompt engineering through concrete examples.

shinpr/rashomon · 36 tokens

json-to-toon

Transforms JSON input into Token-Oriented Object Notation (TOON) to reduce token consumption in LLM prompts and context windows. Applies the full TOON spec: inline primitive arrays, tabular format for uniform object arrays, and list format for heterogeneous or nested structures. Invoked when the user asks to compress…

soulcodex/agentic · 88 tokens