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 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
  [![Contributors](https://contrib.rocks/image?repo=bmad-code-org/BMAD-METHOD)](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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.10.1-next.43",
4
+ "version": "6.10.1-next.44",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -808,11 +808,15 @@ class UI {
808
808
 
809
809
  const configCollector = new OfficialModules({ channelOptions: options.channelOptions });
810
810
 
811
- const hasCoreCliOptions = options.userName || options.communicationLanguage || options.documentOutputLanguage || options.outputFolder;
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}`);