diff options
| author | olcan <[email protected]> | 2025-05-03 19:57:28 -0700 |
|---|---|---|
| committer | Olcan <[email protected]> | 2025-05-05 17:10:45 -0700 |
| commit | 6b6eef5b80f2cb01ba7b5b94074f8f56937ad04d (patch) | |
| tree | 988149b0e2c96de4f9d9b96f2c82a30c1be518b7 /packages/server/src/tools/shell.md | |
| parent | 2cd976987e0a4837301df161479e44dfcca6e206 (diff) | |
support for discovered tools using project settings for discovery and call commands
Diffstat (limited to 'packages/server/src/tools/shell.md')
| -rw-r--r-- | packages/server/src/tools/shell.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/server/src/tools/shell.md b/packages/server/src/tools/shell.md index a8a42381..66543662 100644 --- a/packages/server/src/tools/shell.md +++ b/packages/server/src/tools/shell.md @@ -1,6 +1,7 @@ This tool executes a given shell command as `bash -c <command>`. Command can be any valid single-line Bash command. Command can start background processes using `&`. +Command is executed as a subprocess. The following information is returned: @@ -8,7 +9,7 @@ Command: Executed command. Directory: Directory (relative to project root) where command was executed, or `(root)`. Stdout: Output on stdout stream. Can be `(empty)` or partial on error. Stderr: Output on stderr stream. Can be `(empty)` or partial on error. -Error: Error or `(none)` if no error occurred. +Error: Error or `(none)` if no error was reported for the subprocess. Exit Code: Exit code or `(none)` if terminated by signal. Signal: Signal number or `(none)` if no signal was received. Background PIDs: List of background processes started or `(none)`. |
