Sub-Agent Sandboxing
SkillAI & modelsUse when delegated work needs runtime guardrails — constrain sub-agents with loop detection, circuit breakers, and escalating sandbox levels before accepting their output
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Sub-Agent Sandboxing skill
What this skill tells your AI
The instructions your AI receives, as published by drvoss/everything-copilot-cli in skills/copilot-exclusive/sub-agent-sandboxing/SKILL.md and read by ahel’s review.
Sub-Agent Sandboxing protects the main workflow from delegated tasks that spiral, retry indefinitely, or make changes in the wrong environment. It complements file-scope controls by adding runtime guardrails around how a sub-agent is allowed to execute.
Why This is Copilot-Exclusive
This pattern depends on Copilot CLI's delegated-agent workflow: separate task() execution lanes,
background lifecycle management, approval checkpoints, and the ability to route risky work into a
different checkout or environment before merging it back.
When to Use
- A delegated task could loop on the same tool call or retry path
- The agent may need multiple execution environments as risk increases
- Generated output must be validated before it can touch the main working tree
- A failing sub-agent should cool down without blocking the entire orchestrator
When NOT to Use
| Instead of sub-agent-sandboxing | Use |
|---|---|
| You only need a narrow writable path | scope-guard |
| You are designing tasks and contracts before execution starts | agentic-engineering |
| The task is read-only research | normal delegation or fleet-parallel |
Read-Only Reviewer Constraint
Reviewer sub-agents must not modify the working tree.
When a reviewer edits files during review:
- Uncommitted reviewer changes can be orphaned in the worktree
- A subsequent merge or rebase may silently include reviewer edits as if they were author changes
- The boundary between "authored work" and "review annotations" collapses
Enforce read-only mode in review briefs:
You are a reviewer. Your job is to evaluate the work, not change it.
Do not edit, create, or delete any files.
Return your findings as a report — do not apply fixes inline.
Orchestrator checks after a review pass:
# Confirm the reviewer left no staged or unstaged changes
git diff --name-only # no output expected
git diff --cached --name-only # no output expected
If git diff shows reviewer-authored changes:
- Stash or discard them
- Revise the brief with an explicit read-only constraint
- Re-run the review
When inline changes are genuinely needed (annotated suggestions):
- Have the reviewer write suggestions to a separate review-notes file
- Never commit those suggestions as if they were implementation changes
- Keep the review artifact on a separate branch or in a temp file
The Three Guardrails
These guardrails constrain one agent's execution. Fan-out width and nesting depth are a separate
boundary; verify them as described in
fleet-parallel.
1. Loop Detection
Track repetition at the orchestrator boundary, not inside the agent prompt.
| Signal | Threshold | Response |
|---|---|---|
| Same tool + same arguments repeats | 3 times in a short window | Warn and inspect the prompt |
| Same tool + same arguments repeats | 5 times in a short window | Stop the sub-agent and escalate |
| Same tool appears regardless of args | 30 total calls | Treat as suspicious |
| Same tool appears regardless of args | 50 total calls | Hard-stop the run |
The exact window can vary by workflow. The important part is having a warning threshold and a hard stop threshold before retries become invisible token burn.
2. LLM Circuit Breaker
Do not let a failing lane hammer the same provider indefinitely.
| Trigger | Threshold | Response |
|---|---|---|
| Timeout / empty result / validation failure cluster | 5 failures within 60 seconds | Open the breaker for that lane |
| Breaker re-entry after cooldown | 1 probe call | Close only if the probe succeeds |
| Repeated open states | 2+ cycles | Escalate to a human or reroute once |
Use a single bounded reroute only when the task is idempotent and policy allows a different model or provider lane. Otherwise, keep the breaker open and surface the blocker.
Always release the probe flag, even on a non-retriable error. A probe call that fails with a non-retriable error (auth rejection, malformed request, permanent 4xx) must still clear the in-flight probe flag before returning. If the flag is only cleared on success or on retriable failure, the breaker can get stuck permanently open — every subsequent cooldown expiry sees the flag still set and never issues a new probe, so the lane never has a chance to recover even after the underlying issue is fixed.
3. Sandbox Escalation
Increase isolation as risk increases:
| Level | Environment | Use for |
|---|---|---|
| L1 Local | Current checkout with strict validation | Small, low-risk delegated edits |
| L2 Container | Disposable Docker/devcontainer environment | Tooling drift, dependency installs, risky generation |
| L3 Remote sandbox | Provisioned Kubernetes or equivalent isolated runtime | Untrusted tasks, high side-effect risk, destructive experiments |
If the safer environment is not available, stop and report that limitation rather than silently downgrading the isolation level.
An administrator may enforce a restrictive sandbox floor. Never try to lower or bypass that floor; if it excludes a required permission, report the failure explicitly. CLI v1.0.77 release notes document that this managed floor can be delivered through native macOS and Windows MDM settings.
CLI v1.0.79 documents allowDevToolAccess, enabled by default, so sandboxed builds can use
development-tool caches, config, registries, and installation locations without additional setup.
Set it to false for tighter isolation. The former allowDevToolCaches key is no longer read and
is silently ignored, so an existing false opt-out under that name reverts to the default (on).
The release notes do not define exact directories or access modes, so verify them in the installed
runtime. Because the default broadens the sandbox surface and can expose registry access, include
it in the supply-chain review described by
agent-supply-chain.
Who Owns This Sandbox?
Treat sandbox ownership as a renewable lease, not as a permanent fact inferred from who created the resource:
- Takeover and conditional claim are different operations. Claim only when there is no current owner or its lease has expired. Unconditional takeover can destroy a peer worker's live sandbox.
- Mark teardown in progress. A sandbox being destroyed is not a claim candidate; the marker closes the destroy/create race.
- Fail closed when ownership cannot be read. Do not hand an unverified sandbox to an agent. Even a newly created sandbox should be destroyed if its ownership cannot be registered.
- Renew independently of idle cleanup. If lease renewal shares the cleanup loop, disabling cleanup can silently expire ownership.
- Apply the same rule to worktrees and background sessions. When sessions can reuse them, verify ownership instead of assuming "I created it, so it is mine."
Workflow
1. Classify the delegated task
Before dispatch, write down:
- expected files or outputs
- validation step
- maximum acceptable side effects
- fallback if the run is stopped
2. Arm the guardrails
State the thresholds in the brief:
Loop policy:
- warn after 3 repeated identical tool calls
- stop after 5
- stop if one tool exceeds 50 calls total
Circuit breaker:
- open after 5 failed attempts in 60 seconds
- allow one probe after cooldown, otherwise keep the lane blocked
3. Choose the minimum safe sandbox
Use the lightest level that still makes rollback easy. If the task can damage the current checkout, move it to a worktree or higher-isolation environment first.
Treat credentials as part of the sandbox boundary, not as ambient defaults. Inside an OS sandbox,
git and gh authentication should be enabled only when genuinely needed, and on macOS keychain
access now defaults off for tighter isolation — re-enable it in /sandbox only for commands that
actually require it. This reinforces the same least-privilege rule as the rest of this skill:
start closed, then grant only the minimum extra access the delegated task needs.
4. Validate before accepting output
Even successful sandboxed runs are only candidates. Review:
- touched files
- dependency changes
- test/build result
- schema or format constraints
- secrets or credential leaks in logs
Path policy must be enforced on the resolved path
Apply allow and deny rules to each normalized real path, not to the submitted string. Check three
bypass vectors: a symlink from an allowed path into a denied path, ../ traversal, and a working
directory that is itself a symlink. Before accepting the run, resolve every changed path and verify
that none points outside the authorized worktree. Copilot's documented symlink enforcement has
been platform-specific, so verify Windows behavior separately rather than assuming parity.
Application-level path input validation is a different boundary; see
input-validation.
5. Escalate cleanly
When the guardrail trips, return a useful blocker:
BLOCKER: sub-agent stopped by loop detection after repeated identical tool calls.
Last safe state: sandbox output preserved in worktree X.
Next action: rewrite the brief or switch to a higher-isolation lane.
Relationship to Other Skills
scope-guardlimits where edits may happensub-agent-sandboxinglimits how delegated execution behaves over timeagentic-engineeringdefines the task contract before dispatchusing-git-worktreesprovides one practical isolation lane for L2/L3 style containment
Verification Checklist
- Repetition thresholds are defined before the task starts
- Breaker policy says when to stop retrying
- Sandbox level matches the real blast radius
- Output is validated before merge or apply
- The failure path reports a blocker instead of silently retrying forever
- Reviewer agents have explicit read-only constraints in their briefs
-
git diffis clean after any review pass
Tips
- Start with worktree isolation before reaching for heavier infrastructure
- Preserve the sandbox output so a stopped run is inspectable
- Separate "tool repeated because it is working" from "tool repeated because the agent is stuck"
- If one lane is unstable, keep the rest of the orchestration moving while that lane cools down
See Also
scope-guard— constrain writable scopeagentic-engineering— define explicit delegated task contractsfleet-parallel— coordinate multiple delegated lanes safelyusing-git-worktrees— isolate risky work in a separate checkoutorchestration/patterns/sub-agent-sandboxing— deeper orchestration pattern reference
Signals
- GitHub stars
- 46
- Forks
- 11
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
sub-agent-sandboxing- Source
- github.com/drvoss/everything-copilot-cli