@kudusov.takhir/ba-toolkit 1.2.0 → 1.2.4

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 CHANGED
@@ -11,6 +11,52 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11
11
 
12
12
  ---
13
13
 
14
+ ## [1.2.4] — 2026-04-08
15
+
16
+ ### Fixed
17
+
18
+ - `.github/workflows/release.yml` — added a "Strip classic auth from .npmrc" step before `npm publish`. `actions/setup-node` with `registry-url` writes `//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}` into `.npmrc`; with our empty `NODE_AUTH_TOKEN` this registered as a configured-but-empty classic token, so npm refused to start the OIDC flow and failed with `ENEEDAUTH`. Stripping both `:_authToken=` and `always-auth=` lines lets npm 11.5.1+ detect GitHub Actions OIDC and use Trusted Publishing.
19
+ - Also removed the now-unused `NODE_AUTH_TOKEN: ''` override on the publish step — with the `.npmrc` cleaned up, it's redundant.
20
+
21
+ ### Changed
22
+
23
+ - Supersedes the unpublished `1.2.3` (which reached the publish step but died on auth) — carries forward all prior changes.
24
+
25
+ ---
26
+
27
+ ## [1.2.3] — 2026-04-08 _(GitHub Release only — npm publish failed on auth, superseded by 1.2.4)_
28
+
29
+ ### Fixed
30
+
31
+ - `.github/workflows/release.yml` — replaced the `npm install -g npm@latest` step with a direct tarball download via `curl`, bypassing the broken bundled npm in Node 22.22.2 (whose `@npmcli/arborist` is missing its transitive `promise-retry` dep, causing any `npm install` — including self-upgrade, with or without `--force` — to die with `MODULE_NOT_FOUND`). The workaround pulls `npm-11.5.1.tgz` directly from the registry and drops it into the toolcache's `node_modules` without invoking npm at all. Both `1.2.1` and `1.2.2` failed the `publish-npm` job for this reason and were never published to npm; `1.2.3` supersedes both.
32
+
33
+ ### Changed
34
+
35
+ - Supersedes the unpublished `1.2.1` and `1.2.2` — carries forward all of their documentation, rename, and CI changes.
36
+
37
+ ---
38
+
39
+ ## [1.2.2] — 2026-04-08 _(GitHub Release only — npm publish failed, superseded by 1.2.3)_
40
+
41
+ ### Fixed
42
+
43
+ - `.github/workflows/release.yml` — added `--force` to the `npm install -g npm@latest` step to work around a known self-upgrade bug where arborist unlinks its own transitive `promise-retry` mid-upgrade and fails with `MODULE_NOT_FOUND`. _(This workaround was insufficient — the bundled npm is broken at rest, not just during self-upgrade. Fixed properly in 1.2.3.)_
44
+
45
+ ### Changed
46
+
47
+ - Supersedes the unpublished `1.2.1` — carries forward all of its documentation and rename changes.
48
+
49
+ ---
50
+
51
+ ## [1.2.1] — 2026-04-08 _(GitHub Release only — npm publish failed, superseded by 1.2.2)_
52
+
53
+ ### Changed
54
+
55
+ - npm package renamed from `ba-toolkit` to scoped `@kudusov.takhir/ba-toolkit` to avoid name collisions in the public registry. The CLI binary name (`ba-toolkit`) is unchanged. Install commands are now `npx @kudusov.takhir/ba-toolkit <command>` or `npm install -g @kudusov.takhir/ba-toolkit`.
56
+ - `README.md` and `README.ru.md` updated to use the scoped package name in all `npx` and `npm install -g` examples.
57
+
58
+ ---
59
+
14
60
  ## [1.2.0] — 2026-04-08
15
61
 
16
62
  ### Added
@@ -119,7 +165,11 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
119
165
 
120
166
  ---
121
167
 
122
- [Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.2.0...HEAD
168
+ [Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.2.4...HEAD
169
+ [1.2.4]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.2.3...v1.2.4
170
+ [1.2.3]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.2.2...v1.2.3
171
+ [1.2.2]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.2.1...v1.2.2
172
+ [1.2.1]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.2.0...v1.2.1
123
173
  [1.2.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.1.0...v1.2.0
124
174
  [1.1.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v1.0.0...v1.1.0
125
175
  [1.0.0]: https://github.com/TakhirKudusov/ba-toolkit/releases/tag/v1.0.0
package/README.md CHANGED
@@ -224,11 +224,11 @@ Most pipeline skills follow this cycle:
224
224
 
225
225
  ```bash
226
226
  # One-shot project setup — zero install, just run:
227
- npx ba-toolkit init
228
- npx ba-toolkit install --for claude-code
227
+ npx @kudusov.takhir/ba-toolkit init
228
+ npx @kudusov.takhir/ba-toolkit install --for claude-code
229
229
 
230
230
  # Or install globally and reuse across projects:
231
- npm install -g ba-toolkit
231
+ npm install -g @kudusov.takhir/ba-toolkit
232
232
  ba-toolkit install --for claude-code --global
233
233
  ```
234
234
 
@@ -397,7 +397,7 @@ ba-toolkit/
397
397
 
398
398
  ├── bin/
399
399
  │ └── ba-toolkit.js # 🧰 npm CLI entry point (zero runtime deps)
400
- ├── package.json # 📦 npm package manifest (for `npx ba-toolkit`)
400
+ ├── package.json # 📦 npm package manifest (for `npx @kudusov.takhir/ba-toolkit`)
401
401
  ├── init.ps1 # 🚀 Project initialiser (Windows PowerShell)
402
402
  ├── init.sh # 🚀 Project initialiser (macOS / Linux bash)
403
403
  ├── CHANGELOG.md # 📋 Version history
package/README.ru.md CHANGED
@@ -225,11 +225,11 @@ BA Toolkit использует открытую **спецификацию Agen
225
225
 
226
226
  ```bash
227
227
  # Одноразовая настройка проекта — ничего не устанавливать, просто запустить:
228
- npx ba-toolkit init
229
- npx ba-toolkit install --for claude-code
228
+ npx @kudusov.takhir/ba-toolkit init
229
+ npx @kudusov.takhir/ba-toolkit install --for claude-code
230
230
 
231
231
  # Или установить глобально и переиспользовать для всех проектов:
232
- npm install -g ba-toolkit
232
+ npm install -g @kudusov.takhir/ba-toolkit
233
233
  ba-toolkit install --for claude-code --global
234
234
  ```
235
235
 
@@ -401,7 +401,7 @@ ba-toolkit/
401
401
 
402
402
  ├── bin/
403
403
  │ └── ba-toolkit.js # 🧰 Точка входа npm CLI (нулевые рантайм-зависимости)
404
- ├── package.json # 📦 Манифест npm-пакета (для `npx ba-toolkit`)
404
+ ├── package.json # 📦 Манифест npm-пакета (для `npx @kudusov.takhir/ba-toolkit`)
405
405
  ├── init.ps1 # 🚀 Инициализатор проекта (Windows PowerShell)
406
406
  ├── init.sh # 🚀 Инициализатор проекта (macOS / Linux bash)
407
407
  ├── CHANGELOG.md # 📋 История версий
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kudusov.takhir/ba-toolkit",
3
- "version": "1.2.0",
3
+ "version": "1.2.4",
4
4
  "description": "AI-powered Business Analyst pipeline — 21 skills from project brief to development handoff. Works with Claude Code, Codex CLI, Gemini CLI, Cursor, and Windsurf.",
5
5
  "keywords": [
6
6
  "business-analyst",