@dikolab/kbdb 0.4.1 → 0.5.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/README.md +19 -19
- package/dist/cli.cjs +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/mod.cjs +1 -1
- package/dist/mod.cjs.map +1 -1
- package/dist/mod.mjs +1 -1
- package/dist/mod.mjs.map +1 -1
- package/dist/src/shared/version/constants/version.constant.d.ts +1 -1
- package/dist/wasm/default-embedding/kbdb_default_embedding_bg.wasm +0 -0
- package/dist/wasm/fs-database/kbdb_fs_database_bg.wasm +0 -0
- package/dist/wasm/fs-migration/kbdb_fs_migration_bg.wasm +0 -0
- package/dist/wasm/kb-worker/kbdb_worker_bg.wasm +0 -0
- package/dist/wasm/query-parser/kbdb_query_parser_bg.wasm +0 -0
- package/docs/overview.md +1 -1
- package/docs/release-notes/0.4.3.md +60 -0
- package/docs/release-notes/0.5.0.md +41 -0
- package/docs/release-notes/README.md +3 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@dikolab/kbdb)
|
|
4
4
|
[](https://jsr.io/@dikolab/kbdb)
|
|
5
|
-
[](LICENSE)
|
|
5
|
+
[](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/LICENSE)
|
|
6
6
|
|
|
7
7
|
A file-based knowledge base database -- no external
|
|
8
8
|
server to install.
|
|
9
9
|
|
|
10
|
-
[GitLab](https://gitlab.com/
|
|
10
|
+
[GitLab](https://gitlab.com/diko316/knowledge-base-db)
|
|
11
11
|
| [NPM](https://www.npmjs.com/package/@dikolab/kbdb)
|
|
12
12
|
| [JSR](https://jsr.io/@dikolab/kbdb)
|
|
13
|
-
| [License: ISC](LICENSE)
|
|
13
|
+
| [License: ISC](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/LICENSE)
|
|
14
14
|
|
|
15
15
|
> **Status:** Beta -- actively developed. Core
|
|
16
16
|
> features (search, recall, MCP) are stable and
|
|
@@ -170,7 +170,7 @@ Build, search, and maintain your knowledge store.
|
|
|
170
170
|
- **Rebuild** indexes if anything goes wrong
|
|
171
171
|
|
|
172
172
|
See the
|
|
173
|
-
[Knowledge Base Guide](docs/details/knowledge-base.md)
|
|
173
|
+
[Knowledge Base Guide](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/knowledge-base.md)
|
|
174
174
|
for the full walkthrough, including export and backup.
|
|
175
175
|
|
|
176
176
|
---
|
|
@@ -194,7 +194,7 @@ Integrate kbdb with AI agents and custom tools.
|
|
|
194
194
|
stop and restart the background process
|
|
195
195
|
|
|
196
196
|
See the
|
|
197
|
-
[Agent Tooling Guide](docs/details/agent-tooling.md)
|
|
197
|
+
[Agent Tooling Guide](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/agent-tooling.md)
|
|
198
198
|
for MCP setup, skills, agents, and the library API.
|
|
199
199
|
|
|
200
200
|
---
|
|
@@ -230,13 +230,13 @@ or `dbPath` (the parent directory -- kbdb discovers
|
|
|
230
230
|
`.kbdb` inside it).
|
|
231
231
|
|
|
232
232
|
See the
|
|
233
|
-
[Library API Reference](docs/details/library-api.md)
|
|
233
|
+
[Library API Reference](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/library-api.md)
|
|
234
234
|
for the full API.
|
|
235
235
|
|
|
236
236
|
### Development Setup
|
|
237
237
|
|
|
238
238
|
```sh
|
|
239
|
-
git clone https://gitlab.com/
|
|
239
|
+
git clone https://gitlab.com/diko316/knowledge-base-db.git
|
|
240
240
|
cd knowledge-base-db
|
|
241
241
|
npm install
|
|
242
242
|
npm test
|
|
@@ -253,10 +253,10 @@ HOST_UMASK=$(umask) docker compose run --rm dev bash
|
|
|
253
253
|
|
|
254
254
|
Run `make benchmark` to measure search and rebuild
|
|
255
255
|
latency at scale -- results are written to
|
|
256
|
-
[docs/benchmark/benchmark.md](docs/benchmark/benchmark.md)
|
|
256
|
+
[docs/benchmark/benchmark.md](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/benchmark/benchmark.md)
|
|
257
257
|
automatically.
|
|
258
258
|
|
|
259
|
-
See the [Makefile](Makefile) for all available
|
|
259
|
+
See the [Makefile](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/Makefile) for all available
|
|
260
260
|
build targets.
|
|
261
261
|
|
|
262
262
|
### Contributing
|
|
@@ -271,27 +271,27 @@ build targets.
|
|
|
271
271
|
|
|
272
272
|
## Documentation
|
|
273
273
|
|
|
274
|
-
- [Knowledge Base Guide](docs/details/knowledge-base.md)
|
|
274
|
+
- [Knowledge Base Guide](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/knowledge-base.md)
|
|
275
275
|
-- importing, searching, recall, export
|
|
276
|
-
- [Agent Tooling Guide](docs/details/agent-tooling.md)
|
|
276
|
+
- [Agent Tooling Guide](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/agent-tooling.md)
|
|
277
277
|
-- MCP, skills, agents, library API
|
|
278
|
-
- [CLI Reference](docs/details/cli.md) -- full command
|
|
278
|
+
- [CLI Reference](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/cli.md) -- full command
|
|
279
279
|
list with examples
|
|
280
|
-
- [MCP Server Guide](docs/details/mcp-server.md) --
|
|
280
|
+
- [MCP Server Guide](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/mcp-server.md) --
|
|
281
281
|
setup, tools, environment config
|
|
282
|
-
- [Search and Ranking](docs/details/search-and-ranking.md)
|
|
282
|
+
- [Search and Ranking](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/search-and-ranking.md)
|
|
283
283
|
-- how search works under the hood
|
|
284
|
-
- [Storage Architecture](docs/details/storage.md) --
|
|
284
|
+
- [Storage Architecture](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/details/storage.md) --
|
|
285
285
|
file formats and directory layout
|
|
286
|
-
- [Benchmark Results](docs/benchmark/benchmark.md)
|
|
286
|
+
- [Benchmark Results](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/benchmark/benchmark.md)
|
|
287
287
|
-- search and rebuild latency at scale
|
|
288
|
-
- [Release Notes](docs/release-notes
|
|
289
|
-
- [Architecture Overview](docs/overview.md)
|
|
288
|
+
- [Release Notes](https://gitlab.com/diko316/knowledge-base-db/-/tree/main/docs/release-notes)
|
|
289
|
+
- [Architecture Overview](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/docs/overview.md)
|
|
290
290
|
|
|
291
291
|
---
|
|
292
292
|
|
|
293
293
|
## License
|
|
294
294
|
|
|
295
|
-
ISC License -- see [LICENSE](LICENSE) for details.
|
|
295
|
+
ISC License -- see [LICENSE](https://gitlab.com/diko316/knowledge-base-db/-/blob/main/LICENSE) for details.
|
|
296
296
|
|
|
297
297
|
---
|
package/dist/cli.cjs
CHANGED
|
@@ -1429,7 +1429,7 @@ async function hydrateSearchPreviews(client, paged) {
|
|
|
1429
1429
|
}
|
|
1430
1430
|
|
|
1431
1431
|
// src/shared/version/constants/version.constant.ts
|
|
1432
|
-
var VERSION = "0.
|
|
1432
|
+
var VERSION = "0.5.0";
|
|
1433
1433
|
|
|
1434
1434
|
// src/shared/cli/functions/generate-help.function.ts
|
|
1435
1435
|
var KNOWN_COMMANDS = /* @__PURE__ */ new Set([
|