Skip to content

Commit 9bba06a

Browse files
committed
chore: update package version to 1.0.2 and modify external module definitions
1 parent 2c28d8c commit 9bba06a

File tree

3 files changed

+33
-31
lines changed

3 files changed

+33
-31
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@evoapi/evo-method",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"description": "Evolve, Validate, Orchestrate — AI-driven Agile Development Method",
66
"keywords": [
77
"agile",
Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,55 @@
1-
# This file allows these modules under evo-code-org to also be installed with the evo method installer, while
2-
# allowing us to keep the source of these projects in separate repos.
1+
# This file allows additional modules to be installed with the evo method installer,
2+
# keeping their source in separate repos.
3+
#
4+
# NOTE: These modules are maintained by the upstream bmad-code-org project.
35

46
modules:
5-
evo-builder:
6-
url: https://github.com/evo-code-org/evo-builder
7+
bmad-builder:
8+
url: https://github.com/bmad-code-org/bmad-builder
79
module-definition: src/module.yaml
810
code: bmb
9-
name: "EVO Builder"
11+
name: "BMad Builder"
1012
description: "Agent, Workflow and Module Builder"
1113
defaultSelected: false
12-
type: evo-org
13-
npmPackage: evo-builder
14+
type: bmad-org
15+
npmPackage: bmad-builder
1416

15-
evo-creative-intelligence-suite:
16-
url: https://github.com/evo-code-org/evo-module-creative-intelligence-suite
17+
bmad-creative-intelligence-suite:
18+
url: https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite
1719
module-definition: src/module.yaml
1820
code: cis
19-
name: "EVO Creative Intelligence Suite"
21+
name: "BMad Creative Intelligence Suite"
2022
description: "Creative tools for writing, brainstorming, and more"
2123
defaultSelected: false
22-
type: evo-org
23-
npmPackage: evo-creative-intelligence-suite
24+
type: bmad-org
25+
npmPackage: bmad-creative-intelligence-suite
2426

25-
evo-game-dev-studio:
26-
url: https://github.com/evo-code-org/evo-module-game-dev-studio.git
27+
bmad-game-dev-studio:
28+
url: https://github.com/bmad-code-org/bmad-module-game-dev-studio.git
2729
module-definition: src/module.yaml
2830
code: gds
29-
name: "EVO Game Dev Studio"
31+
name: "BMad Game Dev Studio"
3032
description: "Game development agents and workflows"
3133
defaultSelected: false
32-
type: evo-org
33-
npmPackage: evo-game-dev-studio
34+
type: bmad-org
35+
npmPackage: bmad-game-dev-studio
3436

35-
evo-method-test-architecture-enterprise:
36-
url: https://github.com/evo-code-org/evo-method-test-architecture-enterprise
37+
bmad-method-test-architecture-enterprise:
38+
url: https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise
3739
module-definition: src/module.yaml
3840
code: tea
3941
name: "Test Architect"
4042
description: "Master Test Architect for quality strategy, test automation, and release gates"
4143
defaultSelected: false
42-
type: evo-org
43-
npmPackage: evo-method-test-architecture-enterprise
44+
type: bmad-org
45+
npmPackage: bmad-method-test-architecture-enterprise
4446

4547
# whiteport-design-system:
46-
# url: https://github.com/evo-code-org/evo-method-wds-expansion
48+
# url: https://github.com/bmad-code-org/bmad-method-wds-expansion
4749
# module-definition: src/module.yaml
4850
# code: wds
4951
# name: "Whiteport UX Design System"
5052
# description: "UX design framework with Figma integration"
5153
# defaultSelected: false
5254
# type: community
53-
# npmPackage: evo-method-wds-expansion
55+
# npmPackage: bmad-method-wds-expansion

tools/cli/lib/cli-utils.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ const CLIUtils = {
2525

2626
// ASCII art logo
2727
const logo = [
28-
' ██████╗ ██████╗ █████╗ ██████╗ ™',
29-
' ██╔══██╗████╗ ████║██╔══██╗██╔══██╗',
30-
' ██████╔╝██╔████╔██║███████║██║ ██║',
31-
' ██╔══██╗██║╚██╔╝██║██╔══██║██║ ██║',
32-
' ██████╔╝██║ ╚═╝ ██║██║ ██║██████╔╝',
33-
' ╚═════╝ ╚═╝ ╚═╝╚═╚═╝╚═════╝',
28+
' ███████╗██╗ ██╗ ██████╗ ™',
29+
' ██╔════╝██║ ██║██╔═══██╗',
30+
' █████╗ ██║ ██║██║ ██║',
31+
' ██╔══╝ ╚██╗ ██╔╝██║ ██║',
32+
' ███████╗ ╚████╔╝ ╚██████╔╝',
33+
' ╚══════╝ ╚═══ ╚═════',
3434
]
3535
.map((line) => color.yellow(line))
3636
.join('\n');
3737

38-
const tagline = ' Build More, Architect Dreams';
38+
const tagline = ' Evolve, Validate, Orchestrate';
3939

4040
await prompts.box(`${logo}\n${tagline}`, `v${version}`, {
4141
contentAlign: 'center',

0 commit comments

Comments
 (0)