@kudusov.takhir/ba-toolkit 4.0.2 → 4.0.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 +22 -1
- package/package.json +1 -1
- package/skills/glossary/SKILL.md +1 -1
- package/skills/risk/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,25 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
+
## [4.0.4] — 2026-04-12
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **`/risk` and `/glossary` used wrong path prefix for domain references** — `skills/references/domains/{domain}.md` instead of `references/domains/{domain}.md`. The `skills/` prefix pointed to a repo-root-relative path that does not exist in the installed agent directory (e.g., `.claude/skills/`), so AI agents could fail to load the domain file when running these two skills. All other skills already used the correct relative path.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## [4.0.3] — 2026-04-12
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- **Shell fallback scripts (`init.sh`, `init.ps1`) were missing three domains** added in v3.3.0 — `edtech`, `govtech`, `ai-ml`. Users who set up projects via the shell scripts only saw 10 domains instead of 13.
|
|
27
|
+
- **Shell fallback scripts generated an outdated AGENTS.md** — missing `/discovery` (stage 0), `/implement-plan` (stage 12), and the Utility Skills section. Stage numbering for `/principles` was `0` instead of `0a`. Both scripts now match the canonical template at `skills/references/templates/agents-template.md`.
|
|
28
|
+
- **`docs/TROUBLESHOOTING.md` listed only 9 of 12 domain reference files** — added `edtech`, `govtech`, `ai-ml` and clarified that `custom` has no reference file.
|
|
29
|
+
- **Removed orphaned `skills/{brief,srs,…}/` directory** — an empty folder with a literal brace-expansion string as its name, shipped in the npm package.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
14
33
|
## [4.0.2] — 2026-04-12
|
|
15
34
|
|
|
16
35
|
### Fixed
|
|
@@ -888,7 +907,9 @@ CI scripts that relied on the old behaviour (`init` creates files only, `install
|
|
|
888
907
|
|
|
889
908
|
---
|
|
890
909
|
|
|
891
|
-
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.
|
|
910
|
+
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.4...HEAD
|
|
911
|
+
[4.0.4]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.3...v4.0.4
|
|
912
|
+
[4.0.3]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.2...v4.0.3
|
|
892
913
|
[4.0.2]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.1...v4.0.2
|
|
893
914
|
[4.0.1]: https://github.com/TakhirKudusov/ba-toolkit/compare/v4.0.0...v4.0.1
|
|
894
915
|
[4.0.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.13.1...v4.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kudusov.takhir/ba-toolkit",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "AI-powered Business Analyst pipeline — 24 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",
|
package/skills/glossary/SKILL.md
CHANGED
|
@@ -40,7 +40,7 @@ Examples:
|
|
|
40
40
|
- `10_scenarios_{slug}.md` — persona names, scenario types
|
|
41
41
|
- `11_handoff_{slug}.md` — any additional terms
|
|
42
42
|
- `12_implplan_{slug}.md` — phase names, task ids, technology choices from the Tech Stack header
|
|
43
|
-
2. Load `
|
|
43
|
+
2. Load `references/domains/{domain}.md` — Domain Glossary section.
|
|
44
44
|
3. If `00_glossary_{slug}.md` already exists, load it to merge rather than replace.
|
|
45
45
|
|
|
46
46
|
## Environment
|
package/skills/risk/SKILL.md
CHANGED
|
@@ -28,7 +28,7 @@ Examples:
|
|
|
28
28
|
- `06_nfr_{slug}.md` — NFR targets that are aggressive or uncertain (performance, security, availability)
|
|
29
29
|
- `07a_research_{slug}.md` — ADR alternatives rejected, integration unknowns, technology risks
|
|
30
30
|
- `08_apicontract_{slug}.md` — third-party API dependencies, rate limits, SLA gaps
|
|
31
|
-
2. Load `
|
|
31
|
+
2. Load `references/domains/{domain}.md` — note any domain-specific compliance or regulatory risk categories.
|
|
32
32
|
3. If `00_risks_{slug}.md` already exists, load it to merge rather than replace.
|
|
33
33
|
|
|
34
34
|
## Environment
|