Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/agents/amp.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: "AMP"
description: "Run AMP in a secure E2B sandbox with full filesystem, terminal, and git access."
title: "Amp"
description: "Run Amp in a secure E2B sandbox with full filesystem, terminal, and git access."
icon: "/images/icons/amp.svg"
---

[AMP](https://ampcode.com) is Sourcegraph's coding agent with multi-model architecture and built-in code intelligence. E2B provides a pre-built `amp` template with AMP already installed.
[Amp](https://ampcode.com) is a coding agent with multi-model architecture and built-in code intelligence. E2B provides a pre-built `amp` template with Amp already installed.

## CLI

Expand All @@ -14,15 +14,15 @@ Spin up a sandbox with the [E2B CLI](/docs/cli).
e2b sbx create amp
```

Once inside the sandbox, start AMP.
Once inside the sandbox, start Amp.

```bash
amp
```

## Run headless

Use `-x` for non-interactive mode and `--dangerously-allow-all` to auto-approve all tool calls (safe inside E2B sandboxes). AMP uses its own API key from [ampcode.com/settings](https://ampcode.com/settings).
Use `-x` for non-interactive mode and `--dangerously-allow-all` to auto-approve all tool calls (safe inside E2B sandboxes). Amp uses its own API key from [ampcode.com/settings](https://ampcode.com/settings).

<CodeGroup>
```typescript JavaScript & TypeScript
Expand Down Expand Up @@ -172,7 +172,7 @@ sandbox.kill()

## Thread management

AMP persists conversations as threads that can be resumed or continued with follow-up tasks.
Amp persists conversations as threads that can be resumed or continued with follow-up tasks.

<CodeGroup>
```typescript JavaScript & TypeScript
Expand Down
8 changes: 4 additions & 4 deletions docs/use-cases/coding-agents.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: "Coding Agents"
description: "Run AI coding agents like Claude Code, Codex, and AMP in secure E2B sandboxes with full terminal, filesystem, and git access."
description: "Run AI coding agents like Claude Code, Codex, and Amp in secure E2B sandboxes with full terminal, filesystem, and git access."
icon: "robot"
---

Coding agents like [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview), [Codex](https://github.com/openai/codex), and [AMP](https://ampcode.com/) can write, debug, and refactor code autonomously. E2B sandboxes give each agent a full Linux environment with terminal, filesystem, and git — completely isolated from your infrastructure. Pre-built templates mean you can go from zero to a running agent in a single API call.
Coding agents like [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview), [Codex](https://github.com/openai/codex), and [Amp](https://ampcode.com/) can write, debug, and refactor code autonomously. E2B sandboxes give each agent a full Linux environment with terminal, filesystem, and git — completely isolated from your infrastructure. Pre-built templates mean you can go from zero to a running agent in a single API call.

## Why Use a Sandbox

Expand Down Expand Up @@ -34,8 +34,8 @@ Since each sandbox is a full Linux environment, you can run any coding agent —
<Card title="Codex" icon="/images/icons/codex.svg" href="/docs/agents/codex">
OpenAI's coding agent with schema-validated output and image input
</Card>
<Card title="AMP" icon="/images/icons/amp.svg" href="/docs/agents/amp">
Sourcegraph's coding agent with streaming JSON and thread management
<Card title="Amp" icon="/images/icons/amp.svg" href="/docs/agents/amp">
Coding agent with streaming JSON and thread management
</Card>
<Card title="OpenCode" icon="/images/icons/opencode.svg" href="/docs/agents/opencode">
Open-source multi-provider agent with a built-in web UI
Expand Down