From abf3d25f06b843ee9b154a5c1b8f5cc05fdd4743 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Fri, 6 Mar 2026 08:59:16 -0700 Subject: [PATCH] fix(core): remove stale tool_supports_subagents and tool_supports_agent_teams config (#1827) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These config keys were added in efc69ffb but never consumed by any template, conditional logic, or runtime code. They represent platform capabilities that the agent can determine at runtime — persisting a stale user guess adds installation friction with zero execution value. Co-authored-by: Claude Opus 4.6 --- src/core/module.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/core/module.yaml b/src/core/module.yaml index 5b1ff13ee..48e7a58f7 100644 --- a/src/core/module.yaml +++ b/src/core/module.yaml @@ -23,13 +23,3 @@ output_folder: prompt: "Where should output files be saved?" default: "_bmad-output" result: "{project-root}/{value}" - -tool_supports_subagents: - prompt: "Subagents are supported by the LLM or Tool I will be using?" - default: true - result: "{value}" - -tool_supports_agent_teams: - prompt: "Agent Teams are supported by the LLM or Tool I will be using?" - default: false - result: "{value}"