mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 09:17:53 +00:00
Rename server->core (#638)
This commit is contained in:
committed by
GitHub
parent
c81148a0cc
commit
21fba832d1
14
packages/core/src/tools/shell.md
Normal file
14
packages/core/src/tools/shell.md
Normal file
@@ -0,0 +1,14 @@
|
||||
This tool executes a given shell command as `bash -c <command>`.
|
||||
Command can start background processes using `&`.
|
||||
Command itself is executed as a subprocess.
|
||||
|
||||
The following information is returned:
|
||||
|
||||
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 and for any unwaited background processes.
|
||||
Stderr: Output on stderr stream. Can be `(empty)` or partial on error and for any unwaited background processes.
|
||||
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)`.
|
||||
Reference in New Issue
Block a user