fix(installer): remove bmad-help from Copilot Custom Agents picker#2359
Conversation
Per @bmadcode's feedback after bmad-code-org#2324 merged: every persona agent's activation message already advertises bmad-help, so its picker entry is redundant AND confusing (looks like a peer agent when it's actually the meta-help). Removes the ALWAYS_AGENT_IDS allowlist exception that put it there. The toml-driven filter (the mechanism BMadCode endorsed in his PR review) remains the sole signal: a skill is a persona iff its source customize.toml has an [agent] section. bmad-help has no customize.toml, so under the cleaned-up filter it's correctly excluded. Tests: replaces the inclusion assertion in Suite 17 with an exclusion assertion. Suite still covers persona / non-conventional persona / workflow / meta-skill-with-`-agent-`-in-name cases. Refs bmad-code-org#2324 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
🤖 Augment PR SummarySummary: This PR removes the special-case allowlist that forced Changes:
Technical Notes: Copilot picker entries are now strictly derived from the presence of an 🤖 Was this summary useful? React with 👍 or 👎 |
📝 WalkthroughWalkthroughThis PR removes special-case handling for the Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
The fixture creates no customize.toml at all for bmad-help, so the exclusion path being exercised is the missing-file branch — not the file-without-[agent]-section branch. Reword the comment accordingly. Per @augmentcode review on bmad-code-org#2359. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Problem statement
PR #2324 added
bmad-helpto the GitHub Copilot Custom Agents picker. On reflection this was a mistake —bmad-helpis not a true agent (it's the meta-help skill that every persona agent already advertises on activation), so its picker entry is redundant and confusing.Proposed solution
This PR removes
bmad-helpfrom the GitHub Copilot Custom Agents picker.Files changed
tools/installer/ide/_config-driven.js— installer code that controls which skills appear in the pickertest/test-installation-components.js— flips the bmad-help assertion from inclusion to exclusionTests
npm run lint,npm run format:check,npm run test:installall pass locally.Refs #2324