bluera-knowledge 0.19.1 → 0.19.3
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 +14 -0
- package/README.md +13 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.19.3](https://github.com/blueraai/bluera-knowledge/compare/v0.19.2...v0.19.3) (2026-01-31)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **hooks:** move heavy installs from SessionStart to Setup hook ([754a09e](https://github.com/blueraai/bluera-knowledge/commit/754a09e8e2ce96f0fa8043aaa92e9141f286c572))
|
|
11
|
+
|
|
12
|
+
## [0.19.2](https://github.com/blueraai/bluera-knowledge/compare/v0.19.1...v0.19.2) (2026-01-31)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **mcp:** remove :- default from CLAUDE_PLUGIN_ROOT in .mcp.json ([af265aa](https://github.com/blueraai/bluera-knowledge/commit/af265aaab4cd356f6e6df053e0fa489002d0a91d))
|
|
18
|
+
|
|
5
19
|
## [0.19.1](https://github.com/blueraai/bluera-knowledge/compare/v0.19.0...v0.19.1) (2026-01-31)
|
|
6
20
|
|
|
7
21
|
|
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
|
+
> After installing, run `claude --init` to complete setup (installs dependencies and Playwright browser). This is a one-time setup—subsequent launches are instant.
|
|
86
86
|
|
|
87
87
|
---
|
|
88
88
|
|
|
@@ -568,19 +568,26 @@ Logs are JSON formatted (NDJSON) and can be processed with `jq` for pretty-print
|
|
|
568
568
|
|
|
569
569
|
## 🔧 Dependencies
|
|
570
570
|
|
|
571
|
-
The plugin automatically checks for and attempts to install browser binaries on first use:
|
|
572
|
-
|
|
573
571
|
**Required for Web Crawling:**
|
|
574
|
-
- **🎭 Playwright Chromium** - Required for headless browser crawling (
|
|
572
|
+
- **🎭 Playwright Chromium** - Required for headless browser crawling (installed via `claude --init`)
|
|
575
573
|
|
|
576
574
|
**Optional:**
|
|
577
575
|
- **🐍 Python 3.8+** - Only needed for Python AST parsing in code-graph features (not required for web crawling)
|
|
578
576
|
|
|
579
|
-
**
|
|
577
|
+
**Setup (one-time):**
|
|
578
|
+
|
|
579
|
+
After installing the plugin, run:
|
|
580
|
+
```bash
|
|
581
|
+
claude --init
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
This installs:
|
|
580
585
|
- ✅ Node.js dependencies (via bun/npm)
|
|
581
586
|
- ✅ Playwright Chromium browser binaries
|
|
582
587
|
|
|
583
|
-
If
|
|
588
|
+
If you skip `--init`, sessions will show a warning until setup is complete.
|
|
589
|
+
|
|
590
|
+
**Manual installation (if needed):**
|
|
584
591
|
|
|
585
592
|
```bash
|
|
586
593
|
npx playwright install chromium
|