bluera-knowledge 0.14.2 → 0.14.4
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 +8 -0
- package/dist/{chunk-UAWKTJWN.js → chunk-GHRRKPM4.js} +2 -2
- package/dist/{chunk-Y24ZJRZP.js → chunk-PWOIOCTW.js} +3 -3
- package/dist/{chunk-Y24ZJRZP.js.map → chunk-PWOIOCTW.js.map} +1 -1
- package/dist/{chunk-X7E4RYJE.js → chunk-UDYRIK7E.js} +61 -23
- package/dist/chunk-UDYRIK7E.js.map +1 -0
- package/dist/index.js +22 -6
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +2 -2
- package/dist/workers/background-worker-cli.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-X7E4RYJE.js.map +0 -1
- /package/dist/{chunk-UAWKTJWN.js.map → chunk-GHRRKPM4.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.14.3](https://github.com/blueraai/bluera-knowledge/compare/v0.14.1...v0.14.3) (2026-01-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **crawl:** avoid lancedb fork-safety crash in intelligent mode ([3608be2](https://github.com/blueraai/bluera-knowledge/commit/3608be28cc09c0b291dde8e2e74c552e857956ab))
|
|
11
|
+
* **crawl:** detect Claude CLI at ~/.claude/local/claude ([cf490e2](https://github.com/blueraai/bluera-knowledge/commit/cf490e2af2524352b108aa19c313faecf0abafac))
|
|
12
|
+
|
|
5
13
|
## [0.14.2](https://github.com/blueraai/bluera-knowledge/compare/v0.14.1...v0.14.2) (2026-01-16)
|
|
6
14
|
|
|
7
15
|
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
createStoreId,
|
|
8
8
|
destroyServices,
|
|
9
9
|
summarizePayload
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-PWOIOCTW.js";
|
|
11
11
|
|
|
12
12
|
// src/mcp/server.ts
|
|
13
13
|
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
@@ -2270,4 +2270,4 @@ export {
|
|
|
2270
2270
|
createMCPServer,
|
|
2271
2271
|
runMCPServer
|
|
2272
2272
|
};
|
|
2273
|
-
//# sourceMappingURL=chunk-
|
|
2273
|
+
//# sourceMappingURL=chunk-GHRRKPM4.js.map
|
|
@@ -4626,13 +4626,13 @@ async function createServices(configPath, dataDir, projectRoot) {
|
|
|
4626
4626
|
const config = new ConfigService(configPath, dataDir, projectRoot);
|
|
4627
4627
|
const appConfig = await config.load();
|
|
4628
4628
|
const resolvedDataDir = config.resolveDataDir();
|
|
4629
|
+
const pythonBridge = new PythonBridge();
|
|
4630
|
+
await pythonBridge.start();
|
|
4629
4631
|
const lance = new LanceStore(resolvedDataDir);
|
|
4630
4632
|
const embeddings = new EmbeddingEngine(appConfig.embedding.model, appConfig.embedding.dimensions);
|
|
4631
4633
|
await embeddings.initialize();
|
|
4632
4634
|
const store = new StoreService(resolvedDataDir);
|
|
4633
4635
|
await store.initialize();
|
|
4634
|
-
const pythonBridge = new PythonBridge();
|
|
4635
|
-
await pythonBridge.start();
|
|
4636
4636
|
const codeGraph = new CodeGraphService(resolvedDataDir, pythonBridge);
|
|
4637
4637
|
const search = new SearchService(lance, embeddings, codeGraph);
|
|
4638
4638
|
const index = new IndexService(lance, embeddings, { codeGraphService: codeGraph });
|
|
@@ -4701,4 +4701,4 @@ export {
|
|
|
4701
4701
|
createServices,
|
|
4702
4702
|
destroyServices
|
|
4703
4703
|
};
|
|
4704
|
-
//# sourceMappingURL=chunk-
|
|
4704
|
+
//# sourceMappingURL=chunk-PWOIOCTW.js.map
|