From 050df51df7c9ba19808e3853a538441c3ef0a902 Mon Sep 17 00:00:00 2001 From: "alexandre.azouri" Date: Tue, 5 May 2026 17:04:17 +0200 Subject: [PATCH] feat: enable orchestrator agent in custom installs via config override Add [agents.bmad-orchestrator] declaration in _bmad/custom/config.toml to activate the orchestrator agent during custom installations. This makes bmad-orchestrator available to GitHub Copilot in the Custom Agents picker during any install that includes bmm module, leveraging the existing skill without requiring a separate module. --- _bmad/custom/config.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 _bmad/custom/config.toml diff --git a/_bmad/custom/config.toml b/_bmad/custom/config.toml new file mode 100644 index 000000000..9b9c8c3c6 --- /dev/null +++ b/_bmad/custom/config.toml @@ -0,0 +1,12 @@ +# Team / enterprise overrides for _bmad/config.toml. +# Committed to the repo — applies to every developer on the project. +# Tables deep-merge over base config; keyed entries merge by key. + +# Orchestrator agent — enable in custom installs +[agents.bmad-orchestrator] +name = "Orchestrator" +title = "BMAD Orchestrator" +icon = "🧭" +team = "software-development" +module = "bmm" +description = "Routes natural-language intent to the right BMAD skill or named agent, verifies lightweight prerequisites, and suggests the next step without forcing the user to memorize commands."