summaryrefslogtreecommitdiff
path: root/agent/tools/shell.lua
diff options
context:
space:
mode:
authorT <t@tjp.lol>2026-05-27 20:39:45 -0600
committert <t@tjp.lol>2026-05-30 16:29:43 -0600
commit5c016cfdbcb122e2b4f0496ef946642d68953c4b (patch)
tree81feb6ac75045361e8e61d609e4e34d14cecb3b6 /agent/tools/shell.lua
parent48651e123ef0cf1d02eac781902517c0628b310a (diff)
tool names prefixed with `std.`
Diffstat (limited to 'agent/tools/shell.lua')
-rw-r--r--agent/tools/shell.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/tools/shell.lua b/agent/tools/shell.lua
index c615d1c..a9e9de3 100644
--- a/agent/tools/shell.lua
+++ b/agent/tools/shell.lua
@@ -94,7 +94,7 @@ end
-- ---------------------------------------------------------------------------
return {
- name = "shell",
+ name = "std.shell",
description = string.format("Execute a shell command via `/bin/sh -c`. Returns merged stdout+stderr after the command exits, prefixed with an exit-status header. Output is truncated to the last %dKB; on truncation the full transcript is saved to `$PANTO_HOME/shell-output/` and its path is included for follow-up `read` calls. Default timeout 5 minutes.", MAX_BYTES / 1024),
schema = {
type = "object",