BMAD-METHOD/tools/cli
Nikita Levyankov 32b104b4bc fix: handle array-wrapped 'all' value for modules
After wrapping profile string values in arrays in options-parser, the modules handling in ui.js was still only checking for string 'all', not array ['all']. This would break profiles with `modules: 'all'`.

Added checks for both cases:
- String: `options.modules === 'all'` (original case)
- Array: `options.modules.includes('all')` (new case after wrapping)

Now modules handling is consistent with agents/workflows filtering which already used `.includes('all')`.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-18 12:39:07 +02:00
..
commands Merge branch 'main' into main 2025-12-18 02:47:51 +08:00
installers/lib fix: wrap string profile values in arrays for consistency 2025-12-18 12:36:30 +02:00
lib fix: handle array-wrapped 'all' value for modules 2025-12-18 12:39:07 +02:00
test feat: introduce non-interactive cli installation 2025-12-17 11:42:35 +02:00
README.md folder rename from .bmad to _bmad 2025-12-13 16:22:34 +08:00
bmad-cli.js npx with version selector 2025-10-26 23:42:56 -05:00

README.md

BMad CLI Tool

Revised CLI tool docs coming....