@kudusov.takhir/ba-toolkit 3.9.0 → 3.10.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/CHANGELOG.md +29 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,32 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
+
## [3.10.1] — 2026-04-10
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Website UI/UX polish pass.** Hero section redesign with brand palette and favicon; feature cards layout; inverted light/dark theme bug fixed. Applied UI/UX Pro Max design system recommendations across the site.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **`package.json` `homepage` field** now points to the documentation website (`https://takhirkudusov.github.io/ba-toolkit/`).
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## [3.10.0] — 2026-04-10
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- **Documentation website powered by Astro Starlight** at [`https://takhirkudusov.github.io/ba-toolkit/`](https://takhirkudusov.github.io/ba-toolkit/). Responsive, dark mode, client-side search — all out of the box. Content is sync'd from the repo root (`README.md`, `COMMANDS.md`, `CHANGELOG.md`, `ROADMAP.md`, `docs/*.md`) at build time via `website/scripts/sync-content.mjs` — the repo root stays the single source of truth and the website is a zero-drift derived view. One hand-written page (`getting-started.md`) provides a 5-step quickstart optimised for the website landing experience. The build deploys automatically via `.github/workflows/website.yml` (GitHub Actions → GitHub Pages) on every push to `main` that touches any of the synced content files. Social links in the header point to GitHub, npm, and LinkedIn. Search index built by Pagefind (10 pages indexed). Sitemap auto-generated.
|
|
31
|
+
- **`.npmignore` created.** Excludes `website/`, `.github/`, `.claude/`, `.idea/`, `test/`, `example/`, and several meta-files from the published npm tarball so that Astro and its transitive dependencies never bloat the downstream package. Verified with `npm pack --dry-run`.
|
|
32
|
+
- **`.github/workflows/website.yml`** — GitHub Actions workflow that: installs website deps (`npm ci`), runs the content sync script, builds with Astro, and deploys to GitHub Pages via `actions/deploy-pages@v4`. Triggers on push to `main` that touches `README.md`, `COMMANDS.md`, `CHANGELOG.md`, `ROADMAP.md`, `docs/**`, `website/**`, or the workflow file itself. Single concurrency group; newer pushes cancel in-flight builds. Manual dispatch supported for ad-hoc re-deploys.
|
|
33
|
+
|
|
34
|
+
### Note for deployers
|
|
35
|
+
|
|
36
|
+
The first push that includes this workflow will **not** auto-deploy unless GitHub Pages is enabled in the repo's Settings → Pages → Build and deployment → Source → **GitHub Actions**. This is a one-time manual step — after it is set, all future deployments happen automatically.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
14
40
|
## [3.9.0] — 2026-04-10
|
|
15
41
|
|
|
16
42
|
### Added
|
|
@@ -715,7 +741,9 @@ CI scripts that relied on the old behaviour (`init` creates files only, `install
|
|
|
715
741
|
|
|
716
742
|
---
|
|
717
743
|
|
|
718
|
-
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.
|
|
744
|
+
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.1...HEAD
|
|
745
|
+
[3.10.1]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.0...v3.10.1
|
|
746
|
+
[3.10.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.9.0...v3.10.0
|
|
719
747
|
[3.9.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.8.1...v3.9.0
|
|
720
748
|
[3.8.1]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.8.0...v3.8.1
|
|
721
749
|
[3.8.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.7.0...v3.8.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kudusov.takhir/ba-toolkit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.1",
|
|
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",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"agent-skills",
|
|
19
19
|
"cli"
|
|
20
20
|
],
|
|
21
|
-
"homepage": "https://github.
|
|
21
|
+
"homepage": "https://takhirkudusov.github.io/ba-toolkit/",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
24
|
"url": "git+https://github.com/TakhirKudusov/ba-toolkit.git"
|