fix(tools): honor agent tool denylist without sandbox

This commit is contained in:
Peter Steinberger
2026-01-04 23:59:45 +01:00
parent d9a9f6db7d
commit 4dd515b65f
4 changed files with 27 additions and 2 deletions

View File

@@ -816,6 +816,11 @@ export type ClawdbotConfig = {
maxAgeDays?: number;
};
};
/** Global tool allow/deny policy for all providers (deny wins). */
tools?: {
allow?: string[];
deny?: string[];
};
};
routing?: RoutingConfig;
messages?: MessagesConfig;