Skip to content

Commit 3f95710

Browse files
authored
Rename cagent GH repo (#24285)
<!--Delete sections as needed --> ## Description rename GH cagent repo URL, repo has been renamed to docker/docker-agent ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
1 parent 7e46dc7 commit 3f95710

15 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/agents/docs-scanner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=https://raw.githubusercontent.com/docker/cagent/refs/heads/main/cagent-schema.json
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/docker/docker-agent/refs/heads/main/cagent-schema.json
22
models:
33
claude-sonnet:
44
provider: anthropic

.github/workflows/agent-writer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
Fixes #${{ github.event.issue.number }}
6060
6161
---
62-
🤖 Generated with [cagent](https://github.com/docker/cagent)
62+
🤖 Generated with [Docker Agent](https://github.com/docker/docker-agent)
6363
6464
Keep the PR body brief and practical. Don't over-explain or add sections
6565
that aren't needed.

content/guides/lab-docker-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ params:
1616
time: 20 minutes
1717
resource_links:
1818
- title: Docker Agent documentation
19-
url: https://github.com/docker/cagent
19+
url: https://github.com/docker/docker-agent
2020
- title: Docker MCP Toolkit
2121
url: https://docs.docker.com/ai/mcp-catalog-and-toolkit/toolkit/
2222
- title: Labspace repository

content/manuals/ai/docker-agent/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keywords: [ai, agent, docker agent, cagent]
1616

1717
{{< summary-bar feature_name="Docker Agent" >}}
1818

19-
[Docker Agent](https://github.com/docker/cagent) is an open-source framework
19+
[Docker Agent](https://github.com/docker/docker-agent) is an open-source framework
2020
for building teams of specialized AI agents. Instead of prompting one
2121
generalist model, you define agents with specific roles and instructions that
2222
collaborate to solve problems. Run these agent teams from your terminal using
@@ -73,9 +73,9 @@ For Docker Engine users or custom installations:
7373
- **Homebrew**: `brew install cagent`
7474
- **Winget**: `winget install Docker.Cagent`
7575
- **Pre-built binaries**: [GitHub
76-
releases](https://github.com/docker/cagent/releases)
76+
releases](https://github.com/docker/docker-agent/releases)
7777
- **From source**: See the [Docker Agent
78-
repository](https://github.com/docker/cagent?tab=readme-ov-file#build-from-source)
78+
repository](https://github.com/docker/docker-agent?tab=readme-ov-file#build-from-source)
7979

8080
The `docker-agent` binary should be copied to `~/.docker/cli-plugins` and then can be used with the `docker agent` command. Alternatively, it can be used as a standalone binary.
8181

@@ -162,11 +162,11 @@ it doesn't exist yet.
162162
- Integrate Docker Agent with your [editor](./integrations/acp.md) or use agents as
163163
[tools in MCP clients](./integrations/mcp.md)
164164
- Browse example agent configurations in the [Docker Agent
165-
repository](https://github.com/docker/cagent/tree/main/examples)
165+
repository](https://github.com/docker/docker-agent/tree/main/examples)
166166
- Use `docker agent new` to generate agent teams with AI <!-- TODO: link to some page
167167
where we explain this, probably a CLI reference? -->
168168
- Connect agents to external tools via the [Docker MCP
169169
Gateway](/manuals/ai/mcp-catalog-and-toolkit/mcp-gateway.md)
170170
- Read the full [configuration
171-
reference](https://github.com/docker/cagent?tab=readme-ov-file#-configuration-reference)
171+
reference](https://github.com/docker/docker-agent?tab=readme-ov-file#-configuration-reference)
172172
<!-- TODO: move to this site/repo -->

content/manuals/ai/docker-agent/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,6 @@ complex reasoning needed, and Haiku is faster and cheaper.
249249
- Check [toolsets reference](./reference/toolsets.md) to understand what tools
250250
agents can use
251251
- See [example
252-
configurations](https://github.com/docker/cagent/tree/main/examples) for
252+
configurations](https://github.com/docker/docker-agent/tree/main/examples) for
253253
complete working agents
254254
- Read the [RAG guide](./rag.md) for detailed retrieval optimization

content/manuals/ai/docker-agent/evals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,5 +159,5 @@ see what shifted.
159159
- Check the [CLI reference](reference/cli.md#eval) for all `docker agent eval`
160160
options
161161
- Learn [best practices](best-practices.md) for building effective agents
162-
- Review [example configurations](https://github.com/docker/cagent/tree/main/examples)
162+
- Review [example configurations](https://github.com/docker/docker-agent/tree/main/examples)
163163
for different agent types

content/manuals/ai/docker-agent/integrations/acp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Before configuring your editor, you need:
3939
- **Docker Agent installed** - See the [installation guide](../_index.md#installation)
4040
- **Agent configuration** - A YAML file defining your agent. See the
4141
[tutorial](../tutorial.md) or [example
42-
configurations](https://github.com/docker/cagent/tree/main/examples)
42+
configurations](https://github.com/docker/docker-agent/tree/main/examples)
4343
- **Editor with ACP support** - Neovim, Intellij, Zed, etc.
4444

4545
Your agents will use model provider API keys from your shell environment
@@ -181,5 +181,5 @@ If the agent starts but can't access files or perform other actions, check:
181181
- Add [RAG for codebase search](../rag.md) to your agent
182182
- Check the [CLI reference](../reference/cli.md) for all `docker agent serve acp` options
183183
- Browse [example
184-
configurations](https://github.com/docker/cagent/tree/main/examples) for
184+
configurations](https://github.com/docker/docker-agent/tree/main/examples) for
185185
inspiration

content/manuals/ai/docker-agent/integrations/mcp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Before configuring MCP integration, you need:
6868
- **Docker Agent installed** - See the [installation guide](../_index.md#installation)
6969
- **Agent configuration** - A YAML file defining your agent. See the
7070
[tutorial](../tutorial.md) or [example
71-
configurations](https://github.com/docker/cagent/tree/main/examples)
71+
configurations](https://github.com/docker/docker-agent/tree/main/examples)
7272
- **MCP client** - Claude Desktop, Claude Code, or another MCP-compatible
7373
application
7474
- **API keys** - Environment variables for any model providers your agents use
@@ -303,5 +303,5 @@ around.
303303
- Add [RAG for codebase search](../rag.md) to your agent
304304
- Check the [CLI reference](../reference/cli.md) for all `docker agent serve mcp` options
305305
- Browse [example
306-
configurations](https://github.com/docker/cagent/tree/main/examples) for
306+
configurations](https://github.com/docker/docker-agent/tree/main/examples) for
307307
different agent types

content/manuals/ai/docker-agent/rag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,6 @@ If results lack context:
431431

432432
- [Configuration reference](reference/config.md#rag) - Complete RAG options and
433433
parameters
434-
- [RAG examples](https://github.com/docker/cagent/tree/main/examples/rag) -
434+
- [RAG examples](https://github.com/docker/docker-agent/tree/main/examples/rag) -
435435
Working configurations for different scenarios
436436
- [Tools reference](reference/toolsets.md) - How RAG search tools work in agent workflows

content/manuals/ai/docker-agent/reference/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,5 +617,5 @@ rag:
617617
documentation
618618
- Review the [CLI reference](./cli.md) for command-line options
619619
- Browse [example
620-
configurations](https://github.com/docker/cagent/tree/main/examples)
620+
configurations](https://github.com/docker/docker-agent/tree/main/examples)
621621
- Learn about [sharing agents](../sharing-agents.md)

0 commit comments

Comments
 (0)