Agents/Subagents: honor subagent alsoAllow grants

This commit is contained in:
Vignesh Natarajan
2026-02-22 00:39:16 -08:00
parent 2d2e1c2403
commit 2a66c8d676
4 changed files with 70 additions and 2 deletions

View File

@@ -520,6 +520,8 @@ export type ToolsConfig = {
model?: string | { primary?: string; fallbacks?: string[] };
tools?: {
allow?: string[];
/** Additional allowlist entries merged into allow and/or default sub-agent denylist. */
alsoAllow?: string[];
deny?: string[];
};
};