From 0260de4db42b391625250a7322c5e14d47171a65 Mon Sep 17 00:00:00 2001 From: "namrata.ghadi" Date: Wed, 11 Mar 2026 05:54:22 -0700 Subject: [PATCH 1/2] update tip --- core/overview.mdx | 10 ++++++++-- core/quickstart.mdx | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/core/overview.mdx b/core/overview.mdx index d3f82fa..1705b0d 100644 --- a/core/overview.mdx +++ b/core/overview.mdx @@ -33,12 +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:** - ✅ Starts Agent Control server at `http://localhost:8000` diff --git a/core/quickstart.mdx b/core/quickstart.mdx index c9ee4de..07ea9f8 100644 --- a/core/quickstart.mdx +++ b/core/quickstart.mdx @@ -13,12 +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:** - ✅ Starts Agent Control server at `http://localhost:8000` From 0b37b33654dd1417ca4e9d441ded531740ec5d8f Mon Sep 17 00:00:00 2001 From: "namrata.ghadi" Date: Wed, 11 Mar 2026 05:58:08 -0700 Subject: [PATCH 2/2] fix linting --- core/overview.mdx | 2 ++ core/quickstart.mdx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/core/overview.mdx b/core/overview.mdx index 1705b0d..d8978ca 100644 --- a/core/overview.mdx +++ b/core/overview.mdx @@ -40,11 +40,13 @@ curl -L https://raw.githubusercontent.com/agentcontrol/agent-control/refs/heads/ ``` Then, install sdk in your virtual env: + ```bash uv venv source .venv/bin/activate uv pip install agent-control-sdk ``` + **What this does:** - ✅ Starts Agent Control server at `http://localhost:8000` diff --git a/core/quickstart.mdx b/core/quickstart.mdx index 07ea9f8..e1a481c 100644 --- a/core/quickstart.mdx +++ b/core/quickstart.mdx @@ -20,11 +20,13 @@ curl -L https://raw.githubusercontent.com/agentcontrol/agent-control/refs/heads/ ``` Then, install sdk in your virtual env: + ```bash uv venv source .venv/bin/activate uv pip install agent-control-sdk ``` + **What this does:** - ✅ Starts Agent Control server at `http://localhost:8000`