bmad-plus 0.7.3 → 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/LICENSE +21 -0
- package/README.md +58 -57
- package/package.json +1 -1
- package/readme-international/README.de.md +106 -72
- package/readme-international/README.es.md +192 -158
- package/readme-international/README.fr.md +186 -152
- package/tools/cli/bmad-plus-cli.js +11 -0
- package/tools/cli/commands/autoconfig.js +489 -0
- package/tools/cli/commands/doctor.js +47 -0
- package/tools/cli/commands/install.js +8 -2
- package/tools/cli/i18n.js +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ All notable changes to BMAD+ will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.7.5] — 2026-05-17
|
|
9
|
+
|
|
10
|
+
### 🩺 Quality & Compliance
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **MIT LICENSE** — Proper license file matching `package.json` declaration
|
|
14
|
+
- **PACKS↔module.yaml sync check** — New Check 9 in `npx bmad-plus doctor` that cross-validates install.js PACKS object against module.yaml packs, preventing invisible pack bugs
|
|
15
|
+
- **30 new unit tests** — Total now 97:
|
|
16
|
+
- `scan.js` module validation (markers, skip dirs, options)
|
|
17
|
+
- `autoconfig.js` function checks (detectStack, analyzeStructure, calculateHealth, recommendPacks)
|
|
18
|
+
- `memory.js` subcommand and health score validation
|
|
19
|
+
- PACKS↔module.yaml bidirectional sync (count + key match)
|
|
20
|
+
- LICENSE file integrity
|
|
21
|
+
- **Global brain consolidation** — Promoted cross-project wisdom:
|
|
22
|
+
- 1 lesson (PowerShell UTF-8 corruption)
|
|
23
|
+
- 2 decisions (anti-regression protocol, i18n-first CLI)
|
|
24
|
+
- 2 patterns (dual-tier memory, surgical edit protocol)
|
|
25
|
+
|
|
26
|
+
## [0.7.4] — 2026-05-17
|
|
27
|
+
|
|
28
|
+
### 🧠 Smart Autoconfig
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- **`npx bmad-plus autoconfig`** — Smart project bootstrap:
|
|
32
|
+
- **Existing projects**: analyzes stack, structure, health; auto-selects packs; populates memory
|
|
33
|
+
- **New projects**: interactive wizard (type + description); initializes everything
|
|
34
|
+
- Auto-preserves existing IDE configs (`--tools none` when configs detected)
|
|
35
|
+
- Writes `context.md` with full project analysis for agent continuity
|
|
36
|
+
- Shows contextual recommendations ("Talk to Forge to...", "Talk to Sentinel to...")
|
|
37
|
+
|
|
38
|
+
### Fixed
|
|
39
|
+
- `--tools none` installer crash (undefined IDE name)
|
|
40
|
+
|
|
8
41
|
## [0.7.3] — 2026-05-17
|
|
9
42
|
|
|
10
43
|
### 🎨 Scan UX Improvements
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Laurent Rochetta
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# ?? BMAD+
|
|
1
|
+
# ?? BMAD+ — Augmented AI-Driven Development Framework
|
|
2
2
|
|
|
3
|
-
[](CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
7
|
<div align="center">
|
|
8
|
-
?? <b>English</b> | <a href="readme-international/README.fr.md">
|
|
8
|
+
?? <b>English</b> | <a href="readme-international/README.fr.md">Français</a> | <a href="readme-international/README.es.md">Español</a> | <a href="readme-international/README.de.md">Deutsch</a>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
> Smart fork of [BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) v6.2.0
|
|
11
|
+
> Smart fork of [BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) v6.2.0 — Multi-role self-activating agents, Autopilot mode, supervised parallel execution, and a modular pack system.
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
@@ -154,7 +154,7 @@ graph TB
|
|
|
154
154
|
|
|
155
155
|
## ?? The 5 Agents
|
|
156
156
|
|
|
157
|
-
### Atlas
|
|
157
|
+
### Atlas — Strategist ??
|
|
158
158
|
|
|
159
159
|
**Fuses:** Analyst (Mary) + Product Manager (John)
|
|
160
160
|
|
|
@@ -167,7 +167,7 @@ graph TB
|
|
|
167
167
|
|
|
168
168
|
---
|
|
169
169
|
|
|
170
|
-
### Forge
|
|
170
|
+
### Forge — Architect-Dev ???
|
|
171
171
|
|
|
172
172
|
**Fuses:** Architect (Winston) + Developer (Amelia) + Tech Writer (Paige)
|
|
173
173
|
|
|
@@ -187,7 +187,7 @@ graph TB
|
|
|
187
187
|
|
|
188
188
|
---
|
|
189
189
|
|
|
190
|
-
### Sentinel
|
|
190
|
+
### Sentinel — Quality ??
|
|
191
191
|
|
|
192
192
|
**Fuses:** QA Engineer (Quinn) + UX Designer (Sally)
|
|
193
193
|
|
|
@@ -200,7 +200,7 @@ graph TB
|
|
|
200
200
|
|
|
201
201
|
---
|
|
202
202
|
|
|
203
|
-
### Nexus
|
|
203
|
+
### Nexus — Orchestrator ??
|
|
204
204
|
|
|
205
205
|
**Fuses:** Scrum Master (Bob) + Quick-Flow Solo Dev (Barry) + **Autopilot** (new) + **Parallel Supervisor** (new)
|
|
206
206
|
|
|
@@ -215,7 +215,7 @@ graph TB
|
|
|
215
215
|
|
|
216
216
|
---
|
|
217
217
|
|
|
218
|
-
### Shadow
|
|
218
|
+
### Shadow — OSINT Intelligence ?? *(OSINT Pack)*
|
|
219
219
|
|
|
220
220
|
**Complete OSINT investigation agent.**
|
|
221
221
|
|
|
@@ -232,20 +232,20 @@ graph TB
|
|
|
232
232
|
|
|
233
233
|
---
|
|
234
234
|
|
|
235
|
-
### Maker
|
|
235
|
+
### Maker — Agent Creator ?? *(Maker Pack)*
|
|
236
236
|
|
|
237
237
|
**Meta-agent that creates other agents.** Give it a description ? it generates a complete package.
|
|
238
238
|
|
|
239
239
|
| Code | Description |
|
|
240
240
|
|------|-------------|
|
|
241
|
-
| **CA** | Create Agent
|
|
242
|
-
| **QA** | Quick Agent
|
|
243
|
-
| **EA** | Edit Agent
|
|
244
|
-
| **VA** | Validate Agent
|
|
245
|
-
| **PA** | Package Agent
|
|
241
|
+
| **CA** | Create Agent — guided creation in 4 phases |
|
|
242
|
+
| **QA** | Quick Agent — fast creation with sensible defaults |
|
|
243
|
+
| **EA** | Edit Agent — modify an existing SKILL.md |
|
|
244
|
+
| **VA** | Validate Agent — check BMAD+ compliance |
|
|
245
|
+
| **PA** | Package Agent — generate the integration folder |
|
|
246
246
|
|
|
247
247
|
**Pipeline:** Discovery ? Design (user validation) ? Generation ? Validation
|
|
248
|
-
**Output:** `_bmad-output/ready-to-integrate/`
|
|
248
|
+
**Output:** `_bmad-output/ready-to-integrate/` — ready to copy into BMAD+
|
|
249
249
|
|
|
250
250
|
---
|
|
251
251
|
|
|
@@ -259,18 +259,18 @@ npx bmad-plus install
|
|
|
259
259
|
??? Which packs to install?
|
|
260
260
|
Core (Atlas, Forge, Sentinel, Nexus) is always included.
|
|
261
261
|
|
|
262
|
-
?? OSINT
|
|
263
|
-
?? Agent Creator
|
|
264
|
-
??? Security Audit
|
|
262
|
+
?? OSINT — Shadow (investigation, scraping, psychoprofiling)
|
|
263
|
+
?? Agent Creator — Maker (design, build, package)
|
|
264
|
+
??? Security Audit — Shield (vulnerability scan) [soon]
|
|
265
265
|
?? Install everything
|
|
266
|
-
None
|
|
266
|
+
None — Core only
|
|
267
267
|
```
|
|
268
268
|
|
|
269
269
|
| Pack | Agents | Skills | Status |
|
|
270
270
|
|------|--------|--------|--------|
|
|
271
271
|
| ?? **Core** | Atlas, Forge, Sentinel, Nexus | autopilot, parallel | ? Stable |
|
|
272
272
|
| ?? **OSINT** | Shadow | bmad-osint-investigate | ? Stable |
|
|
273
|
-
| ?? **Maker** | Maker |
|
|
273
|
+
| ?? **Maker** | Maker | — | ? Stable |
|
|
274
274
|
| ??? **Audit** | Shield | bmad-audit-scan, bmad-audit-report | ?? Coming soon |
|
|
275
275
|
|
|
276
276
|
Each pack defines:
|
|
@@ -292,7 +292,7 @@ Each agent can **automatically** switch roles when the context requires it:
|
|
|
292
292
|
| ?? **Contextual** | Domain detected during work | Financial calculations ? QA auto-activated after code |
|
|
293
293
|
| ?? **Reasoning** | Logic chain during execution | Architecture inconsistency ? Architect auto-activated |
|
|
294
294
|
|
|
295
|
-
The agent **announces** its auto-activations: *"?? I'm switching to QA mode
|
|
295
|
+
The agent **announces** its auto-activations: *"?? I'm switching to QA mode — financial calculations detected. Say 'skip' to stay in current mode."*
|
|
296
296
|
|
|
297
297
|
Configuration: `src/bmad-plus/data/role-triggers.yaml`
|
|
298
298
|
|
|
@@ -317,9 +317,9 @@ Give a project idea ? Nexus orchestrates the complete pipeline:
|
|
|
317
317
|
```
|
|
318
318
|
|
|
319
319
|
**Configurable checkpoints:**
|
|
320
|
-
- `require_approval` (??)
|
|
321
|
-
- `notify_only` (??)
|
|
322
|
-
- `auto` (??)
|
|
320
|
+
- `require_approval` (??) — Pause, wait for approval
|
|
321
|
+
- `notify_only` (??) — Notification, continues unless intervened
|
|
322
|
+
- `auto` (??) — Continues automatically
|
|
323
323
|
|
|
324
324
|
### 3. Supervised Parallel Execution
|
|
325
325
|
|
|
@@ -360,33 +360,33 @@ BMAD+/
|
|
|
360
360
|
+-- GEMINI.md ? Gemini CLI Config
|
|
361
361
|
+-- AGENTS.md ? Codex CLI / OpenCode Config
|
|
362
362
|
+-- .gitignore
|
|
363
|
-
|
|
363
|
+
¦
|
|
364
364
|
+-- src/
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
365
|
+
¦ +-- bmad-plus/ ? CUSTOM MODULE
|
|
366
|
+
¦ +-- module.yaml ? Module + packs config
|
|
367
|
+
¦ +-- module-help.csv ? Contextual help
|
|
368
|
+
¦ +-- agents/
|
|
369
|
+
¦ ¦ +-- agent-strategist/ ? Atlas (analyst + pm)
|
|
370
|
+
¦ ¦ +-- agent-architect-dev/ ? Forge (architect + dev + tw)
|
|
371
|
+
¦ ¦ +-- agent-quality/ ? Sentinel (qa + ux)
|
|
372
|
+
¦ ¦ +-- agent-orchestrator/ ? Nexus (sm + qf + autopilot + parallel)
|
|
373
|
+
¦ ¦ +-- agent-maker/ ? Maker (meta-agent) [pack: maker]
|
|
374
|
+
¦ ¦ +-- agent-shadow/ ? Shadow (osint) [pack: osint]
|
|
375
|
+
¦ +-- skills/
|
|
376
|
+
¦ ¦ +-- bmad-plus-autopilot/ ? Automated pipeline
|
|
377
|
+
¦ ¦ +-- bmad-plus-parallel/ ? Parallel execution
|
|
378
|
+
¦ +-- data/
|
|
379
|
+
¦ +-- role-triggers.yaml ? Auto-activation rules
|
|
380
|
+
¦
|
|
381
381
|
+-- tools/
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
382
|
+
¦ +-- cli/ ??? NPX INSTALLER
|
|
383
|
+
¦ +-- install.js ? npx bmad-plus install
|
|
384
|
+
¦
|
|
385
385
|
+-- osint-agent-package/ ?? OSINT PACKAGE
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
386
|
+
¦ +-- agents/ ? Shadow Agent (OSINT investigator)
|
|
387
|
+
¦ +-- skills/ ? 55+ Apify actors
|
|
388
|
+
¦ +-- install.ps1 ? Installation script
|
|
389
|
+
¦
|
|
390
390
|
+-- upstream/ ?? UPSTREAM REFERENCE
|
|
391
391
|
+-- (clone of BMAD-METHOD) ? Excluded from repo (.gitignore)
|
|
392
392
|
```
|
|
@@ -419,16 +419,17 @@ BMAD+/
|
|
|
419
419
|
|
|
420
420
|
| Version | Date | Description |
|
|
421
421
|
|---------|------|-------------|
|
|
422
|
-
| **0.1.0** | 2026-03-17 | ?? Foundation
|
|
423
|
-
| **0.2.0** | 2026-03-18 | ?? Oveanet Fusion
|
|
424
|
-
| **0.3.0** | 2026-03-19 | ?? SEO Engine v2.0
|
|
425
|
-
| **0.4.0** | 2026-03-19 | ?? SEO Engine v2.1
|
|
422
|
+
| **0.1.0** | 2026-03-17 | ?? Foundation — 6 agents (Atlas, Forge, Sentinel, Nexus, Shadow, Maker), 3 skills, pack system, multi-IDE support |
|
|
423
|
+
| **0.2.0** | 2026-03-18 | ?? Oveanet Fusion — 3 new utility packs: SEO Audit 360, Universal Backup, Animated Website |
|
|
424
|
+
| **0.3.0** | 2026-03-19 | ?? SEO Engine v2.0 — 3 multi-role agents, 4 Python scripts, 6-phase workflow, PageSpeed loop, GEO analysis |
|
|
425
|
+
| **0.4.0** | 2026-03-19 | ?? SEO Engine v2.1 — SKILL.md orchestrator, Google APIs, HTML reports, competitor benchmark, 50 tests, GSC + GA4 extensions |
|
|
426
426
|
| **0.4.1** | 2026-03-19 |
|
|
427
427
|
| **0.4.2** | 2026-03-19 | Public packs SEO/Backup/Animated agents now in npm package | ?? 10-language CLI, CI/CD pipeline, `.npmignore`, `/deploy` workflow, security hardening |
|
|
428
428
|
| **0.4.3** | 2026-05-17 | ?? update + doctor commands, i18n complete, credits fix |
|
|
429
429
|
| **0.4.4** | 2026-05-17 | ?? UTF-8 encoding fix, complete i18n 10 languages, 62 unit tests |
|
|
430
|
-
| **0.6.0** | 2026-05-17 | ??? **Pack Dev Studio**
|
|
431
|
-
| **0.5.0** | 2026-05-17 | ??? **Pack Shield**
|
|
430
|
+
| **0.6.0** | 2026-05-17 | ??? **Pack Dev Studio** — 6 Torah-named agents (Miriam, Yosef, Bezalel...) + 30 SDLC workflows, BWML DSL |
|
|
431
|
+
| **0.5.0** | 2026-05-17 | ??? **Pack Shield** — 38 GRC compliance agents, 7 categories, 25+ frameworks (GDPR, ISO 27001, SOC 2, EU AI Act...) |
|
|
432
|
+
| **0.7.5** | 2026-05-17 | MIT LICENSE, PACKS/module.yaml sync in doctor + tests, 97 unit tests, global brain consolidation |
|
|
432
433
|
|
|
433
434
|
See [CHANGELOG.md](CHANGELOG.md) for full details.
|
|
434
435
|
|
|
@@ -436,11 +437,11 @@ See [CHANGELOG.md](CHANGELOG.md) for full details.
|
|
|
436
437
|
|
|
437
438
|
## ?? License
|
|
438
439
|
|
|
439
|
-
MIT
|
|
440
|
+
MIT — Based on [BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) (MIT)
|
|
440
441
|
|
|
441
442
|
### Credits
|
|
442
443
|
|
|
443
444
|
- **BMAD+** Created by [Laurent Rochetta](https://github.com/lrochetta) ([LinkedIn](https://www.linkedin.com/in/laurentrochetta/))
|
|
444
|
-
- **BMAD-METHOD** by [bmad-code-org](https://github.com/bmad-code-org)
|
|
445
|
+
- **BMAD-METHOD** by [bmad-code-org](https://github.com/bmad-code-org) — Base framework
|
|
445
446
|
- **OSINT Pipeline** based on [smixs/osint-skill](https://github.com/smixs/osint-skill) (MIT)
|
|
446
447
|
- **Apify Actor Runner** integrated from [apify/agent-skills](https://github.com/apify/agent-skills) (MIT)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-plus",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.5",
|
|
5
5
|
"description": "BMAD+ — Augmented AI-Driven Development Framework with multi-role agents, autopilot, and parallel execution",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"bmad",
|