Skip to content

Commit 310dfc0

Browse files
authored
Merge pull request #1924 from dgageot/fix-few-docs
Fix a few issues in the docs
2 parents 88d162b + 14ddd5c commit 310dfc0

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

docs/concepts/tools/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ Define custom shell scripts as named tools. Unlike the generic `shell` tool wher
100100
```yaml
101101
toolsets:
102102
- type: script
103-
scripts:
104-
- name: run_tests
103+
shell:
104+
run_tests:
105+
cmd: task test
105106
description: Run the project test suite
106-
command: task test
107-
- name: lint
107+
lint:
108+
cmd: task lint
108109
description: Run the linter
109-
command: task lint
110110
```
111111

112112
### Transfer Task
@@ -144,7 +144,7 @@ toolsets:
144144
args: ["--allow-write", "."]
145145
tools: ["read_file", "write_file"] # optional: only expose specific tools
146146
env:
147-
- "RUST_LOG=debug"
147+
RUST_LOG: debug
148148
```
149149

150150
### Remote MCP (SSE / HTTP)

docs/configuration/overview/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A docker-agent YAML config has these main sections:
1414

1515
```bash
1616
# 1. Version — configuration schema version (optional but recommended)
17-
version: 5
17+
version: 6
1818

1919
# 2. Metadata — optional agent metadata for distribution
2020
metadata:

docs/configuration/tools/index.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,7 @@ toolsets:
312312
args: ["-m", "mcp_server"]
313313
tools: ["search", "fetch"] # optional: whitelist specific tools
314314
env:
315-
- "API_KEY=value"
316-
env_file:
317-
- .env
315+
API_KEY: value
318316
```
319317

320318
| Property | Type | Description |
@@ -323,7 +321,6 @@ toolsets:
323321
| `args` | array | Command arguments |
324322
| `tools` | array | Optional: only expose these tools |
325323
| `env` | array | Environment variables (`"KEY=value"` format) |
326-
| `env_file` | array | Files to load environment variables from |
327324
| `instruction` | string | Custom instructions injected into the agent's context |
328325

329326
### Remote MCP (SSE / Streamable HTTP)
@@ -406,12 +403,13 @@ agents:
406403
file_types: [".go"]
407404
# Custom scripts
408405
- type: script
409-
run_tests:
410-
description: Run the test suite
411-
cmd: task test
412-
lint:
413-
description: Run the linter
414-
cmd: task lint
406+
shell:
407+
run_tests:
408+
description: Run the test suite
409+
cmd: task test
410+
lint:
411+
description: Run the linter
412+
cmd: task lint
415413
# Custom API tool
416414
- type: api
417415
name: get_status

docs/getting-started/installation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ For the latest features, or to contribute, build from source:
7171

7272
### Prerequisites
7373

74-
- [Go 1.25](https://go.dev/dl/) or higher
74+
- [Go 1.26](https://go.dev/dl/) or higher
7575
- [Task 3.44](https://taskfile.dev/installation/) or higher (build tool)
7676
- [golangci-lint](https://golangci-lint.run/docs/welcome/install/#binaries) (for linting)
7777

0 commit comments

Comments
 (0)