code-runner

A tool for running short Python programs for calculations, data analysis, charts, and quick scripts. It applies time, memory, import, and resource limits, but it is not a secure sandbox because the code may still read files on the computer.

In plain words
What is it for?
Use it to run snippets or script files, process CSV or JSON data, perform numerical analysis, and create visualizations.
Why use it?
It lets you test Python ideas without setting up a full project, while making the limits and security risks clear.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/fuyuxiang/echo-agent/code-runner
Any agent
npx skills add fuyuxiang/echo-agent --skill code-runner
Clone the repo
git clone --depth 1 https://github.com/fuyuxiang/echo-agent

Made for: Claude Code, Codex.

Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 554 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00024 $0.00554
Opus 5 $0.00012 $0.00277
Sonnet 5 $0.00005 $0.00111
Haiku 4.5 $0.00002 $0.00055

Measured 2d ago against content hash cb8434dbdf69, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-runner scanned grade A with 1 finding 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 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/safe_exec.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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- **Blocked patterns**: `os.system`, `subprocess`, `shutil.rmtree`, `__import__('os')`
skills/development/code-runner/SKILL.md · 72 lines

What it actually says

Code Runner

Safe Python code execution with resource limits and import restrictions.

Usage

python3 scripts/safe_exec.py "print(sum(range(100)))"
python3 scripts/safe_exec.py --file script.py
python3 scripts/safe_exec.py --timeout 10 "import time; time.sleep(5); print('done')"

Security

Best-effort guards (NOT a true sandbox — code can still read the filesystem):

  • Timeout: default 30 seconds, configurable
  • Memory limit: 256MB on Linux (via resource.setrlimit); not enforced on macOS
  • Blocked patterns: os.system, subprocess, shutil.rmtree, __import__('os')
  • AST check: scans code for dangerous import patterns before execution
  • Isolated working dir: runs in a fresh tmpdir, cleaned up after execution
  • Minimal env: only PATH/HOME/LANG passed to subprocess

Limitations: This is NOT a security sandbox. The child process can read arbitrary files on the host filesystem. For untrusted code, use a container-based executor (e.g., docker-manage skill) instead.

Allowed Libraries

Safe for use (common data/analysis):

  • math, statistics, decimal, fractions
  • json, csv, re, datetime, collections
  • pandas, numpy (if installed)
  • matplotlib (saves to file, no display)

Blocked Patterns

BLOCKED = [
    "os.system", "os.exec", "os.popen", "os.remove",
    "subprocess", "shutil.rmtree", "importlib",
    "__import__", "eval(", "exec(",
    "open('/etc", "open('/root",
]

Example Workflows

Data analysis:

import pandas as pd
df = pd.read_csv("/tmp/data.csv")
print(df.describe())
print(df.groupby("category")["amount"].sum())

Quick plot (saved to file):

import matplotlib.pyplot as plt
plt.plot([1,2,3,4], [1,4,2,3])
plt.savefig("/tmp/plot.png")
print("Plot saved to /tmp/plot.png")
Files

What ships with it

1 file 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. 2d ago First seen · 72 lines · 24 tokens per session scan A cb8434dbdf69

Subscribe to this mod's changes

code-runner is a skill published in the GitHub repository fuyuxiang/echo-agent (988 stars, last pushed 2d ago), licensed MIT. It adds 24 tokens to every session and 554 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories