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/configuration/tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Use the `version` property to specify exactly which package to install:
toolsets:
- type: mcp
command: gopls
version: "golang/tools@v0.25.0"
version: "golang/tools@v0.21.0"
args: ["mcp"]
- type: lsp
command: rust-analyzer
Expand Down
4 changes: 2 additions & 2 deletions docs/tools/lsp/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ agents:
| `args` | array | ✗ | Command-line arguments for the LSP server |
| `env` | object | ✗ | Environment variables for the LSP process |
| `file_types` | array | ✗ | File extensions this LSP handles (e.g., `[".go", ".mod"]`) |
| `version` | string | ✗ | Package reference for [auto-installing](/configuration/tools/#auto-installing-tools) the command binary (e.g., `"golang/tools@v0.25.0"`) |
| `version` | string | ✗ | Package reference for [auto-installing](/configuration/tools/#auto-installing-tools) the command binary (e.g., `"golang/tools@v0.21.0"`) |

## Available Tools

Expand Down Expand Up @@ -78,7 +78,7 @@ Here are configurations for popular languages:
toolsets:
- type: lsp
command: gopls
version: "golang/tools@v0.25.0" # optional: auto-install if not in PATH
version: "golang/tools@v0.21.0" # optional: auto-install if not in PATH
file_types: [".go"]
```

Expand Down
4 changes: 2 additions & 2 deletions examples/gopher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ agents:
- type: todo
- type: mcp
command: gopls
version: "golang/tools@v0.25.0"
version: "golang/tools@v0.21.0"
args: ["mcp"]
commands:
fix-lint:
Expand Down Expand Up @@ -165,7 +165,7 @@ agents:
- type: shell
- type: mcp
command: gopls
version: "golang/tools@v0.25.0"
version: "golang/tools@v0.21.0"
args: ["mcp"]

librarian:
Expand Down
2 changes: 1 addition & 1 deletion examples/modernize-go-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ agents:
- type: todo
- type: mcp
command: gopls
version: "golang/tools@v0.25.0"
version: "golang/tools@v0.21.0"
args: ["mcp"]
tools:
[
Expand Down