From 0851682080c232c2dc7e0e82f6bb786cf99e54b3 Mon Sep 17 00:00:00 2001 From: sheeek Date: Wed, 7 Jan 2026 11:57:51 +0100 Subject: [PATCH] feat(types): add sandbox and tools fields to routing.agents Add optional per-agent configuration: - sandbox: { mode, scope, perSession, workspaceRoot } - tools: { allow, deny } These will allow agents to override global agent.sandbox and agent.tools settings. --- src/config/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/config/types.ts b/src/config/types.ts index e5a23ad01..a1c8adb44 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -592,6 +592,10 @@ export type RoutingConfig = { perSession?: boolean; workspaceRoot?: string; }; + tools?: { + allow?: string[]; + deny?: string[]; + }; } >; bindings?: Array<{