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.
npx agentmods add instructions/vndee/llm-sandbox/copilot-instructionsgit clone --depth 1 https://github.com/vndee/llm-sandboxWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02205 | $0.02205 |
| Opus 5 | $0.01103 | $0.01103 |
| Sonnet 5 | $0.00441 | $0.00441 |
| Haiku 4.5 | $0.00220 | $0.00220 |
Grade A, and why
llm-sandbox copilot-instructions.md 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 349 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Copilot Instructions for LLM Sandbox
Project Overview
LLM Sandbox is a lightweight and portable sandbox environment designed to run Large Language Model (LLM) generated code in a safe and isolated mode. The project provides secure execution environments for AI-generated code with:
- Multi-language support: Python, JavaScript/Node.js, Java, C++, Go, R, and Ruby
- Flexible backends: Docker, Kubernetes, Podman, and Micromamba
- Security-first design: Isolated execution, security policies, resource limits, and network isolation
- LLM framework integration: Works with LangChain, LangGraph, LlamaIndex, OpenAI, and more
- Model Context Protocol (MCP): Server implementation for MCP clients like Claude Desktop
Code Style and Formatting
Python Code Standards
- Python version: Support Python 3.10, 3.11, 3.12, and 3.13
- Style guide: Follow PEP 8 with Ruff enforced rules (see
pyproject.toml) - Line length: Maximum 120 characters
- Type hints: Always use type hints for function signatures and class attributes
- Docstrings: Use Google-style docstrings for all public functions, classes, and modules
Example:
def execute_code(code: str, timeout: int = 30) -> ExecutionResult:
"""Execute code in the sandbox environment.
Args:
code: The code to execute
timeout: Maximum execution time in seconds
Returns:
ExecutionResult containing stdout, stderr, and exit code
Raises:
TimeoutError: If execution exceeds timeout
SecurityError: If code violates security policy
"""
pass
Code Organization
- Use Pydantic models for data structures and configuration
- Follow existing module structure:
llm_sandbox/core/: Core functionality and base classesllm_sandbox/language_handlers/: Language-specific handlersllm_sandbox/mcp_server/: MCP server implementation- Backend implementations:
docker.py,kubernetes.py,podman.py,micromamba.py
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.
- yesterday First seen · 349 lines · 2,205 tokens per session scan A 78b622304e4b
llm-sandbox copilot-instructions.md is an instructions file published in the GitHub repository vndee/llm-sandbox (1,115 stars, last pushed 8d ago), licensed MIT. It adds 2,205 tokens to every session, about $0.0110 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-30.
Other instructions, from other repositories
stitchfy CLAUDE.md
Instructions for devifyllc/stitchfy, covering claude.md, commands, architecture, pipeline flow — blueprint (shared) and pipeline flow — template generator (build:site).
patchloom AGENTS.md
Instructions for patchloom/patchloom, covering agents.md, project overview, dev commands, git hygiene and release prs (release-please).
Perigon.CLI copilot-instructions.md
Instructions for AterDev/Perigon.CLI, covering github copilot instructions, general guidelines, 技术栈, 项目结构与分层 and 代码风格约定.
MoleCode AGENTS.md
Instructions for AtomFlow-AI/MoleCode, covering agents.md — molecode, what this repo is, use the molecode skill, molecode-first rule and cli quick start.
ducklab AGENTS.md
Instructions for jrullan/ducklab, covering working in this repository as an agent and path 1: conventional (edit the tree directly).
kernel-lore-mcp CLAUDE.md
Claude Code instructions for mjbommar/kernel-lore-mcp, covering kernel-lore-mcp — project state, pointers, standards, original goal and non-negotiable product constraints.