@kudusov.takhir/ba-toolkit 4.1.1 → 4.1.2
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/CHANGELOG.md +10 -1
- package/README.md +4 -4
- package/bin/ba-toolkit.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,14 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
+
## [4.1.2] — 2026-04-14
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Install commands now quote the scoped package name** in README, USAGE, TROUBLESHOOTING, ROADMAP, website docs, and the `init.sh`/`init.ps1` next-steps output. Unquoted `@kudusov.takhir/ba-toolkit` can trip shells (notably zsh with globbing/expansion rules) where the `@` or `.` tokens are interpreted; wrapping in single quotes (`'@kudusov.takhir/ba-toolkit'`) works across bash, zsh, and PowerShell. Historical `CHANGELOG.md` entries were not retroactively edited.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
14
22
|
## [4.1.1] — 2026-04-12
|
|
15
23
|
|
|
16
24
|
### Fixed
|
|
@@ -930,7 +938,8 @@ CI scripts that relied on the old behaviour (`init` creates files only, `install
|
|
|
930
938
|
|
|
931
939
|
---
|
|
932
940
|
|
|
933
|
-
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.1.
|
|
941
|
+
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.1.2...HEAD
|
|
942
|
+
[4.1.2]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.1.1...v4.1.2
|
|
934
943
|
[4.1.1]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.1.0...v4.1.1
|
|
935
944
|
[4.1.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.4...v4.1.0
|
|
936
945
|
[4.0.4]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.3...v4.0.4
|
package/README.md
CHANGED
|
@@ -42,13 +42,13 @@ Artifacts are generated in whatever language you write in — ask in English, ge
|
|
|
42
42
|
# Full setup in one command — prompts for project name, domain, and
|
|
43
43
|
# AI agent, then creates output/, AGENTS.md, and installs the skills
|
|
44
44
|
# into the chosen agent's directory.
|
|
45
|
-
npx @kudusov.takhir/ba-toolkit init
|
|
45
|
+
npx '@kudusov.takhir/ba-toolkit' init
|
|
46
46
|
|
|
47
47
|
# Non-interactive (e.g. for CI): pass every choice on the command line.
|
|
48
|
-
npx @kudusov.takhir/ba-toolkit init --name "My App" --domain saas --for claude-code
|
|
48
|
+
npx '@kudusov.takhir/ba-toolkit' init --name "My App" --domain saas --for claude-code
|
|
49
49
|
|
|
50
50
|
# Or install globally and reuse across projects:
|
|
51
|
-
npm install -g @kudusov.takhir/ba-toolkit
|
|
51
|
+
npm install -g '@kudusov.takhir/ba-toolkit'
|
|
52
52
|
ba-toolkit init
|
|
53
53
|
```
|
|
54
54
|
|
|
@@ -139,7 +139,7 @@ bash init.sh
|
|
|
139
139
|
.\init.ps1
|
|
140
140
|
```
|
|
141
141
|
|
|
142
|
-
Equivalent to `npx @kudusov.takhir/ba-toolkit init` — asks for a slug, name, and domain, then creates `output/` and an `AGENTS.md` with the pipeline status table.
|
|
142
|
+
Equivalent to `npx '@kudusov.takhir/ba-toolkit' init` — asks for a slug, name, and domain, then creates `output/` and an `AGENTS.md` with the pipeline status table.
|
|
143
143
|
|
|
144
144
|
### Updating a manual install
|
|
145
145
|
|
package/bin/ba-toolkit.js
CHANGED
|
@@ -1939,7 +1939,7 @@ ${bold('EXAMPLES')}
|
|
|
1939
1939
|
ba-toolkit uninstall --for claude-code --global
|
|
1940
1940
|
ba-toolkit uninstall --for cursor --dry-run
|
|
1941
1941
|
|
|
1942
|
-
# After
|
|
1942
|
+
# After "npm update -g '@kudusov.takhir/ba-toolkit'", refresh the skills.
|
|
1943
1943
|
ba-toolkit upgrade --for claude-code
|
|
1944
1944
|
ba-toolkit upgrade --for cursor --dry-run
|
|
1945
1945
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kudusov.takhir/ba-toolkit",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "AI-powered Business Analyst pipeline — 29 skills from concept discovery to a sequenced implementation plan an AI coding agent can execute, with one-command Notion + Confluence publish. Works with Claude Code, Codex CLI, Gemini CLI, Cursor, and Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"business-analyst",
|