feat: webfetch permission support (#1772)

This commit is contained in:
Aiden Cline
2025-08-10 08:00:44 -05:00
committed by GitHub
parent c478d1bdbb
commit 542186aa49
4 changed files with 29 additions and 0 deletions

View File

@@ -79,6 +79,9 @@ export namespace ToolRegistry {
if (cfg?.permission?.bash === "deny") {
result["bash"] = false
}
if (cfg?.permission?.webfetch === "deny") {
result["webfetch"] = false
}
return result
}