@kudusov.takhir/ba-toolkit 3.10.3 → 3.10.5
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 +23 -0
- package/COMMANDS.md +1 -1
- package/README.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,27 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
+
## [3.10.5] — 2026-04-11
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- **Domain-reference contribution guide in DOMAINS.md.** Replaced the sparse "Adding a new domain" section with a 5-step checklist: pick a slug, create the reference file (structure template with quality bar), register in the CLI `DOMAINS` array, test locally, open a PR. CONTRIBUTING.md updated with a cross-reference.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **External links on the website now open in a new tab.** Added `rehype-external-links` plugin to the Astro config — all external links in markdown content get `target="_blank" rel="noopener noreferrer"`. Internal navigation stays in the same tab.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## [3.10.4] — 2026-04-11
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- **Glossary links added to README, USAGE.md, and COMMANDS.md.** Abbreviation chains (`FR → US → UC → AC → ...`) now include a parenthetical link to the glossary so first-time readers can look up unfamiliar acronyms without leaving the page.
|
|
31
|
+
- **Website sidebar reordered.** "Example project" and "Glossary" now appear immediately after "Getting started" — before the Documentation group — so new users find them early.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
14
35
|
## [3.10.3] — 2026-04-11
|
|
15
36
|
|
|
16
37
|
### Added
|
|
@@ -776,6 +797,8 @@ CI scripts that relied on the old behaviour (`init` creates files only, `install
|
|
|
776
797
|
---
|
|
777
798
|
|
|
778
799
|
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.1...HEAD
|
|
800
|
+
[3.10.5]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.4...v3.10.5
|
|
801
|
+
[3.10.4]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.3...v3.10.4
|
|
779
802
|
[3.10.3]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.2...v3.10.3
|
|
780
803
|
[3.10.2]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.1...v3.10.2
|
|
781
804
|
[3.10.1]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.0...v3.10.1
|
package/COMMANDS.md
CHANGED
package/README.md
CHANGED
|
@@ -179,7 +179,7 @@ A complete example project — **Lumen Goods** (sustainable home-goods D2C onlin
|
|
|
179
179
|
| Risk Register | [`00_risks_lumen-goods.md`](example/lumen-goods/00_risks_lumen-goods.md) |
|
|
180
180
|
| Sprint Plan | [`00_sprint_lumen-goods.md`](example/lumen-goods/00_sprint_lumen-goods.md) |
|
|
181
181
|
|
|
182
|
-
Full traceability: FR → US → UC → AC → NFR → Entity → ADR → API → WF → Scenario, plus risk register and sprint plan.
|
|
182
|
+
Full traceability: FR → US → UC → AC → NFR → Entity → ADR → API → WF → Scenario, plus risk register and sprint plan. (See [glossary](docs/GLOSSARY.md) for acronym definitions.)
|
|
183
183
|
|
|
184
184
|
---
|
|
185
185
|
|
|
@@ -321,7 +321,7 @@ Adding a new domain = creating one Markdown file in `skills/references/domains/`
|
|
|
321
321
|
|
|
322
322
|
Most pipeline skills follow the same cycle: **Command → Context → Interview → Generate → Refine**. Each skill loads all previous artifacts plus the domain reference and project principles, asks a few rounds of targeted questions, writes a Markdown artifact, and offers refinement subcommands before moving on. `/handoff`, `/trace`, and `/analyze` skip the interview — they extract everything from existing artifacts automatically.
|
|
323
323
|
|
|
324
|
-
Every artifact links back to its predecessors, forming the chain `FR → US → UC → AC → NFR → Entity → ADR → API → WF → Scenario
|
|
324
|
+
Every artifact links back to its predecessors, forming the chain `FR → US → UC → AC → NFR → Entity → ADR → API → WF → Scenario` (see [glossary](docs/GLOSSARY.md) for definitions). Run `/trace` to verify coverage and `/analyze` for severity-rated findings (duplicates, ambiguous terms, terminology drift, invalid references).
|
|
325
325
|
|
|
326
326
|
### Subcommands
|
|
327
327
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kudusov.takhir/ba-toolkit",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.5",
|
|
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",
|