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: 10 additions & 2 deletions core/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,18 @@ Protect your AI agent in 4 simple steps.
- **Docker**

<Tip>
**One-line setup (no repo cloning required)** - Copy this into your terminal or directly paste into your coding agent to start the Agent Control server, UI, and install the SDK:
**Quick setup (no repo cloning required)** - Copy this into your terminal or directly paste into your coding agent to start the Agent Control server, UI:

```bash
curl -L https://raw.githubusercontent.com/agentcontrol/agent-control/refs/heads/main/docker-compose.yml | docker compose -f - up -d && pip install agent-control-sdk
curl -L https://raw.githubusercontent.com/agentcontrol/agent-control/refs/heads/main/docker-compose.yml | docker compose -f - up -d
```

Then, install sdk in your virtual env:

```bash
uv venv
source .venv/bin/activate
uv pip install agent-control-sdk
```

**What this does:**
Expand Down
12 changes: 10 additions & 2 deletions core/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ Protect your AI agent in 4 simple steps.
- **Docker**

<Tip>
**One-line setup (no repo cloning required)** - Copy this into your terminal or directly paste into your coding agent to start the Agent Control server, UI, and install the SDK:
**Quick setup (no repo cloning required)** - Copy this into your terminal or directly paste into your coding agent to start the Agent Control server, UI:

```bash
curl -L https://raw.githubusercontent.com/agentcontrol/agent-control/refs/heads/main/docker-compose.yml | docker compose -f - up -d && pip install agent-control-sdk
curl -L https://raw.githubusercontent.com/agentcontrol/agent-control/refs/heads/main/docker-compose.yml | docker compose -f - up -d
```

Then, install sdk in your virtual env:

```bash
uv venv
source .venv/bin/activate
uv pip install agent-control-sdk
```

**What this does:**
Expand Down
Loading