Channels: add per-group tool policies

This commit is contained in:
Adam Holt
2026-01-24 15:35:05 +13:00
committed by Peter Steinberger
parent e51bf46abe
commit c07949a99c
47 changed files with 512 additions and 11 deletions

View File

@@ -120,6 +120,11 @@ export type ToolPolicyConfig = {
profile?: ToolProfileId;
};
export type GroupToolPolicyConfig = {
allow?: string[];
deny?: string[];
};
export type ExecToolConfig = {
/** Exec host routing (default: sandbox). */
host?: "sandbox" | "gateway" | "node";