Skip to content

Commit ecf2037

Browse files
committed
Fix vale comments
Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
1 parent a17b480 commit ecf2037

9 files changed

Lines changed: 22 additions & 22 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Best practices
3-
description: Patterns and techniques for building effective Docker Agent agents
3+
description: Patterns and techniques for building effective agents
44
keywords: [docker agent, best practices, patterns, agent design, optimization]
55
weight: 40
66
---
77

8-
Patterns you learn from building and running Docker Agent agents. These aren't
8+
Patterns you learn from building and running agents with Docker Agent. These aren't
99
features or configuration options - they're approaches that work well in
1010
practice.
1111

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Integrations
3-
description: Connect Docker Agent agents to editors, MCP clients, and other agents
3+
description: Connect agents to editors, MCP clients, and other agents
44
keywords: [docker agent, integration, acp, mcp, a2a, editor, protocol]
55
weight: 60
66
---
@@ -12,7 +12,7 @@ want to use them. Each integration type serves a specific purpose.
1212

1313
### ACP - Editor integration
1414

15-
Run Docker Agent agents directly in your editor (Neovim, Zed). The agent sees your
15+
Run agents directly in your editor (Neovim, Zed). The agent sees your
1616
editor's file context and can read and modify files through the editor's
1717
interface. Use ACP when you want an AI coding assistant embedded in your
1818
editor.
@@ -21,7 +21,7 @@ See [ACP integration](./acp.md) for setup instructions.
2121

2222
### MCP - Tool integration
2323

24-
Expose Docker Agent agents as tools in MCP clients like Claude Desktop or Claude
24+
Expose agents as tools in MCP clients like Claude Desktop or Claude
2525
Code. Your agents appear in the client's tool list, and the client can call
2626
them when needed. Use MCP when you want Claude Desktop (or another MCP client)
2727
to have access to your specialized agents.
@@ -30,7 +30,7 @@ See [MCP integration](./mcp.md) for setup instructions.
3030

3131
### A2A - Agent-to-agent communication
3232

33-
Run Docker Agent agents as HTTP servers that other agents or systems can call using
33+
Run agents as HTTP servers that other agents or systems can call using
3434
the Agent-to-Agent protocol. Your agent becomes a service that other systems
3535
can discover and invoke over the network. Use A2A when you want to build
3636
multi-agent systems or expose your agent as an HTTP service.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: A2A mode
33
linkTitle: A2A
4-
description: Expose Docker Agent agents via the Agent-to-Agent protocol
4+
description: Expose agents via the Agent-to-Agent protocol
55
keywords: [docker agent, a2a, agent-to-agent, multi-agent, protocol]
66
weight: 40
77
---
88

9-
A2A mode runs your Docker Agent agent as an HTTP server that other systems can call
9+
A2A mode runs your agent as an HTTP server that other systems can call
1010
using the Agent-to-Agent protocol. This lets you expose your agent as a service
1111
that other agents or applications can discover and invoke over the network.
1212

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
linkTitle: ACP
33
title: ACP integration
4-
description: Configure your editor or IDE to use Docker Agent agents as coding assistants
4+
description: Configure your editor or IDE to use agents as coding assistants
55
keywords: [docker agent, acp, editor, ide, neovim, zed, integration]
66
weight: 40
77
---
88

9-
Run Docker Agent agents directly in your editor using the Agent Client Protocol (ACP).
9+
Run agents directly in your editor using the Agent Client Protocol (ACP).
1010
Your agent gets access to your editor's filesystem context and can read and
1111
modify files as you work. The editor handles file operations while cagent
1212
provides the AI capabilities.
@@ -36,7 +36,7 @@ same files, same state.
3636

3737
Before configuring your editor, you need:
3838

39-
- **cagent installed** - See the [installation guide](../_index.md#installation)
39+
- **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
4242
configurations](https://github.com/docker/cagent/tree/main/examples)

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: MCP mode
33
linkTitle: MCP
4-
description: Expose Docker Agent agents as tools to MCP clients like Claude Desktop and Claude Code
4+
description: Expose agents as tools to MCP clients like Claude Desktop and Claude Code
55
keywords:
66
[
77
cagent,
@@ -65,7 +65,7 @@ manage MCP servers interactively.
6565

6666
Before configuring MCP integration, you need:
6767

68-
- **cagent installed** - See the [installation guide](../_index.md#installation)
68+
- **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
7171
configurations](https://github.com/docker/cagent/tree/main/examples)
@@ -93,7 +93,7 @@ Example configuration:
9393
{
9494
"mcpServers": {
9595
"myagent": {
96-
"command": "/usr/local/bin/docker",
96+
"command": "docker",
9797
"args": [
9898
"agent",
9999
"serve",
@@ -113,7 +113,7 @@ Example configuration:
113113

114114
Configuration breakdown:
115115

116-
- `command`: Full path to your `docker` binary (use `which docker` to find it), or path to docker-agent if not using the docker CLI plugin
116+
- `command`: Full path to your `docker` binary (use `which docker` to find it), or path to `docker-agent` if not using the Docker CLI plugin
117117
- `args`: MCP command arguments:
118118
- `mcp`: The subcommand to run cagent in MCP mode
119119
- `dockereng/myagent`: Your agent configuration (local file path or OCI
@@ -181,7 +181,7 @@ Use the same syntax in MCP client configurations:
181181
{
182182
"mcpServers": {
183183
"myagent": {
184-
"command": "/usr/local/bin/docker",
184+
"command": "docker",
185185
"args": ["agent", "serve", "mcp", "agentcatalog/pirate"]
186186
}
187187
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: RAG
3-
description: How RAG gives your Docker Agent agents access to codebases and documentation
3+
description: How RAG gives your agents access to codebases and documentation
44
keywords: [docker agent, rag, retrieval, embeddings, semantic search]
55
weight: 70
66
---

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords: [ai, agent, cagent, configuration, yaml]
66
weight: 10
77
---
88

9-
This reference documents the YAML configuration file format for Docker Agent agents.
9+
This reference documents the YAML configuration file format for agents suing Docker Agent.
1010
It covers file structure, agent parameters, model configuration, toolset setup,
1111
and RAG sources.
1212

content/manuals/ai/docker-agent/sharing-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Agents can be exposed as tools in MCP clients:
8282
{
8383
"mcpServers": {
8484
"myagent": {
85-
"command": "/usr/local/bin/docker",
85+
"command": "docker",
8686
"args": ["agent", "serve", "mcp", "agentcatalog/pirate"]
8787
}
8888
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A coding agent that can:
2525

2626
## What you'll learn
2727

28-
- How to configure Docker Agent agents in YAML
28+
- How to configure agents in YAML with Docker Agents
2929
- How to give agents access to tools (filesystem, shell, etc.)
3030
- How to write effective agent instructions
3131
- How to compose multiple agents for specialized tasks
@@ -43,7 +43,7 @@ Before starting, you need:
4343

4444
## Creating your first agent
4545

46-
A Docker Agent agent is defined in a YAML configuration file. The minimal agent needs
46+
An agent is defined in a YAML configuration file. The minimal agent needs
4747
just a model and instructions that define its purpose.
4848

4949
Create a file named `agents.yml`:
@@ -288,4 +288,4 @@ You now know how to:
288288
different use cases
289289
- See the full
290290
[golang_developer.yaml](https://github.com/docker/cagent/blob/main/golang_developer.yaml)
291-
that the Docker team uses to develop Docker Agent
291+
that the Docker Team uses to develop Docker Agent

0 commit comments

Comments
 (0)