bluera-knowledge 0.37.0 → 0.37.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/CHANGELOG.md +18 -0
- package/dist/{chunk-AO45YFHO.js → chunk-VB5V4RC7.js} +2 -1
- package/dist/index.js +2151 -15
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +1 -1
- package/package.json +1 -1
- package/scripts/launch-ui.sh +20 -0
- package/scripts/preview-ui.ts +207 -0
- package/skills/ui/SKILL.md +27 -0
- /package/dist/{chunk-AO45YFHO.js.map → chunk-VB5V4RC7.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
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.37.1](https://github.com/blueraai/bluera-knowledge/compare/v0.36.0...v0.37.1) (2026-04-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **benchmarks:** add search benchmarking system ([0dcb70b](https://github.com/blueraai/bluera-knowledge/commit/0dcb70bbc91dc8849ef2f6eea9bb041ad1a797f3))
|
|
11
|
+
* **hooks:** surface store names at every agent injection point ([96a8860](https://github.com/blueraai/bluera-knowledge/commit/96a88603b7be4596af89a8c2350e59860bcd7767))
|
|
12
|
+
* **index:** expand exclusions, add metadata enrichment and progress ([88d1b7c](https://github.com/blueraai/bluera-knowledge/commit/88d1b7cdd78fca29313d4f61fe19ece29ee11290))
|
|
13
|
+
* **skills:** add /bluera-knowledge:ui dashboard skill ([4fec66a](https://github.com/blueraai/bluera-knowledge/commit/4fec66a30aff30b6ebc26eeda0f00cb0d8759932))
|
|
14
|
+
* **training:** add fine-tuning and data pipeline infrastructure ([485667d](https://github.com/blueraai/bluera-knowledge/commit/485667d6f5a4db0afa799d2fd3eb3b58e241cc4f))
|
|
15
|
+
* **ui:** add web admin UI, mcp-ui resources, and /bluera-knowledge:ui command ([77c6eee](https://github.com/blueraai/bluera-knowledge/commit/77c6eee4f407dc68a88d35f28ee483fd8188b9c5))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* restore admin web UI accidentally removed in 374721b7 ([3b51116](https://github.com/blueraai/bluera-knowledge/commit/3b511163cb1212998b20a45eda68d98f2caf7217))
|
|
21
|
+
* **suggest:** remove silent fallback — fail fast if Claude CLI unavailable ([8fec3d4](https://github.com/blueraai/bluera-knowledge/commit/8fec3d405a31061e7d3727efbbc85e723fd5a7af))
|
|
22
|
+
|
|
5
23
|
## [0.37.0](https://github.com/blueraai/bluera-knowledge/compare/v0.36.0...v0.37.0) (2026-03-25)
|
|
6
24
|
|
|
7
25
|
|
|
@@ -4222,7 +4222,8 @@ if (isMCPServerEntry) {
|
|
|
4222
4222
|
export {
|
|
4223
4223
|
ZilAdapter,
|
|
4224
4224
|
spawnBackgroundWorker,
|
|
4225
|
+
BASE_STYLES,
|
|
4225
4226
|
createMCPServer,
|
|
4226
4227
|
runMCPServer
|
|
4227
4228
|
};
|
|
4228
|
-
//# sourceMappingURL=chunk-
|
|
4229
|
+
//# sourceMappingURL=chunk-VB5V4RC7.js.map
|