@dikolab/kbdb 0.2.0 → 0.2.2
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 +9 -9
- package/dist/cli.cjs +1 -1
- package/dist/cli.cjs.map +2 -2
- package/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +2 -2
- package/dist/kbdb-worker.cjs.map +2 -2
- package/dist/mod.cjs +1 -1
- package/dist/mod.cjs.map +1 -1
- package/dist/mod.d.ts +25 -0
- package/dist/mod.mjs +1 -1
- package/dist/mod.mjs.map +1 -1
- package/dist/src/cli.d.ts +8 -0
- package/dist/src/shared/version/constants/version.constant.d.ts +1 -1
- package/dist/src/worker.d.ts +7 -0
- package/dist/worker.mjs.map +2 -2
- package/mod.ts +26 -0
- package/package.json +1 -1
- package/src/cli.ts +9 -0
- package/src/shared/version/constants/version.constant.ts +1 -1
- package/src/worker.ts +8 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ required.
|
|
|
6
6
|
[GitLab](https://gitlab.com/tech-slaves/knowledge-base-db)
|
|
7
7
|
| [NPM](https://www.npmjs.com/package/@dikolab/kbdb)
|
|
8
8
|
| [JSR](https://jsr.io/@dikolab/kbdb)
|
|
9
|
-
| [License: ISC](LICENSE)
|
|
9
|
+
| [License: ISC](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/LICENSE)
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -123,7 +123,7 @@ referenced sections.
|
|
|
123
123
|
unused data
|
|
124
124
|
- **Rebuild** indexes if anything goes wrong
|
|
125
125
|
|
|
126
|
-
See the [CLI Reference](docs/details/cli.md)
|
|
126
|
+
See the [CLI Reference](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/docs/details/cli.md)
|
|
127
127
|
for the full command list and examples.
|
|
128
128
|
|
|
129
129
|
---
|
|
@@ -203,7 +203,7 @@ Add to your `claude_desktop_config.json`:
|
|
|
203
203
|
### Other AI Agents
|
|
204
204
|
|
|
205
205
|
Any MCP-compatible agent can connect. See the
|
|
206
|
-
[MCP Server Guide](docs/details/mcp-server.md) for
|
|
206
|
+
[MCP Server Guide](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/docs/details/mcp-server.md) for
|
|
207
207
|
setup instructions, Deno variants, environment
|
|
208
208
|
variable configuration, and the full list of
|
|
209
209
|
available tools.
|
|
@@ -236,7 +236,7 @@ client.disconnect();
|
|
|
236
236
|
```
|
|
237
237
|
|
|
238
238
|
See the
|
|
239
|
-
[Library API Reference](docs/details/library-api.md)
|
|
239
|
+
[Library API Reference](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/docs/details/library-api.md)
|
|
240
240
|
for the full API.
|
|
241
241
|
|
|
242
242
|
### Development Setup
|
|
@@ -257,7 +257,7 @@ A Docker setup is included with all build tools
|
|
|
257
257
|
HOST_UMASK=$(umask) docker compose run --rm dev bash
|
|
258
258
|
```
|
|
259
259
|
|
|
260
|
-
See the [Makefile](Makefile) for all available
|
|
260
|
+
See the [Makefile](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/Makefile) for all available
|
|
261
261
|
build targets.
|
|
262
262
|
|
|
263
263
|
### Contributing
|
|
@@ -272,17 +272,17 @@ build targets.
|
|
|
272
272
|
|
|
273
273
|
## Documentation
|
|
274
274
|
|
|
275
|
-
- [Detailed Guides](docs/details
|
|
275
|
+
- [Detailed Guides](https://gitlab.com/tech-slaves/knowledge-base-db/-/tree/main/docs/details) -- CLI
|
|
276
276
|
reference, MCP setup, search internals, storage
|
|
277
277
|
format, library API
|
|
278
|
-
- [Release Notes](docs/release-notes
|
|
279
|
-
- [Architecture Overview](docs/overview.md)
|
|
278
|
+
- [Release Notes](https://gitlab.com/tech-slaves/knowledge-base-db/-/tree/main/docs/release-notes)
|
|
279
|
+
- [Architecture Overview](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/docs/overview.md)
|
|
280
280
|
|
|
281
281
|
---
|
|
282
282
|
|
|
283
283
|
## License
|
|
284
284
|
|
|
285
|
-
ISC License -- see [LICENSE](LICENSE) for details.
|
|
285
|
+
ISC License -- see [LICENSE](https://gitlab.com/tech-slaves/knowledge-base-db/-/blob/main/LICENSE) for details.
|
|
286
286
|
|
|
287
287
|
---
|
|
288
288
|
|
package/dist/cli.cjs
CHANGED
|
@@ -968,7 +968,7 @@ async function hydrateSearchPreviews(client, paged) {
|
|
|
968
968
|
}
|
|
969
969
|
|
|
970
970
|
// src/shared/version/constants/version.constant.ts
|
|
971
|
-
var VERSION = "0.2.
|
|
971
|
+
var VERSION = "0.2.2";
|
|
972
972
|
|
|
973
973
|
// src/shared/cli/functions/generate-help.function.ts
|
|
974
974
|
var KNOWN_COMMANDS = /* @__PURE__ */ new Set([
|