bmad-method 6.10.1-next.43 → 6.10.1-next.44
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_CN.md +0 -2
- package/README_VN.md +1 -3
- package/package.json +1 -1
- package/src/bmm-skills/plan/bmad-sprint-planning/scripts/__pycache__/sprint_plan.cpython-311.pyc +0 -0
- package/src/bmm-skills/plan/bmad-sprint-planning/scripts/tests/__pycache__/test_sprint_plan.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/tests/__pycache__/test_git_evidence.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/tests/__pycache__/test_sprint_status.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/scripts/__pycache__/config_utils.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_config_utils.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_resolve_config.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_resolve_customization.cpython-311.pyc +0 -0
- package/tools/installer/ui.js +7 -3
package/README_CN.md
CHANGED
|
@@ -50,8 +50,6 @@ npx bmad-method install
|
|
|
50
50
|
npx bmad-method install --directory /path/to/project --modules bmm --tools claude-code --yes
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
[查看非交互式安装选项](https://docs.bmad-method.org/zh-cn/how-to/non-interactive-installation/)
|
|
54
|
-
|
|
55
53
|
> **不确定下一步?** 直接问 `bmad-help`。它会告诉你“必做什么、可选什么”,例如:`bmad-help 我刚完成架构设计,接下来做什么?`
|
|
56
54
|
|
|
57
55
|
## 模块
|
package/README_VN.md
CHANGED
|
@@ -54,8 +54,6 @@ Làm theo các lời nhắc của trình cài đặt, sau đó mở AI IDE của
|
|
|
54
54
|
npx bmad-method install --directory /path/to/project --modules bmm --tools claude-code --yes
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
[Xem toàn bộ tùy chọn cài đặt](https://docs.bmad-method.org/vi-vn/how-to/non-interactive-installation/)
|
|
58
|
-
|
|
59
57
|
> **Chưa chắc nên làm gì?** Hãy hỏi `bmad-help` - nó sẽ cho bạn biết chính xác bước nào tiếp theo và bước nào là tùy chọn. Bạn cũng có thể hỏi kiểu như `bmad-help Tôi vừa hoàn thành phần kiến trúc, tiếp theo tôi cần làm gì?`
|
|
60
58
|
|
|
61
59
|
## Mô-đun
|
|
@@ -106,4 +104,4 @@ Giấy phép MIT - xem [LICENSE](LICENSE) để biết chi tiết.
|
|
|
106
104
|
|
|
107
105
|
[](https://github.com/bmad-code-org/BMAD-METHOD/graphs/contributors)
|
|
108
106
|
|
|
109
|
-
Xem [CONTRIBUTORS.md](CONTRIBUTORS.md) để biết thông tin về những người đóng góp.
|
|
107
|
+
Xem [CONTRIBUTORS.md](CONTRIBUTORS.md) để biết thông tin về những người đóng góp.
|
package/package.json
CHANGED
package/src/bmm-skills/plan/bmad-sprint-planning/scripts/__pycache__/sprint_plan.cpython-311.pyc
CHANGED
|
Binary file
|
|
Binary file
|
package/src/bmm-skills/ship/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/tools/installer/ui.js
CHANGED
|
@@ -808,11 +808,15 @@ class UI {
|
|
|
808
808
|
|
|
809
809
|
const configCollector = new OfficialModules({ channelOptions: options.channelOptions });
|
|
810
810
|
|
|
811
|
-
const hasCoreCliOptions =
|
|
811
|
+
const hasCoreCliOptions =
|
|
812
|
+
options.userName || options.communicationLanguage || options.documentOutputLanguage || options.outputFolder || setOverrides.core;
|
|
812
813
|
|
|
813
|
-
// Seed core config from CLI options if provided
|
|
814
|
+
// Seed core config from CLI options if provided. `--set core.<key>` seeds it
|
|
815
|
+
// too: core values are dependency-bearing — module artifact paths are built
|
|
816
|
+
// from output_folder here, and each module's config.yaml snapshots the core
|
|
817
|
+
// values — so the post-install patch alone lands too late.
|
|
814
818
|
if (hasCoreCliOptions) {
|
|
815
|
-
const coreConfig = {};
|
|
819
|
+
const coreConfig = { ...setOverrides.core };
|
|
816
820
|
if (options.userName) {
|
|
817
821
|
coreConfig.user_name = options.userName;
|
|
818
822
|
await prompts.log.info(`Using user name from command-line: ${options.userName}`);
|