bluera-knowledge 0.21.9 → 0.22.0
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 +15 -0
- package/README.md +7 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.22.0](https://github.com/blueraai/bluera-knowledge/compare/v0.21.6...v0.22.0) (2026-02-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **setup:** auto-setup on SessionStart instead of invalid Setup hook ([4f575f2](https://github.com/blueraai/bluera-knowledge/commit/4f575f21565597e4f7e915f955c022aae6a574fd))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **hooks:** warn when MCP wrapper missing on session start ([007462f](https://github.com/blueraai/bluera-knowledge/commit/007462f160914746f5a26ee0757e22794742c1c5))
|
|
16
|
+
* **mcp:** show build tools error on MCP server startup ([ea07403](https://github.com/blueraai/bluera-knowledge/commit/ea074037f28b3750ea516f0eebde3495900bd92c))
|
|
17
|
+
* **mcp:** use exit 2 for blocking errors in wrapper script ([2b07a95](https://github.com/blueraai/bluera-knowledge/commit/2b07a9520449be54d0f4ef6a9b0fa2944e1f932f))
|
|
18
|
+
* **tests:** increase timeout for CLI integration tests ([042ddee](https://github.com/blueraai/bluera-knowledge/commit/042ddee831043bea015b3e4e6a4211a530929380))
|
|
19
|
+
|
|
5
20
|
## [0.21.9](https://github.com/blueraai/bluera-knowledge/compare/v0.21.6...v0.21.9) (2026-02-01)
|
|
6
21
|
|
|
7
22
|
|
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ Works with any AI coding tool, editor, CI/CD pipeline, or automation.
|
|
|
82
82
|
Adds slash commands, MCP tools, and Skills for optimal Claude Code integration.
|
|
83
83
|
|
|
84
84
|
> [!NOTE]
|
|
85
|
-
>
|
|
85
|
+
> Setup runs automatically on first session start (installs dependencies and Playwright browser). If you see "Setup running in background...", wait ~30s and restart Claude Code.
|
|
86
86
|
|
|
87
87
|
---
|
|
88
88
|
|
|
@@ -590,25 +590,21 @@ Logs are JSON formatted (NDJSON) and can be processed with `jq` for pretty-print
|
|
|
590
590
|
## 🔧 Dependencies
|
|
591
591
|
|
|
592
592
|
**Required for Web Crawling:**
|
|
593
|
-
- **🎭 Playwright Chromium** - Required for headless browser crawling (installed
|
|
593
|
+
- **🎭 Playwright Chromium** - Required for headless browser crawling (auto-installed on first session)
|
|
594
594
|
|
|
595
595
|
**Optional:**
|
|
596
596
|
- **🐍 Python 3.8+** - Only needed for Python AST parsing in code-graph features (not required for web crawling)
|
|
597
597
|
|
|
598
|
-
**Setup (
|
|
598
|
+
**Setup (automatic):**
|
|
599
599
|
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
claude --init
|
|
603
|
-
```
|
|
604
|
-
|
|
605
|
-
This installs:
|
|
600
|
+
Setup runs automatically on first session start. This installs:
|
|
601
|
+
- ✅ MCP wrapper script
|
|
606
602
|
- ✅ Node.js dependencies (via bun/npm)
|
|
607
603
|
- ✅ Playwright Chromium browser binaries
|
|
608
604
|
|
|
609
|
-
If you
|
|
605
|
+
If you see "Setup running in background...", wait ~30s and restart Claude Code.
|
|
610
606
|
|
|
611
|
-
**Manual
|
|
607
|
+
**Manual setup (if auto-setup fails):**
|
|
612
608
|
|
|
613
609
|
```bash
|
|
614
610
|
npx playwright install chromium
|