bluera-knowledge 0.29.0 → 0.30.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 +16 -0
- package/README.md +1 -1
- package/dist/{chunk-T7J5RB6F.js → chunk-AEXFPA57.js} +380 -93
- package/dist/chunk-AEXFPA57.js.map +1 -0
- package/dist/{chunk-U27UECDZ.js → chunk-B335UOU7.js} +9 -6
- package/dist/chunk-B335UOU7.js.map +1 -0
- package/dist/{chunk-H465AZXC.js → chunk-KCI4U6FH.js} +2 -2
- package/dist/{chunk-7JTPAQFO.js → chunk-N3XYMAU3.js} +2 -1
- package/dist/index.js +5 -5
- package/dist/mcp/server.js +3 -3
- package/dist/{watch.service-3ZP35WTM.js → watch.service-LRFCT52P.js} +2 -2
- package/dist/workers/background-worker-cli.js +3 -3
- package/package.json +1 -1
- package/dist/chunk-T7J5RB6F.js.map +0 -1
- package/dist/chunk-U27UECDZ.js.map +0 -1
- /package/dist/{chunk-H465AZXC.js.map → chunk-KCI4U6FH.js.map} +0 -0
- /package/dist/{chunk-7JTPAQFO.js.map → chunk-N3XYMAU3.js.map} +0 -0
- /package/dist/{watch.service-3ZP35WTM.js.map → watch.service-LRFCT52P.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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.30.0](https://github.com/blueraai/bluera-knowledge/compare/v0.28.0...v0.30.0) (2026-02-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **mcp:** add file count estimation and ETA to store creation responses ([3d71a30](https://github.com/blueraai/bluera-knowledge/commit/3d71a307275fa06b9810ed606583f4ec2acc5841))
|
|
11
|
+
* **mcp:** add stores:pull command for git pull + re-index ([7ca809c](https://github.com/blueraai/bluera-knowledge/commit/7ca809c3675be19d9d0e29e71c5f75d4f40fce35))
|
|
12
|
+
* search infrastructure, benchmark framework, and model registry ([285ff2f](https://github.com/blueraai/bluera-knowledge/commit/285ff2f5574c4d53b61b31e84fdec43553364e98))
|
|
13
|
+
* training pipeline, evaluation gate, and experiment docs ([d90b395](https://github.com/blueraai/bluera-knowledge/commit/d90b395a330f4ab09ac6d71db77d659c415aa87d))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **config:** wire BK_MODEL env var override in ConfigService.load() ([be56426](https://github.com/blueraai/bluera-knowledge/commit/be564263176410c3eb1441bf85c4fdce48ddc7c4))
|
|
19
|
+
* **mcp:** prevent browser postinstall from crashing bootstrap ([e27fe02](https://github.com/blueraai/bluera-knowledge/commit/e27fe021bdb34c8ca5b8bf93720a176435e7973c))
|
|
20
|
+
|
|
5
21
|
## [0.29.0](https://github.com/blueraai/bluera-knowledge/compare/v0.28.0...v0.29.0) (2026-02-20)
|
|
6
22
|
|
|
7
23
|
|
package/README.md
CHANGED
|
@@ -339,7 +339,7 @@ This architecture means commands provide a clean user interface while MCP tools
|
|
|
339
339
|
| `execute` | ⚡ Meta-tool for store/job management commands |
|
|
340
340
|
|
|
341
341
|
The `execute` tool consolidates store and job management into a single tool with subcommands:
|
|
342
|
-
- **Store commands**: `stores`, `store:info`, `store:create`, `store:index`, `store:delete`
|
|
342
|
+
- **Store commands**: `stores`, `store:info`, `store:create`, `store:index`, `store:delete`, `stores:pull`
|
|
343
343
|
- **Job commands**: `jobs`, `job:status`, `job:cancel`
|
|
344
344
|
- **Help**: `help`, `commands`
|
|
345
345
|
|