feat(exec): add path_append config to extend PATH for subprocess

This commit is contained in:
aiguozhi123456
2026-02-24 03:18:23 +00:00
parent 30361c9307
commit abcce1e1db
2 changed files with 8 additions and 0 deletions

View File

@@ -252,6 +252,7 @@ class ExecToolConfig(Base):
"""Shell exec tool configuration."""
timeout: int = 60
path_append: str = "/usr/sbin:/usr/local/sbin"
class MCPServerConfig(Base):