bluera-knowledge 0.33.0 → 0.33.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/.claude-plugin/plugin.json +1 -1
- package/.claude-plugin/settings.json +6 -0
- package/CHANGELOG.md +23 -0
- package/hooks/check-ready.sh +3 -0
- package/hooks/hooks.json +10 -0
- package/hooks/job-status-hook.sh +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.33.1](https://github.com/blueraai/bluera-knowledge/compare/v0.28.0...v0.33.1) (2026-03-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add statusline module with store count display ([4446501](https://github.com/blueraai/bluera-knowledge/commit/44465015a4734cd7c253bda51c98ce149561fda8))
|
|
11
|
+
* **eval:** 3-agent comparison with BK Grep agent and token tracking ([b3045a8](https://github.com/blueraai/bluera-knowledge/commit/b3045a8ae7df7a2e13ecdf992ff4d1055521460b))
|
|
12
|
+
* **eval:** add agent quality eval comparing with-BK vs without-BK answers ([d8c62d8](https://github.com/blueraai/bluera-knowledge/commit/d8c62d804bd10d572049f4f2a01deb30cb00ccf5))
|
|
13
|
+
* **hooks:** add PostToolUse hook for WebSearch BK suggestions ([d0420b4](https://github.com/blueraai/bluera-knowledge/commit/d0420b473c73092b5e6a28be2699f5fc40e090c3))
|
|
14
|
+
* **mcp:** add file count estimation and ETA to store creation responses ([3d71a30](https://github.com/blueraai/bluera-knowledge/commit/3d71a307275fa06b9810ed606583f4ec2acc5841))
|
|
15
|
+
* **mcp:** add stores:pull command for git pull + re-index ([7ca809c](https://github.com/blueraai/bluera-knowledge/commit/7ca809c3675be19d9d0e29e71c5f75d4f40fce35))
|
|
16
|
+
* **mcp:** optimize search-to-read workflow with store paths, relatedFiles, find-files intent, and file-based get_full_context ([4eb9be9](https://github.com/blueraai/bluera-knowledge/commit/4eb9be97598e475576603b2b9a565946197986ac))
|
|
17
|
+
* search infrastructure, benchmark framework, and model registry ([285ff2f](https://github.com/blueraai/bluera-knowledge/commit/285ff2f5574c4d53b61b31e84fdec43553364e98))
|
|
18
|
+
* training pipeline, evaluation gate, and experiment docs ([d90b395](https://github.com/blueraai/bluera-knowledge/commit/d90b395a330f4ab09ac6d71db77d659c415aa87d))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **config:** wire BK_MODEL env var override in ConfigService.load() ([be56426](https://github.com/blueraai/bluera-knowledge/commit/be564263176410c3eb1441bf85c4fdce48ddc7c4))
|
|
24
|
+
* **hooks:** drain stdin in shell hooks, register web-research hook, add settings.json ([1cff9b8](https://github.com/blueraai/bluera-knowledge/commit/1cff9b8ab38e732ffa6d9fb2de8b398fddc98302))
|
|
25
|
+
* **mcp:** add runtime files to package.json files array and improve bootstrap error on corrupt cache ([e195f93](https://github.com/blueraai/bluera-knowledge/commit/e195f93a4600c65bcd0fcbb45380aaa1d32bb356))
|
|
26
|
+
* **mcp:** prevent browser postinstall from crashing bootstrap ([e27fe02](https://github.com/blueraai/bluera-knowledge/commit/e27fe021bdb34c8ca5b8bf93720a176435e7973c))
|
|
27
|
+
|
|
5
28
|
## [0.33.0](https://github.com/blueraai/bluera-knowledge/compare/v0.28.0...v0.33.0) (2026-03-01)
|
|
6
29
|
|
|
7
30
|
|
package/hooks/check-ready.sh
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
# This script only CHECKS if setup is complete.
|
|
6
6
|
# Auto-setup runs async via auto-setup.sh on SessionStart.
|
|
7
7
|
|
|
8
|
+
# Drain stdin so the pipe doesn't hang
|
|
9
|
+
cat > /dev/null 2>&1 || true
|
|
10
|
+
|
|
8
11
|
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$(dirname "$(dirname "$0")")}"
|
|
9
12
|
|
|
10
13
|
# Colors for output
|
package/hooks/hooks.json
CHANGED
|
@@ -55,6 +55,16 @@
|
|
|
55
55
|
}
|
|
56
56
|
]
|
|
57
57
|
},
|
|
58
|
+
{
|
|
59
|
+
"matcher": "WebFetch",
|
|
60
|
+
"hooks": [
|
|
61
|
+
{
|
|
62
|
+
"type": "command",
|
|
63
|
+
"command": "python3 ${CLAUDE_PLUGIN_ROOT:-.}/hooks/posttooluse-web-research.py",
|
|
64
|
+
"timeout": 3
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
58
68
|
{
|
|
59
69
|
"matcher": "WebSearch",
|
|
60
70
|
"hooks": [
|
package/hooks/job-status-hook.sh
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
# This hook runs on UserPromptSubmit events and injects
|
|
5
5
|
# information about active background jobs into the context.
|
|
6
6
|
|
|
7
|
+
# Drain stdin so the pipe doesn't hang
|
|
8
|
+
cat > /dev/null 2>&1 || true
|
|
9
|
+
|
|
7
10
|
JOBS_DIR="$HOME/.local/share/bluera-knowledge/jobs"
|
|
8
11
|
|
|
9
12
|
# Exit silently if jobs directory doesn't exist
|