bmad-elsabro 1.1.0 → 1.2.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-elsabro",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"description": "BMAD-ElSabro: Enhanced AI-driven agile development with Guided Mode, Auto-Parallelization, YOLO Mode, and Brownfield support",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"agile",
|
package/src/bmm/module.yaml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
code: bmm
|
|
2
|
-
name: "
|
|
3
|
-
description: "AI-driven agile development
|
|
2
|
+
name: "ElSabro - Enhanced AI-Driven Development"
|
|
3
|
+
description: "AI-driven agile development with YOLO Mode, Auto-Parallelization, Guided Mode, and Brownfield support"
|
|
4
4
|
default_selected: true # This module will be selected by default for new installations
|
|
5
5
|
|
|
6
6
|
# Variables from Core Config inserted:
|
package/src/core/module.yaml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
code: core
|
|
2
|
-
name: "
|
|
2
|
+
name: "ElSabro Core Module"
|
|
3
3
|
|
|
4
|
-
header: "
|
|
5
|
-
subheader: "Configure the core settings for your
|
|
4
|
+
header: "ElSabro Core Configuration"
|
|
5
|
+
subheader: "Configure the core settings for your ElSabro installation.\nThese settings will be used across all modules and agents."
|
|
6
6
|
|
|
7
7
|
user_name:
|
|
8
8
|
prompt: "What should agents call you? (Use your name or a team name)"
|
|
9
|
-
default: "
|
|
9
|
+
default: "Developer"
|
|
10
10
|
result: "{value}"
|
|
11
11
|
|
|
12
12
|
communication_language:
|
|
@@ -6,7 +6,7 @@ modules:
|
|
|
6
6
|
url: https://github.com/bmad-code-org/bmad-builder
|
|
7
7
|
module-definition: src/module.yaml
|
|
8
8
|
code: bmb
|
|
9
|
-
name: "
|
|
9
|
+
name: "ElSabro Builder"
|
|
10
10
|
description: "Agent, Workflow and Module Builder"
|
|
11
11
|
defaultSelected: false
|
|
12
12
|
type: bmad-org
|
|
@@ -16,7 +16,7 @@ modules:
|
|
|
16
16
|
url: https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite
|
|
17
17
|
module-definition: src/module.yaml
|
|
18
18
|
code: cis
|
|
19
|
-
name: "
|
|
19
|
+
name: "ElSabro Creative Innovation Suite"
|
|
20
20
|
description: "Creative tools for writing, brainstorming, and more"
|
|
21
21
|
defaultSelected: false
|
|
22
22
|
type: bmad-org
|
|
@@ -26,7 +26,7 @@ modules:
|
|
|
26
26
|
url: https://github.com/bmad-code-org/bmad-module-game-dev-studio.git
|
|
27
27
|
module-definition: src/module.yaml
|
|
28
28
|
code: gds
|
|
29
|
-
name: "
|
|
29
|
+
name: "ElSabro Game Dev Suite"
|
|
30
30
|
description: "Game development agents and workflows"
|
|
31
31
|
defaultSelected: false
|
|
32
32
|
type: bmad-org
|
package/tools/cli/lib/ui.js
CHANGED
|
@@ -791,7 +791,7 @@ class UI {
|
|
|
791
791
|
coreModules.sort((a, b) => a.sortKey - b.sortKey);
|
|
792
792
|
// Remove sortKey from final entries
|
|
793
793
|
if (coreModules.length > 0) {
|
|
794
|
-
groupedOptions['
|
|
794
|
+
groupedOptions['ElSabro Core'] = coreModules.map(({ label, value }) => ({ label, value }));
|
|
795
795
|
}
|
|
796
796
|
|
|
797
797
|
// Group 2: BMad Official Modules (type: bmad-org)
|
|
@@ -807,7 +807,7 @@ class UI {
|
|
|
807
807
|
}
|
|
808
808
|
officialModules.sort((a, b) => a.sortKey - b.sortKey);
|
|
809
809
|
if (officialModules.length > 0) {
|
|
810
|
-
groupedOptions['
|
|
810
|
+
groupedOptions['ElSabro Official Modules'] = officialModules.map(({ label, value }) => ({ label, value }));
|
|
811
811
|
}
|
|
812
812
|
|
|
813
813
|
// Group 3: Community Modules (type: community)
|