Skip to content

Commit ed1bb72

Browse files
committed
cagent: "script_shell" toolset should be "script"
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
1 parent 66ff3c7 commit ed1bb72

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

content/manuals/ai/cagent/reference/toolsets.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ MCP toolsets
4343
(stdio) or remote servers (HTTP/SSE). MCP enables access to a wide ecosystem
4444
of standardized tools.
4545
Custom toolsets
46-
: Shell scripts wrapped as tools with typed parameters (`script_shell`). This
46+
: Shell scripts wrapped as tools with typed parameters (`script`). This
4747
lets you define domain-specific tools for your use case.
4848

4949
## Configuration
@@ -77,7 +77,7 @@ agents:
7777
Authorization: Bearer ${API_TOKEN}
7878

7979
# Custom shell tools
80-
- type: script_shell
80+
- type: script
8181
tools:
8282
build:
8383
cmd: npm run build
@@ -316,7 +316,7 @@ toolsets:
316316
### API
317317

318318
The `api` toolset lets you define custom tools that call HTTP APIs. Similar to
319-
`script_shell` but for web services, this allows you to expose REST APIs,
319+
`script` but for web services, this allows you to expose REST APIs,
320320
webhooks, or any HTTP endpoint as a tool your agent can use. The agent sees
321321
these as typed tools with automatic parameter validation.
322322

@@ -367,9 +367,9 @@ requests, parameters are sent as JSON in the request body.
367367

368368
Supported argument types: `string`, `number`, `boolean`, `array`, `object`.
369369

370-
### Script Shell
370+
### Script
371371

372-
The `script_shell` toolset lets you define custom tools by wrapping shell
372+
The `script` toolset lets you define custom tools by wrapping shell
373373
commands with typed parameters. This allows you to expose domain-specific
374374
operations to your agent as first-class tools. The agent sees these custom
375375
tools just like built-in tools, with parameter validation and type checking
@@ -385,7 +385,7 @@ parameters:
385385

386386
```yaml
387387
toolsets:
388-
- type: script_shell
388+
- type: script
389389
tools:
390390
deploy:
391391
cmd: ./deploy.sh

0 commit comments

Comments
 (0)