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.
This commit is contained in:
parent
a446eb21d0
commit
050df51df7
|
|
@ -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."
|
||||
Loading…
Reference in New Issue