diff --git a/core/overview.mdx b/core/overview.mdx index d3f82fa..d8978ca 100644 --- a/core/overview.mdx +++ b/core/overview.mdx @@ -33,10 +33,18 @@ Protect your AI agent in 4 simple steps. - **Docker** -**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:** diff --git a/core/quickstart.mdx b/core/quickstart.mdx index c9ee4de..e1a481c 100644 --- a/core/quickstart.mdx +++ b/core/quickstart.mdx @@ -13,10 +13,18 @@ Protect your AI agent in 4 simple steps. - **Docker** -**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:**