-
Notifications
You must be signed in to change notification settings - Fork 253
Add example running a Claude Code coding agent in a Sandbox #1352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ehdr
wants to merge
3
commits into
main
Choose a base branch
from
ehdr/sandbox-agent-example
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# --- | ||
# cmd: ["python", "13_sandboxes/sandbox_agent.py"] | ||
# pytest: false | ||
# --- | ||
|
||
# # Run Claude Code in a Modal Sandbox | ||
|
||
# This example demonstrates how to run Claude Code in a Modal | ||
# [Sandbox](https://modal.com/docs/guide/sandbox) to analyze a GitHub repository. | ||
# The Sandbox provides an isolated environment where the agent can safely execute code | ||
# and examine files. | ||
|
||
import modal | ||
|
||
app = modal.App.lookup("example-sandbox-agent", create_if_missing=True) | ||
|
||
# First we create a custom Image that has Claude Code installed. | ||
image = ( | ||
modal.Image.debian_slim(python_version="3.12") | ||
.apt_install("curl", "git") | ||
.run_commands( | ||
"curl -fsSL https://claude.ai/install.sh | bash", | ||
) | ||
.env( | ||
{ | ||
"PATH": "/root/.local/bin:$PATH", | ||
"USE_BUILTIN_RIPGREP": "0", | ||
} | ||
) | ||
) | ||
|
||
with modal.enable_output(): | ||
sandbox = modal.Sandbox.create(app=app, image=image) | ||
print(f"Sandbox ID: {sandbox.object_id}") | ||
|
||
# Next we'll clone a repository that Claude Code will work on. | ||
repo_url = "https://github.com/modal-labs/modal-examples" | ||
git_ps = sandbox.exec("git", "clone", repo_url, "/repo") | ||
git_ps.wait() | ||
print(f"Cloned '{repo_url}' into /repo.") | ||
|
||
# Finally we'll run Claude Code to analyze the repository. | ||
claude_cmd = [ | ||
"claude", | ||
"-p", | ||
"Summarize what this repository is about. Don't modify any files.", | ||
] | ||
|
||
print("\nRunning command:", claude_cmd) | ||
|
||
claude_ps = sandbox.exec( | ||
*claude_cmd, | ||
pty=True, # Adding a PTY is important, since Claude requires it! | ||
secrets=[ | ||
modal.Secret.from_name("anthropic-secret", required_keys=["ANTHROPIC_API_KEY"]) | ||
], | ||
workdir="/repo", | ||
) | ||
claude_ps.wait() | ||
|
||
print("\nAgent stdout:\n") | ||
print(claude_ps.stdout.read()) | ||
|
||
stderr = claude_ps.stderr.read() | ||
if stderr != "": | ||
print("Agent stderr:", stderr) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a comment about why these are necessary?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, also good catch,
USE_BUILTIN_RIPGREP
is only needed on alpine. Pushed a fix now.