Set Up a Sandbox of Claude Code with a Custom GitHub Policy#

This tutorial walks through the iterative policy workflow. You launch a sandbox, ask Claude Code to push code to GitHub, get blocked by the default network policy, diagnose the denial from two angles (the OpenShell Terminal on your laptop and the sandbox logs from inside), and then recommend, review, and apply a custom policy to fix it, all without recreating the sandbox.

After completing this tutorial, you will have:

  • A running sandbox with Claude Code that can push to a GitHub repository.

  • A custom network policy that grants GitHub access for a specific repository.

  • Experience with the policy iteration workflow: fail, diagnose, recommend, review, apply, verify.

Note

This tutorial shows example prompts and responses from Claude Code. The exact wording you see may differ between sessions. Use the examples as a guide for the type of interaction, not as expected output.

Prerequisites#

This tutorial requires the following:

  • Completed the Quickstart tutorial.

  • A GitHub personal access token (PAT) with repo scope. To create one, go to GitHub Settings > Developer settings > Personal access tokens, select Generate new token (classic), check the repo scope, and copy the token.

  • Your own Anthropic account for Claude Code. OpenShell provides the sandbox, not the agent. You need your own account to log in to Claude Code.

  • A public GitHub repository you own (used as the push target). A scratch or test repository works well. The tutorial pushes a small file to it. You can create a new repository with a README if you do not have one handy.

Important

This tutorial uses two terminals throughout:

  • Terminal 1 (sandbox): The terminal where you launch the sandbox. Claude Code runs here. You interact with the agent in this terminal.

  • Terminal 2 (laptop): A separate terminal on your laptop. You use this for openshell term, openshell policy set, and other CLI commands that manage the sandbox from the outside.

Each section below indicates which terminal to use.

Launch the Sandbox#

Terminal 1 (sandbox): Create a sandbox and start Claude Code. No custom policy is needed yet; the default policy is applied automatically.

Create a credential provider that injects your GitHub token into the sandbox automatically. The provider reads GITHUB_TOKEN from your host environment and sets it as an environment variable inside the sandbox:

$ GITHUB_TOKEN=<your-token>
$ openshell provider create --name my-github --type github --from-existing
$ openshell sandbox create --provider my-github --keep -- claude

Connect to a sandbox that is already running and set your GitHub token as an environment variable:

$ openshell sandbox connect <sandbox-name>
$ export GITHUB_TOKEN=<your-token>

The --keep flag keeps the sandbox running after Claude Code exits, so you can apply policy updates later without recreating the environment.

Claude Code starts inside the sandbox. Log in through your preferred authentication method and trust the /sandbox workspace when prompted.

Push Code to GitHub#

Terminal 1 (sandbox): Ask Claude Code to write a simple script and push it to your repository:

Write a hello_world.py script and push it to https://github.com/<org>/<repo>.

Claude recognizes that it needs GitHub credentials. It asks how you want to authenticate. Provide your GitHub personal access token by pasting it into the conversation. Claude configures authentication and attempts the push.

The push fails. Claude reports an error, but the failure is not an authentication problem. The default sandbox policy does not permit outbound requests to GitHub, so the proxy blocks the connection before the request reaches GitHub’s servers.

Diagnose the Denial#

View the logs from your laptop#

Terminal 2 (laptop): Open a separate terminal on your laptop and launch the OpenShell Terminal:

$ openshell term

The dashboard shows sandbox status and a live stream of policy decisions. Look for entries with l7_decision=deny. Select a deny entry to see the full detail:

l7_action:      PUT
l7_target:      /repos/<org>/<repo>/contents/hello_world.py
l7_decision:    deny
dst_host:       api.github.com
dst_port:       443
l7_protocol:    rest
policy:         github_rest_api
l7_deny_reason: PUT /repos/<org>/<repo>/contents/hello_world.py not permitted by policy

The log shows that the sandbox proxy intercepted an outbound PUT request to api.github.com and denied it. The github_rest_api policy allows read operations (GET) but blocks write operations (PUT, POST, DELETE) to the GitHub API. A similar denial appears for github.com if Claude attempted a git push over HTTPS.

Ask Claude to check the sandbox logs#

Terminal 1 (sandbox): Switch back to Claude Code. Ask it to check the sandbox logs for denied requests:

Check the sandbox logs for any denied network requests. What is blocking the push?

Claude reads the deny entries and identifies the root cause. It explains that the failure is a sandbox network policy restriction, not a token permissions issue:

The sandbox runs a proxy that enforces policies on outbound traffic. The github_rest_api policy allows GET requests (used to read the file) but blocks PUT/write requests to GitHub. This is a sandbox-level restriction, not a token issue. No matter what token you provide, pushes via the API will be blocked until the policy is updated.

Both perspectives confirm the same thing: the proxy is doing its job. The default policy is designed to be restrictive. To allow GitHub pushes, you need to update the network policy.

Copy the deny reason from Claude’s response. You will paste it into your laptop agent in the next step.

Update the Policy#

Ask your coding agent to recommend a policy#

Terminal 2 (laptop): Paste the deny reason from the previous step into your coding agent (for example, Claude Code or Cursor running on your laptop) and ask it to recommend a policy update. The deny reason gives the agent the context it needs to generate the correct policy rules:

Based on these deny reasons, recommend a sandbox policy update that allows GitHub pushes to <org>/<repo>.

The agent inspects the deny reasons and writes an updated policy that adds github_git and github_api blocks for your repository. It saves the policy to a file, for example /tmp/sandbox-policy-update.yaml.

Apply the policy#

Once you are satisfied with the policy, apply it to the sandbox:

$ openshell policy set <sandbox-name> --policy /tmp/sandbox-policy-update.yaml --wait

Network policies are hot-reloadable. The --wait flag blocks until the policy engine confirms the new revision loaded, and the update takes effect immediately without restarting the sandbox or reconnecting Claude Code.

Retry the Push#

Terminal 1 (sandbox): Switch back to Claude Code and ask it to retry the push:

The sandbox policy has been updated. Try pushing to the repository again.

The push completes successfully. The openshell term dashboard now shows l7_decision=allow entries for api.github.com and github.com where it previously showed denials.

Next Steps#

The following resources cover related topics in greater depth:

  • To add per-repository access levels (read-write vs read-only) or restrict to specific API methods, refer to the Policy Schema Reference.

  • To learn the full policy iteration workflow (pull, edit, push, verify), refer to Customize Sandbox Policies.

  • To inject credentials automatically instead of pasting tokens, refer to Providers.