bmad-enhanced 1.3.8 → 1.4.0
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/README.md +103 -124
- package/package.json +1 -1
- package/scripts/install-all-agents.js +53 -207
- package/scripts/postinstall.js +10 -7
- package/scripts/update/bmad-migrate.js +58 -5
- package/scripts/update/bmad-update.js +17 -7
- package/scripts/update/bmad-version.js +20 -6
- package/scripts/update/lib/backup-manager.js +22 -58
- package/scripts/update/lib/config-merger.js +1 -35
- package/scripts/update/lib/migration-runner.js +78 -114
- package/scripts/update/lib/refresh-installation.js +132 -0
- package/scripts/update/lib/utils.js +96 -0
- package/scripts/update/lib/validator.js +31 -151
- package/scripts/update/lib/version-detector.js +36 -41
- package/scripts/update/migrations/1.0.x-to-1.3.0.js +41 -222
- package/scripts/update/migrations/1.1.x-to-1.3.0.js +7 -188
- package/scripts/update/migrations/1.2.x-to-1.3.0.js +7 -188
- package/scripts/update/migrations/registry.js +27 -52
package/README.md
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
> Strategic framing and validated learning through Emma and Wade
|
|
6
6
|
|
|
7
|
-
[]()
|
|
8
|
+
[]()
|
|
9
9
|
[]()
|
|
10
10
|
[]()
|
|
11
11
|
[]()
|
|
@@ -44,29 +44,19 @@ Contextualize Stream Externalize Stream
|
|
|
44
44
|
|
|
45
45
|
### Prerequisites
|
|
46
46
|
|
|
47
|
-
**⚠️ IMPORTANT: BMAD Method Required**
|
|
48
|
-
|
|
49
|
-
BMAD-Enhanced is an extension package. You must have [BMAD Method](https://github.com/bmadhub/bmad) installed first:
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
# Install BMAD Method first
|
|
53
|
-
npx bmad-method@alpha install
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
**Additional Requirements:**
|
|
57
47
|
- Node.js 14+ or Bun
|
|
58
48
|
- Git
|
|
59
49
|
- Claude Code or Claude.ai
|
|
60
50
|
|
|
61
|
-
|
|
51
|
+
**Optional:** [BMAD Method](https://github.com/bmadhub/bmad) - BMAD-Enhanced works standalone or as an extension to BMAD Method.
|
|
62
52
|
|
|
63
|
-
|
|
53
|
+
### One-Command Installation
|
|
64
54
|
|
|
65
55
|
```bash
|
|
66
|
-
npm install bmad-enhanced
|
|
56
|
+
npm install bmad-enhanced && npx bmad-install-agents
|
|
67
57
|
```
|
|
68
58
|
|
|
69
|
-
That's it! Emma and Wade (Vortex framework) with all 7 workflows are
|
|
59
|
+
That's it! Emma and Wade (Vortex framework) with all 7 workflows are installed.
|
|
70
60
|
|
|
71
61
|
### Installation
|
|
72
62
|
|
|
@@ -74,7 +64,7 @@ That's it! Emma and Wade (Vortex framework) with all 7 workflows are now added t
|
|
|
74
64
|
|
|
75
65
|
```bash
|
|
76
66
|
# Install into your project
|
|
77
|
-
npm install bmad-enhanced
|
|
67
|
+
npm install bmad-enhanced
|
|
78
68
|
|
|
79
69
|
# Install all agents (Emma + Wade) with all 7 workflows
|
|
80
70
|
npx bmad-install-agents
|
|
@@ -105,7 +95,7 @@ cat _bmad/bme/_vortex/agents/contextualization-expert.md
|
|
|
105
95
|
- Wade: mvp, lean-experiment, proof-of-concept, proof-of-value
|
|
106
96
|
- Configuration file (`_bmad/bme/_vortex/config.yaml`)
|
|
107
97
|
- Output directory (`_bmad-output/vortex-artifacts/`)
|
|
108
|
-
- User guides (Emma & Wade
|
|
98
|
+
- User guides (Emma & Wade)
|
|
109
99
|
|
|
110
100
|
### Your First Lean Persona with Emma
|
|
111
101
|
|
|
@@ -212,13 +202,14 @@ npx bmad-update
|
|
|
212
202
|
|
|
213
203
|
### Migration Paths
|
|
214
204
|
|
|
215
|
-
**From v1.1.x to v1.3.
|
|
205
|
+
**From v1.1.x or v1.2.x to v1.3.x:**
|
|
216
206
|
- No breaking changes
|
|
217
207
|
- Agent files refreshed (bug fixes)
|
|
208
|
+
- Legacy `_designos` directory removed
|
|
218
209
|
- User guides updated
|
|
219
210
|
|
|
220
|
-
**From v1.0.x to v1.3.
|
|
221
|
-
-
|
|
211
|
+
**From v1.0.x to v1.3.x:**
|
|
212
|
+
- Breaking: empathy-map → lean-persona
|
|
222
213
|
- Old workflows preserved in `_deprecated/`
|
|
223
214
|
- 7 new workflows installed
|
|
224
215
|
|
|
@@ -263,7 +254,7 @@ All agents built using a standard pattern:
|
|
|
263
254
|
|
|
264
255
|
### Emma (contextualization-expert) - ✅ COMPLETE
|
|
265
256
|
|
|
266
|
-
**Status:** v1.
|
|
257
|
+
**Status:** v1.3.8 - All 3 workflows implemented and ready to use
|
|
267
258
|
**Title:** Contextualization Expert 🎯
|
|
268
259
|
**Stream:** Contextualize
|
|
269
260
|
**Domain:** Strategic framing, problem-product space navigation
|
|
@@ -289,7 +280,7 @@ All agents built using a standard pattern:
|
|
|
289
280
|
|
|
290
281
|
### Wade (lean-experiments-specialist) - ✅ COMPLETE
|
|
291
282
|
|
|
292
|
-
**Status:** v1.
|
|
283
|
+
**Status:** v1.3.8 - All 4 workflows implemented and ready to use
|
|
293
284
|
**Title:** Lean Experiments Specialist 🧪
|
|
294
285
|
**Stream:** Externalize
|
|
295
286
|
**Domain:** Lean Startup experimentation, validated learning
|
|
@@ -316,30 +307,32 @@ All agents built using a standard pattern:
|
|
|
316
307
|
|
|
317
308
|
## 📊 Project Status
|
|
318
309
|
|
|
319
|
-
**Current Version:** v1.
|
|
310
|
+
**Current Version:** v1.3.8 - Complete Vortex Framework + Update/Migration System ✅
|
|
320
311
|
|
|
321
312
|
**Progress:**
|
|
322
|
-
- ✅ Emma - 3 Contextualize workflows IMPLEMENTED
|
|
323
|
-
- ✅ Wade - 4 Externalize workflows IMPLEMENTED
|
|
313
|
+
- ✅ Emma - 3 Contextualize workflows IMPLEMENTED
|
|
314
|
+
- ✅ Wade - 4 Externalize workflows IMPLEMENTED
|
|
324
315
|
- ✅ 56 workflow files created (7 workflows × 8 files each)
|
|
325
|
-
- ✅
|
|
316
|
+
- ✅ Update/migration system with backup and rollback
|
|
317
|
+
- ✅ Standalone installation support (no BMAD Method required)
|
|
326
318
|
|
|
327
|
-
**What's New in v1.
|
|
328
|
-
- **
|
|
329
|
-
- **
|
|
330
|
-
- **
|
|
331
|
-
- **
|
|
319
|
+
**What's New in v1.3.x:**
|
|
320
|
+
- **Update/migration system** - `npx bmad-update`, `npx bmad-version`, `npx bmad-migrate`
|
|
321
|
+
- **Automatic backups** - Before every migration, with rollback on failure
|
|
322
|
+
- **Standalone support** - Works without BMAD Method installed
|
|
323
|
+
- **Legacy cleanup** - Removes deprecated `_designos` directory and old agents
|
|
324
|
+
- **Migration paths** - Supports upgrade from v1.0.x, v1.1.x, v1.2.x
|
|
332
325
|
|
|
333
326
|
**Roadmap:**
|
|
334
327
|
```
|
|
335
|
-
v1.1.0 v1.2.0 v1.3.
|
|
328
|
+
v1.1.0 v1.2.0 v1.3.x ✅ v2.0.0
|
|
336
329
|
├─────────────────┬────────────────────────┬──────────────────┬──────────────────┤
|
|
337
|
-
│ Repositioning ✅ │ Workflows ✅ │ Tooling
|
|
330
|
+
│ Repositioning ✅ │ Workflows ✅ │ Tooling ✅ │ Advanced 📋 │
|
|
338
331
|
│ • New identity │ • 7 workflows │ • Update tools │ • Multi-agent │
|
|
339
332
|
│ • Framework │ • Templates │ • Migration │ • Integration │
|
|
340
333
|
│ • Structure │ • User guides │ • Automation │ • Analytics │
|
|
341
334
|
└─────────────────┴────────────────────────┴──────────────────┴──────────────────┘
|
|
342
|
-
Feb 2026 Feb 2026
|
|
335
|
+
Feb 2026 Feb 2026 Feb 2026 Q3 2026
|
|
343
336
|
```
|
|
344
337
|
|
|
345
338
|
**See:** [CHANGELOG.md](CHANGELOG.md) for complete version history
|
|
@@ -350,10 +343,8 @@ v1.1.0 v1.2.0 v1.3.0 v2.0.0
|
|
|
350
343
|
|
|
351
344
|
### User Guides
|
|
352
345
|
|
|
353
|
-
- **[Emma User Guide](_bmad-output/
|
|
354
|
-
- Wade User Guide -
|
|
355
|
-
- Quinn User Guide - Coming Week 2, Day 3
|
|
356
|
-
- Stan User Guide - Coming Week 2, Day 7
|
|
346
|
+
- **[Emma User Guide](_bmad-output/vortex-artifacts/EMMA-USER-GUIDE.md)** - Complete guide to strategic contextualization with Emma
|
|
347
|
+
- **[Wade User Guide](_bmad-output/vortex-artifacts/WADE-USER-GUIDE.md)** - Complete guide to lean experiments with Wade
|
|
357
348
|
|
|
358
349
|
### Technical Documentation
|
|
359
350
|
|
|
@@ -425,8 +416,8 @@ Clear, comprehensive documentation:
|
|
|
425
416
|
|
|
426
417
|
1. **Clone Emma's structure:**
|
|
427
418
|
```bash
|
|
428
|
-
cp
|
|
429
|
-
|
|
419
|
+
cp _bmad/bme/_vortex/agents/contextualization-expert.md \
|
|
420
|
+
_bmad/bme/_vortex/agents/your-agent.md
|
|
430
421
|
```
|
|
431
422
|
|
|
432
423
|
2. **Customize the agent:**
|
|
@@ -506,28 +497,18 @@ Clear, comprehensive documentation:
|
|
|
506
497
|
|
|
507
498
|
## 📈 Roadmap
|
|
508
499
|
|
|
509
|
-
###
|
|
510
|
-
|
|
511
|
-
**Week 1:**
|
|
512
|
-
- ✅ Day 1-2: Emma (contextualization-expert) - COMPLETE
|
|
513
|
-
- ✅ Day 3-7: Wade (lean-experiments-specialist) - COMPLETE
|
|
514
|
-
|
|
515
|
-
**Week 2:**
|
|
516
|
-
- 📋 Day 1-3: Sage (quality-gatekeeper)
|
|
517
|
-
- 📋 Day 4-7: Stan (standards-auditor)
|
|
500
|
+
### Completed
|
|
518
501
|
|
|
519
|
-
**
|
|
520
|
-
-
|
|
521
|
-
-
|
|
522
|
-
- 📋 Decision gate (evaluate success, plan next phase)
|
|
502
|
+
- ✅ **v1.1.0** - Vortex Framework repositioning (Emma + Wade)
|
|
503
|
+
- ✅ **v1.2.0** - All 7 workflows implemented (56 files)
|
|
504
|
+
- ✅ **v1.3.x** - Update/migration system with backup and rollback
|
|
523
505
|
|
|
524
|
-
### Future
|
|
506
|
+
### Future (v2.0.0+)
|
|
525
507
|
|
|
526
|
-
|
|
527
|
-
-
|
|
528
|
-
-
|
|
529
|
-
-
|
|
530
|
-
- Phase 4: Community agents (open for contributions)
|
|
508
|
+
- 📋 Multi-agent collaboration patterns
|
|
509
|
+
- 📋 Cross-agent workflow integration
|
|
510
|
+
- 📋 Analytics and reporting
|
|
511
|
+
- 📋 Community agent contributions
|
|
531
512
|
|
|
532
513
|
---
|
|
533
514
|
|
|
@@ -570,7 +551,7 @@ We welcome contributions! Areas where we need help:
|
|
|
570
551
|
- No validation plan for strategy
|
|
571
552
|
- Weeks of strategic discussion
|
|
572
553
|
|
|
573
|
-
**After (v1.
|
|
554
|
+
**After (v1.3.x):**
|
|
574
555
|
- Clear problem space framing: 1-2 hours
|
|
575
556
|
- Explicit assumption mapping
|
|
576
557
|
- Built-in validation planning
|
|
@@ -586,7 +567,7 @@ We welcome contributions! Areas where we need help:
|
|
|
586
567
|
- No structured experiment process
|
|
587
568
|
- 6-12 months to market validation
|
|
588
569
|
|
|
589
|
-
**After (v1.
|
|
570
|
+
**After (v1.3.x):**
|
|
590
571
|
- Rapid experiment design: 2-3 hours
|
|
591
572
|
- Minimal investment in learning
|
|
592
573
|
- Structured Build-Measure-Learn cycles
|
|
@@ -613,13 +594,13 @@ We welcome contributions! Areas where we need help:
|
|
|
613
594
|
### Emma (Operational Metrics)
|
|
614
595
|
|
|
615
596
|
**Adoption (Target):**
|
|
616
|
-
- 50+ teams using Emma for
|
|
597
|
+
- 50+ teams using Emma for strategic contextualization
|
|
617
598
|
- 80%+ complete the full 6-step workflow
|
|
618
599
|
- NPS ≥8
|
|
619
600
|
|
|
620
601
|
**Quality (Target):**
|
|
621
|
-
- 90%+
|
|
622
|
-
- 95%+ artifacts include all required sections
|
|
602
|
+
- 90%+ lean personas grounded in research evidence
|
|
603
|
+
- 95%+ artifacts include all required sections (assumptions, validation plan)
|
|
623
604
|
|
|
624
605
|
**Performance (Measured):**
|
|
625
606
|
- Complete workflow: 30-60 minutes
|
|
@@ -628,14 +609,14 @@ We welcome contributions! Areas where we need help:
|
|
|
628
609
|
### Wade (Operational Metrics)
|
|
629
610
|
|
|
630
611
|
**Adoption (Target):**
|
|
631
|
-
- 50+ teams using Wade for
|
|
612
|
+
- 50+ teams using Wade for lean experiments
|
|
632
613
|
- 80%+ complete the full 6-step workflow
|
|
633
614
|
- NPS ≥8
|
|
634
615
|
|
|
635
616
|
**Quality (Target):**
|
|
636
|
-
- 90%+
|
|
637
|
-
- 95%+ artifacts include
|
|
638
|
-
- 85%+ pass
|
|
617
|
+
- 90%+ experiments include clear hypothesis and success metrics
|
|
618
|
+
- 95%+ artifacts include pivot-or-persevere decision criteria
|
|
619
|
+
- 85%+ pass validated learning checklist
|
|
639
620
|
|
|
640
621
|
**Performance (Measured):**
|
|
641
622
|
- Complete workflow: 45-90 minutes
|
|
@@ -645,7 +626,7 @@ We welcome contributions! Areas where we need help:
|
|
|
645
626
|
|
|
646
627
|
**Adoption:**
|
|
647
628
|
- 100+ teams using BMAD-Enhanced agents
|
|
648
|
-
-
|
|
629
|
+
- 2/2 Vortex agents in production
|
|
649
630
|
- Community agents contributed
|
|
650
631
|
|
|
651
632
|
**Quality:**
|
|
@@ -656,63 +637,62 @@ We welcome contributions! Areas where we need help:
|
|
|
656
637
|
|
|
657
638
|
## 🔍 Sample Output
|
|
658
639
|
|
|
659
|
-
### Emma
|
|
640
|
+
### Emma Lean Persona Artifact
|
|
660
641
|
|
|
661
|
-
Emma generates comprehensive
|
|
642
|
+
Emma generates comprehensive lean personas with:
|
|
662
643
|
|
|
663
644
|
**Executive Summary:**
|
|
664
|
-
-
|
|
665
|
-
- Top
|
|
666
|
-
-
|
|
645
|
+
- Jobs-to-be-done identification
|
|
646
|
+
- Top riskiest assumptions
|
|
647
|
+
- Validation plan priorities
|
|
667
648
|
|
|
668
649
|
**Detailed Sections:**
|
|
669
|
-
- Target user profile (demographics,
|
|
670
|
-
-
|
|
671
|
-
- Does & Feels (actions + emotions)
|
|
650
|
+
- Target user profile (demographics, context, goals)
|
|
651
|
+
- Jobs-to-be-done (functional, emotional, social)
|
|
672
652
|
- Pain points (prioritized: HIGH/MEDIUM/LOW)
|
|
673
|
-
-
|
|
653
|
+
- Current alternatives and workarounds
|
|
654
|
+
- Riskiest assumptions (ranked by impact and uncertainty)
|
|
674
655
|
|
|
675
|
-
**
|
|
676
|
-
-
|
|
677
|
-
-
|
|
678
|
-
-
|
|
656
|
+
**Validation Planning:**
|
|
657
|
+
- Which assumptions to test first
|
|
658
|
+
- Suggested experiment types
|
|
659
|
+
- Success/failure criteria
|
|
679
660
|
|
|
680
|
-
**
|
|
681
|
-
|
|
|
682
|
-
|
|
683
|
-
|
|
|
661
|
+
**Assumption Prioritization Matrix:**
|
|
662
|
+
| Assumption | Risk Level | Experiment Type | Priority |
|
|
663
|
+
|------------|-----------|-----------------|----------|
|
|
664
|
+
| Users want X | HIGH | Interview | P0 |
|
|
684
665
|
|
|
685
|
-
**See:** [
|
|
666
|
+
**See:** [Emma User Guide](_bmad-output/vortex-artifacts/EMMA-USER-GUIDE.md) for examples
|
|
686
667
|
|
|
687
|
-
### Wade
|
|
668
|
+
### Wade MVP Specification Artifact
|
|
688
669
|
|
|
689
|
-
Wade generates comprehensive
|
|
670
|
+
Wade generates comprehensive MVP specs with:
|
|
690
671
|
|
|
691
672
|
**Executive Summary:**
|
|
692
|
-
-
|
|
693
|
-
-
|
|
694
|
-
-
|
|
673
|
+
- Riskiest assumption to test
|
|
674
|
+
- MVP type and scope
|
|
675
|
+
- Build-Measure-Learn cycle plan
|
|
695
676
|
|
|
696
677
|
**Detailed Sections:**
|
|
697
|
-
-
|
|
698
|
-
-
|
|
699
|
-
-
|
|
700
|
-
-
|
|
701
|
-
-
|
|
702
|
-
|
|
703
|
-
**
|
|
704
|
-
-
|
|
705
|
-
-
|
|
706
|
-
-
|
|
707
|
-
-
|
|
708
|
-
|
|
709
|
-
**
|
|
710
|
-
-
|
|
711
|
-
-
|
|
712
|
-
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
**See:** [Wade User Guide](_bmad-output/design-artifacts/WADE-USER-GUIDE.md) for examples
|
|
678
|
+
- Hypothesis statement (testable, falsifiable)
|
|
679
|
+
- MVP scope (minimum needed to test assumption)
|
|
680
|
+
- Success metrics (quantitative thresholds)
|
|
681
|
+
- Measurement plan (how to collect data)
|
|
682
|
+
- Timeline and resource requirements
|
|
683
|
+
|
|
684
|
+
**Experiment Design:**
|
|
685
|
+
- Target audience and sample size
|
|
686
|
+
- Data collection methods
|
|
687
|
+
- Analysis approach
|
|
688
|
+
- Pivot-or-persevere decision criteria
|
|
689
|
+
|
|
690
|
+
**Decision Framework:**
|
|
691
|
+
- Evidence thresholds for persevere
|
|
692
|
+
- Evidence thresholds for pivot
|
|
693
|
+
- Kill criteria
|
|
694
|
+
|
|
695
|
+
**See:** [Wade User Guide](_bmad-output/vortex-artifacts/WADE-USER-GUIDE.md) for examples
|
|
716
696
|
|
|
717
697
|
---
|
|
718
698
|
|
|
@@ -720,14 +700,13 @@ Wade generates comprehensive wireframes with:
|
|
|
720
700
|
|
|
721
701
|
### For Users
|
|
722
702
|
|
|
723
|
-
**Emma (
|
|
724
|
-
- **[Emma User Guide](_bmad-output/
|
|
725
|
-
-
|
|
726
|
-
- Emma's chat mode (CH command) - Ask Emma questions about empathy mapping
|
|
703
|
+
**Emma (Strategic Contextualization):**
|
|
704
|
+
- **[Emma User Guide](_bmad-output/vortex-artifacts/EMMA-USER-GUIDE.md)** - Complete guide with examples
|
|
705
|
+
- Emma's chat mode (CH command) - Ask Emma questions about lean personas, product vision, and scope
|
|
727
706
|
|
|
728
|
-
**Wade (
|
|
729
|
-
- **[Wade User Guide](_bmad-output/
|
|
730
|
-
- Wade's chat mode (CH command) - Ask Wade questions about
|
|
707
|
+
**Wade (Lean Experiments):**
|
|
708
|
+
- **[Wade User Guide](_bmad-output/vortex-artifacts/WADE-USER-GUIDE.md)** - Complete guide with examples
|
|
709
|
+
- Wade's chat mode (CH command) - Ask Wade questions about MVPs, experiments, and validated learning
|
|
731
710
|
|
|
732
711
|
### For Developers
|
|
733
712
|
|
|
@@ -747,7 +726,7 @@ Wade generates comprehensive wireframes with:
|
|
|
747
726
|
|
|
748
727
|
### 1. Domain Specialization Over Generic Tools
|
|
749
728
|
|
|
750
|
-
Each agent brings deep expertise in a specific domain (
|
|
729
|
+
Each agent brings deep expertise in a specific domain (strategic framing, lean experimentation) rather than generic capabilities.
|
|
751
730
|
|
|
752
731
|
### 2. Standard Interface, Diverse Expertise
|
|
753
732
|
|
|
@@ -755,7 +734,7 @@ All agents use BMAD Agent Architecture Framework for consistency, but each has u
|
|
|
755
734
|
|
|
756
735
|
### 3. Research-Driven Design
|
|
757
736
|
|
|
758
|
-
Workflows based on proven frameworks (Jobs-to-be-Done,
|
|
737
|
+
Workflows based on proven frameworks (Jobs-to-be-Done, Lean Startup, Build-Measure-Learn).
|
|
759
738
|
|
|
760
739
|
### 4. Test-First Development
|
|
761
740
|
|
|
@@ -807,7 +786,7 @@ Built on:
|
|
|
807
786
|
|
|
808
787
|
**Original vision (archived):** [ORIGINAL-VISION-README.md](_bmad-output/planning-artifacts/ORIGINAL-VISION-README.md)
|
|
809
788
|
|
|
810
|
-
**Current approach:**
|
|
789
|
+
**Current approach:** Vortex Framework with 2 specialized agents (Emma, Wade) using BMAD Agent Architecture Framework.
|
|
811
790
|
|
|
812
791
|
### What happened to empathy mapping and wireframing?
|
|
813
792
|
|
|
@@ -832,7 +811,7 @@ Built on:
|
|
|
832
811
|
|
|
833
812
|
### Are the new workflows ready?
|
|
834
813
|
|
|
835
|
-
**Yes!
|
|
814
|
+
**Yes! All 7 workflows are fully implemented (since v1.2.0) and ready to use:**
|
|
836
815
|
|
|
837
816
|
**Emma (Contextualize):**
|
|
838
817
|
- lean-persona (6-step workflow)
|
|
@@ -872,7 +851,7 @@ Each workflow includes templates, step files, and comprehensive guidance.
|
|
|
872
851
|
|
|
873
852
|
[Get Started](#quick-start) • [Documentation](#documentation) • [Roadmap](#roadmap)
|
|
874
853
|
|
|
875
|
-
**Current Status:** ✅ v1.
|
|
854
|
+
**Current Status:** ✅ v1.3.8 Stable - Vortex Framework Complete
|
|
876
855
|
|
|
877
856
|
Made with ❤️ by the BMAD-Enhanced community
|
|
878
857
|
|