ironcurtain sandbox.instructions.md

ironcurtain sandbox.instructions.md is an instructions file for GitHub Copilot from provos/ironcurtain. It costs 450 tokens per session, scanned A, original, Apache-2.0.

A set of instructions for reviewing the sandbox that controls how an agent safely calls external tools. It describes the required communication path, isolated relay processes, credential separation, and related checks.

In plain words
What is it for?
Use it when implementing or reviewing sandbox tool communication, MCP relay processes, per-sandbox registration names, environment settings, and timeout behaviour.
Why use it?
It helps reviewers catch changes that could bypass the sandbox's security controls. The rules keep tool calls within the policy system and prevent credentials or registrations from crossing sandbox boundaries.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot chat mode or prompt.

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 instructions/provos/ironcurtain/sandbox
Clone the repo
git clone --depth 1 https://github.com/provos/ironcurtain

Made for: GitHub Copilot.

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 ironcurtain sandbox.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/provos/ironcurtain/sandbox.svg)](https://agentmods.dev/instructions/provos/ironcurtain/sandbox)
Your own site
<a href="https://agentmods.dev/instructions/provos/ironcurtain/sandbox"><img src="https://agentmods.dev/badge/instructions/provos/ironcurtain/sandbox.svg" alt="Measured on agentmods" height="20"></a>
Per session 450 This file is loaded in full into every session.
When invoked 450 The same file — it is already loaded in full.
Security scan A 0 findings. 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.1 $0.00450 $0.00450
Opus 5 $0.00225 $0.00225
Sonnet 5 $0.00090 $0.00090
Haiku 4.5 $0.00045 $0.00045

Measured 6d ago against content hash 92b71de1c341, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ironcurtain sandbox.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 6d ago.

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.

.github/instructions/sandbox.instructions.md · 19 lines

How it starts

The opening of the file, as written. The whole thing — 19 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sandbox Review Rules

The sandbox registers a custom UTCP communication protocol (ironcurtain-protocol.ts) that routes tool calls in-process to the ToolCallCoordinator. It is the integration point between the agent's V8 isolate and the security boundary.

Mandatory Checks

  • The sandbox MUST route tool calls through the ToolCallCoordinator via the custom IronCurtain UTCP protocol (ironcurtain-protocol.ts). Never register real MCP servers directly with UTCP — that bypasses the entire policy engine.
  • MCP proxy subprocesses (mcp-proxy-server.ts) are pure relay transports spawned by MCPClientManager. Security is enforced upstream in the coordinator, not in the proxy. PROXY_COMMAND and PROXY_ARGS still exist for starting relay subprocesses.
  • Each backend MCP server gets its own relay subprocess via SERVER_FILTER env var. This ensures credential isolation (OAuth tokens, sandbox-runtime wrapping).
  • The per-sandbox unique manual name (e.g., tools_<uuid>) in the UTCP registration prevents cross-sandbox collision when multiple sandboxes run in the same process (daemon mode). Never hardcode the manual name.
  • The Protocol.request timeout monkey-patch must execute before CodeModeUtcpClient.create(). Moving it later leaves client instances with the wrong timeout.
  • Tool functions inside the sandbox are synchronous. Do not add await to sandbox tool calls.
  • @utcp/mcp must be imported (side-effect import) to register the MCP call template type. Removing this import breaks MCP functionality.
  • Strip internal fields at the sandbox boundary: when returning coordinator responses to the V8 isolate (or any untrusted execution context), explicitly filter to the public contract ({ content, isError }). Do not rely on a specific transport's serialization behavior (e.g., the MCP SDK dropping unknown keys during stdio framing) to keep internal fields out — a new transport may not inherit that behavior. Internal-only fields like _policyDecision must never reach code running inside the isolate, where they leak policy-rule names and reasons to untrusted LLM-generated code.

Read the full file on GitHub · 19 lines

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. 6d ago First seen · 19 lines · 450 tokens per session scan A 92b71de1c341

Subscribe to this mod's changes

ironcurtain sandbox.instructions.md is an instructions file published in the GitHub repository provos/ironcurtain (600 stars, last pushed 2d ago), licensed Apache-2.0. It adds 450 tokens to every session, about $0.0022 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.

Related

Other instructions, from other repositories

agentos CLAUDE.md

Claude Code instructions for rivet-dev/agentos, covering agentos, boundaries, security model, sqlite schema ownership and runtime and registry.

rivet-dev/agentos · 4,057 tokens

agent-sandbox AGENTS.md

AGENTS.md instructions for kubernetes-sigs/agent-sandbox, covering agents.md, project summary, repository layout, agent skills and build, test, lint.

kubernetes-sigs/agent-sandbox · 4,327 tokens

agent-sandbox copilot-instructions.md

Copilot instructions for kubernetes-sigs/agent-sandbox: Project Context & Architecture: Refer to AGENTS.md for full project background, module layout, toolchain versions, and core conventions.

kubernetes-sigs/agent-sandbox · 293 tokens

mcp-server-starrocks CLAUDE.md

Claude Code instructions for StarRocks/mcp-server-starrocks, covering claude.md, project overview, development commands, run the server directly for testing and run with test mode to verify table overview functionality.

StarRocks/mcp-server-starrocks · 907 tokens

after-effects-mcp AGENTS.md

AGENTS.md instructions for JUNKDOGE-JOE/after-effects-mcp, covering repository development and delivery rules, 0.0 read the current architecture direction first, 0. user authorization is the scope boundary, 1. measure outcomes, not activity and 2. prioritize by dependency and user value.

JUNKDOGE-JOE/after-effects-mcp · 6,738 tokens

Symbiont AGENTS.md

AGENTS.md instructions for ThirdKeyAI/Symbiont, covering symbiont — agent instructions, project structure, build and test, code style and commit guidelines.

ThirdKeyAI/Symbiont · 4,251 tokens