squad-bmad 1.2.0 → 1.2.1
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 +1 -1
- package/README.vi.md +1 -1
- package/bin/cli.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Squad BMAD: Automated Project Orchestration Assistant with Gemini & Claude Code
|
|
2
2
|
|
|
3
|
-
[](CHANGELOG.md)
|
|
4
4
|
[](https://www.npmjs.com/package/squad-bmad)
|
|
5
5
|
|
|
6
6
|
*Read this in other languages: [English](README.md), [Tiếng Việt](README.vi.md).*
|
package/README.vi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Squad BMAD: Trợ Lý Ảo Điều Phối Dự Án Tự Động Với Gemini & Claude Code
|
|
2
2
|
|
|
3
|
-
[](CHANGELOG.md)
|
|
4
4
|
[](https://www.npmjs.com/package/squad-bmad)
|
|
5
5
|
|
|
6
6
|
Chào mừng bạn đến với **Squad BMAD** – một boilerplate/giải pháp thiết kế để biến **Gemini CLI** trở thành một **Project Manager & Principal Tech Lead** thực thụ. Bằng cách kết hợp sức mạnh điều phối của Gemini và khả năng lập trình/suy luận xuất sắc của **Claude Code** thông qua môi trường **Tmux**, dự án này tự động hóa và tối ưu hóa luồng công việc phát triển phần mềm dựa trên nền tảng phương pháp luận **BMAD**.
|
package/bin/cli.js
CHANGED
|
@@ -203,7 +203,7 @@ async function install() {
|
|
|
203
203
|
|
|
204
204
|
info('Copying files into your project...\n');
|
|
205
205
|
|
|
206
|
-
const { copied, skipped } = copyDir(TEMPLATE_DIR, TARGET_DIR, { overwrite:
|
|
206
|
+
const { copied, skipped } = copyDir(TEMPLATE_DIR, TARGET_DIR, { overwrite: true });
|
|
207
207
|
|
|
208
208
|
copied.forEach(f => ok(f));
|
|
209
209
|
skipped.forEach(f => warn(`${f} ${c.dim}(already exists — skipped)${c.reset}`));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "squad-bmad",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Automated project orchestration boilerplate with Gemini CLI & Claude Code via Tmux, following the BMAD methodology.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gemini",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"author": "thientranhung",
|
|
24
24
|
"bin": {
|
|
25
|
-
"squad-bmad": "
|
|
25
|
+
"squad-bmad": "bin/cli.js"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"bin/",
|
|
@@ -31,4 +31,4 @@
|
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18"
|
|
33
33
|
}
|
|
34
|
-
}
|
|
34
|
+
}
|