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
2 changes: 1 addition & 1 deletion docs/features/acp/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ A host application would spawn docker-agent as a subprocess and communicate via

```javascript
// Pseudocode for an IDE extension
const child = spawn("docker", "agent", "serve", ["acp", "./agent.yaml"]);
const child = spawn("docker", ["agent", "serve", "acp", "./agent.yaml"]);

// Send a message to the agent
child.stdin.write(
Expand Down
3 changes: 2 additions & 1 deletion docs/features/mcp-mode/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ Add a configuration to your Claude Desktop MCP settings file:
"myagent": {
"command": "/usr/local/bin/docker",
"args": [
"agent"
"agent",
"serve",
"mcp",
"agentcatalog/coder",
"--working-dir",
Expand Down
Loading