@dikolab/kbdb 0.3.0 → 0.3.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/README.md +24 -43
- package/dist/bench/constants/corpus-defaults.constant.d.ts +3 -0
- package/dist/bench/functions/format-report.function.d.ts +11 -0
- package/dist/bench/functions/generate-corpus.function.d.ts +12 -0
- package/dist/bench/functions/measure-operation.function.d.ts +14 -0
- package/dist/bench/functions/seeded-rng.function.d.ts +11 -0
- package/dist/bench/functions/zipf-word.function.d.ts +13 -0
- package/dist/bench/index.d.ts +10 -0
- package/dist/bench/typings/bench-result.interface.d.ts +11 -0
- package/dist/bench/typings/bench-suite-result.interface.d.ts +10 -0
- package/dist/bench/typings/corpus-config.interface.d.ts +11 -0
- package/dist/bench/typings/corpus-section.interface.d.ts +9 -0
- package/dist/cli.cjs +63 -9
- package/dist/cli.cjs.map +2 -2
- package/dist/cli.mjs +63 -9
- package/dist/cli.mjs.map +2 -2
- package/dist/src/shared/auto-capture/classes/auto-capture-controller.class.d.ts +33 -0
- package/dist/src/shared/auto-capture/constants/auto-capture-defaults.constant.d.ts +8 -0
- package/dist/src/shared/auto-capture/functions/build-capture-prompt.function.d.ts +11 -0
- package/dist/src/shared/auto-capture/functions/evaluate-trigger.function.d.ts +12 -0
- package/dist/src/shared/auto-capture/index.d.ts +7 -0
- package/dist/src/shared/auto-capture/typings/auto-capture-config.interface.d.ts +13 -0
- package/dist/src/shared/auto-capture/typings/auto-capture-state.interface.d.ts +13 -0
- package/dist/src/shared/auto-capture/typings/auto-capture-trigger.interface.d.ts +7 -0
- package/dist/src/shared/cli/constants/global-help.constant.d.ts +8 -0
- package/dist/src/shared/cli/constants/leaf-help.constant.d.ts +7 -0
- package/dist/src/shared/cli/constants/memory-protocol-body.constant.d.ts +7 -0
- package/dist/src/shared/cli/constants/query-guidance-body.constant.d.ts +7 -0
- package/dist/src/shared/cli/constants/subcommand-help.constant.d.ts +8 -0
- package/dist/src/shared/cli/functions/collect-files.function.d.ts +13 -0
- package/dist/src/shared/cli/functions/compute-section-kbid.function.d.ts +15 -0
- package/dist/src/shared/cli/functions/format-mcp-output.function.d.ts +9 -0
- package/dist/src/shared/cli/functions/format-text-output.function.d.ts +9 -0
- package/dist/src/shared/cli/functions/generate-group-help.function.d.ts +11 -0
- package/dist/src/shared/cli/functions/handle-data-command.function.d.ts +16 -0
- package/dist/src/shared/cli/functions/handle-mcp.function.d.ts +15 -0
- package/dist/src/shared/cli/functions/handle-migrate.function.d.ts +15 -0
- package/dist/src/shared/cli/functions/hydrate-search-previews.function.d.ts +14 -0
- package/dist/src/shared/cli/functions/resolve-skill-names.function.d.ts +16 -0
- package/dist/src/shared/cli/functions/run-search.function.d.ts +1 -0
- package/dist/src/shared/cli/functions/version-gate.function.d.ts +15 -0
- package/dist/src/shared/cli/functions/wrap-command.function.d.ts +15 -0
- package/dist/src/shared/cli/typings/agent-create-client.interface.d.ts +42 -0
- package/dist/src/shared/cli/typings/agent-get-client.interface.d.ts +36 -0
- package/dist/src/shared/cli/typings/check-client.interface.d.ts +58 -0
- package/dist/src/shared/cli/typings/cli-deps.interface.d.ts +48 -0
- package/dist/src/shared/cli/typings/cli-options.interface.d.ts +2 -0
- package/dist/src/shared/cli/typings/disconnectable-client.interface.d.ts +26 -0
- package/dist/src/shared/cli/typings/dispatch-client.type.d.ts +27 -0
- package/dist/src/shared/cli/typings/learn-client.interface.d.ts +52 -0
- package/dist/src/shared/cli/typings/learn-io.interface.d.ts +5 -0
- package/dist/src/shared/cli/typings/search-client.interface.d.ts +71 -0
- package/dist/src/shared/embedding/classes/null-embedding-provider.class.d.ts +20 -0
- package/dist/src/shared/embedding/constants/near-duplicate-thresholds.constant.d.ts +15 -0
- package/dist/src/shared/embedding/functions/build-vector-index.function.d.ts +14 -0
- package/dist/src/shared/embedding/functions/cosine-similarity.function.d.ts +10 -0
- package/dist/src/shared/embedding/functions/detect-near-duplicates.function.d.ts +18 -0
- package/dist/src/shared/embedding/functions/jaccard-coefficient.function.d.ts +9 -0
- package/dist/src/shared/embedding/functions/read-vector-index-meta.function.d.ts +10 -0
- package/dist/src/shared/embedding/functions/rrf-fuse.function.d.ts +14 -0
- package/dist/src/shared/embedding/functions/search-vectors.function.d.ts +14 -0
- package/dist/src/shared/embedding/index.d.ts +16 -0
- package/dist/src/shared/embedding/typings/embedding-config.interface.d.ts +20 -0
- package/dist/src/shared/embedding/typings/embedding-provider.interface.d.ts +23 -0
- package/dist/src/shared/embedding/typings/near-duplicate-candidate.model.d.ts +23 -0
- package/dist/src/shared/embedding/typings/near-duplicate-result.model.d.ts +24 -0
- package/dist/src/shared/embedding/typings/vector-index-entry.model.d.ts +12 -0
- package/dist/src/shared/embedding/typings/vector-index-meta.model.d.ts +11 -0
- package/dist/src/shared/embedding/typings/vector-search-result.model.d.ts +7 -0
- package/dist/src/shared/mcp/constants/tool-agent-create.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-agent-delete.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-agent-get.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-agent-list.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-auto-capture-review.constant.d.ts +8 -0
- package/dist/src/shared/mcp/constants/tool-check.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-content.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-export.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-gc.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-learn.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-rebuild.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-recall.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-retrieve.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-search.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-skill-delete.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-skill-get.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-skill-learn.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-skill-list.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-status.constant.d.ts +3 -0
- package/dist/src/shared/mcp/constants/tool-unlearn.constant.d.ts +3 -0
- package/dist/src/shared/mcp/functions/as-boolean-or-undefined.function.d.ts +7 -0
- package/dist/src/shared/mcp/functions/as-string-array-or-undefined.function.d.ts +7 -0
- package/dist/src/shared/mcp/functions/as-string-array.function.d.ts +7 -0
- package/dist/src/shared/mcp/functions/as-string.function.d.ts +8 -0
- package/dist/src/shared/mcp/functions/build-skills-text.function.d.ts +18 -0
- package/dist/src/shared/mcp/functions/handle-agent-prompt.function.d.ts +14 -0
- package/dist/src/shared/mcp/functions/handle-mcp-request.function.d.ts +14 -0
- package/dist/src/shared/mcp/functions/handle-prompt-get.function.d.ts +4 -3
- package/dist/src/shared/mcp/functions/handle-skill-prompt.function.d.ts +16 -0
- package/dist/src/shared/mcp/functions/handle-tool-auto-capture-review.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/handle-tool-check.function.d.ts +11 -0
- package/dist/src/shared/mcp/functions/handle-tool-content.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/handle-tool-export.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/handle-tool-gc.function.d.ts +11 -0
- package/dist/src/shared/mcp/functions/handle-tool-learn.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/handle-tool-rebuild.function.d.ts +11 -0
- package/dist/src/shared/mcp/functions/handle-tool-retrieve.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/handle-tool-search.function.d.ts +13 -0
- package/dist/src/shared/mcp/functions/handle-tool-skill-delete.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/handle-tool-skill-get.function.d.ts +13 -0
- package/dist/src/shared/mcp/functions/handle-tool-skill-learn.function.d.ts +13 -0
- package/dist/src/shared/mcp/functions/handle-tool-skill-list.function.d.ts +11 -0
- package/dist/src/shared/mcp/functions/handle-tool-status.function.d.ts +11 -0
- package/dist/src/shared/mcp/functions/handle-tool-unlearn.function.d.ts +12 -0
- package/dist/src/shared/mcp/functions/parse-agent-meta.function.d.ts +14 -0
- package/dist/src/shared/mcp/functions/parse-skill-arguments.function.d.ts +11 -0
- package/dist/src/shared/mcp/functions/read-agent-meta.function.d.ts +17 -0
- package/dist/src/shared/mcp/functions/resolve-skill-refs.function.d.ts +23 -0
- package/dist/src/shared/mcp/functions/run-startup-health-check.function.d.ts +14 -0
- package/dist/src/shared/mcp/typings/mcp-capabilities.interface.d.ts +16 -0
- package/dist/src/shared/mcp/typings/mcp-client.interface.d.ts +2 -0
- package/dist/src/shared/mcp/typings/mcp-completion.interface.d.ts +43 -0
- package/dist/src/shared/mcp/typings/mcp-content-result.model.d.ts +9 -0
- package/dist/src/shared/mcp/typings/mcp-export-result.model.d.ts +11 -0
- package/dist/src/shared/mcp/typings/mcp-gc-result.model.d.ts +15 -0
- package/dist/src/shared/mcp/typings/mcp-integrity-check-result.model.d.ts +16 -0
- package/dist/src/shared/mcp/typings/mcp-integrity-error.model.d.ts +9 -0
- package/dist/src/shared/mcp/typings/mcp-notification.interface.d.ts +9 -0
- package/dist/src/shared/mcp/typings/mcp-rebuild-result.model.d.ts +9 -0
- package/dist/src/shared/mcp/typings/mcp-request.interface.d.ts +11 -0
- package/dist/src/shared/mcp/typings/mcp-resource-result.interface.d.ts +12 -0
- package/dist/src/shared/mcp/typings/mcp-resource-template.interface.d.ts +11 -0
- package/dist/src/shared/mcp/typings/mcp-response.interface.d.ts +18 -0
- package/dist/src/shared/mcp/typings/mcp-server-info.interface.d.ts +7 -0
- package/dist/src/shared/mcp/typings/mcp-server-state.interface.d.ts +16 -0
- package/dist/src/shared/mcp/typings/mcp-tool-annotations.interface.d.ts +32 -0
- package/dist/src/shared/mcp/typings/mcp-tool-definition.interface.d.ts +15 -0
- package/dist/src/shared/mcp/typings/mcp-tool-result.interface.d.ts +19 -0
- package/dist/src/shared/mcp/typings/mcp-worker-client.interface.d.ts +220 -0
- package/dist/src/shared/mcp/typings/tool-call-result.model.d.ts +17 -0
- package/dist/src/shared/sync/functions/build-import-report.function.d.ts +18 -0
- package/dist/src/shared/sync/functions/parse-export-entry.function.d.ts +11 -0
- package/dist/src/shared/sync/functions/resolve-conflict.function.d.ts +13 -0
- package/dist/src/shared/sync/functions/serialize-export-entry.function.d.ts +8 -0
- package/dist/src/shared/sync/index.d.ts +9 -0
- package/dist/src/shared/sync/typings/conflict-resolution.type.d.ts +8 -0
- package/dist/src/shared/sync/typings/export-entry.interface.d.ts +13 -0
- package/dist/src/shared/sync/typings/export-options.interface.d.ts +9 -0
- package/dist/src/shared/sync/typings/import-options.interface.d.ts +7 -0
- package/dist/src/shared/sync/typings/import-report.interface.d.ts +15 -0
- package/dist/src/shared/wasm-codec/functions/decode-one-recall-result.function.d.ts +14 -0
- package/dist/src/shared/wasm-codec/functions/decode-option-string.function.d.ts +12 -0
- package/dist/src/shared/wasm-codec/functions/decode-recall-document.function.d.ts +14 -0
- package/dist/src/shared/wasm-codec/functions/decode-recall-reference.function.d.ts +14 -0
- package/dist/src/shared/wasm-codec/functions/decode-recall-sibling.function.d.ts +13 -0
- package/dist/src/shared/wasm-codec/functions/decode-section-match.function.d.ts +15 -0
- package/dist/src/shared/wasm-codec/functions/decode-section-record-trailing.function.d.ts +14 -0
- package/dist/src/shared/wasm-codec/functions/decode-section-record.function.d.ts +14 -0
- package/dist/src/shared/wasm-codec/functions/decode-section-type.function.d.ts +13 -0
- package/dist/src/shared/wasm-codec/functions/decode-wasm-list.function.d.ts +17 -0
- package/dist/src/shared/wasm-codec/typings/add-section-input.model.d.ts +45 -0
- package/dist/src/shared/wasm-codec/typings/add-section-result.model.d.ts +27 -0
- package/dist/src/shared/wasm-codec/typings/document-manifest.model.d.ts +19 -0
- package/dist/src/shared/wasm-codec/typings/document-section.model.d.ts +12 -0
- package/dist/src/shared/wasm-codec/typings/item-decoder.type.d.ts +6 -0
- package/dist/src/shared/wasm-codec/typings/near-duplicate.model.d.ts +16 -0
- package/dist/src/shared/wasm-codec/typings/paged-search-result.model.d.ts +21 -0
- package/dist/src/shared/wasm-codec/typings/section-match.model.d.ts +31 -0
- package/dist/src/shared/wasm-codec/typings/section-record-trailing.model.d.ts +38 -0
- package/dist/src/shared/wasm-codec/typings/section-record.model.d.ts +66 -0
- package/dist/src/shared/wasm-codec/typings/section-type-result.model.d.ts +12 -0
- package/dist/src/shared/worker-client/functions/handle-ipc-data.function.d.ts +16 -0
- package/dist/src/shared/worker-client/functions/send-ipc-request.function.d.ts +19 -0
- package/dist/src/shared/worker-client/typings/add-section-result.model.d.ts +2 -0
- package/dist/src/shared/worker-client/typings/json-rpc-response.interface.d.ts +16 -0
- package/dist/src/shared/worker-client/typings/pending-call.interface.d.ts +7 -0
- package/dist/src/shared/worker-client/typings/recall-document.model.d.ts +16 -0
- package/dist/src/shared/worker-client/typings/recall-params.model.d.ts +15 -0
- package/dist/src/shared/worker-client/typings/recall-reference.model.d.ts +32 -0
- package/dist/src/shared/worker-client/typings/recall-sibling.model.d.ts +11 -0
- package/dist/src/shared/worker-client/typings/recall-single-result.model.d.ts +40 -0
- package/dist/src/shared/worker-daemon/classes/ipc-error.class.d.ts +17 -0
- package/dist/src/shared/worker-daemon/constants/wasm-method-map.constant.d.ts +16 -0
- package/dist/src/shared/worker-daemon/functions/build-ipc-error-response.function.d.ts +9 -0
- package/dist/src/shared/worker-daemon/functions/check-catalog-version.function.d.ts +9 -0
- package/dist/src/shared/worker-daemon/functions/check-preconditions.function.d.ts +10 -0
- package/dist/src/shared/worker-daemon/functions/detect-stale-pid.function.d.ts +15 -0
- package/dist/src/shared/worker-daemon/functions/dispatch-request.function.d.ts +35 -0
- package/dist/src/shared/worker-daemon/functions/handle-check-version.function.d.ts +23 -0
- package/dist/src/shared/worker-daemon/functions/handle-config-method.function.d.ts +11 -0
- package/dist/src/shared/worker-daemon/functions/handle-read-ops.function.d.ts +52 -0
- package/dist/src/shared/worker-daemon/functions/handle-write-ops.function.d.ts +44 -0
- package/dist/src/shared/worker-daemon/functions/parse-auto-capture-section.function.d.ts +14 -0
- package/dist/src/shared/worker-daemon/functions/parse-catalog-version.function.d.ts +10 -0
- package/dist/src/shared/worker-daemon/functions/parse-embedding-section.function.d.ts +13 -0
- package/dist/src/shared/worker-daemon/functions/parse-worker-toml.function.d.ts +11 -0
- package/dist/src/shared/worker-daemon/functions/run-startup-integrity-check.function.d.ts +18 -0
- package/dist/src/shared/worker-daemon/functions/scan-near-duplicates.function.d.ts +21 -0
- package/dist/src/shared/worker-daemon/functions/wasm-bridge.function.d.ts +51 -0
- package/dist/src/shared/worker-daemon/functions/wasm-memory-helpers.function.d.ts +22 -0
- package/dist/src/shared/worker-daemon/functions/write-lock.function.d.ts +32 -0
- package/dist/src/shared/worker-daemon/typings/allocator-ref.interface.d.ts +16 -0
- package/dist/src/shared/worker-daemon/typings/daemon-config.interface.d.ts +6 -0
- package/dist/src/shared/worker-daemon/typings/fs-adapter.interface.d.ts +22 -0
- package/dist/src/shared/worker-daemon/typings/handler-context.interface.d.ts +18 -0
- package/dist/src/shared/worker-daemon/typings/memory-ref.interface.d.ts +13 -0
- package/dist/src/shared/worker-daemon/typings/wasm-fn.type.d.ts +2 -0
- package/dist/src/shared/worker-daemon/typings/write-lock.interface.d.ts +15 -0
- package/dist/wasm/fs-database/kbdb_fs_database_bg.wasm +0 -0
- package/dist/wasm/kb-worker/kbdb_worker_bg.wasm +0 -0
- package/docs/details/mcp-server.md +4 -2
- package/docs/goals/auto-capture.md +378 -0
- package/docs/goals/benchmarking.md +296 -0
- package/docs/goals/concurrency.md +259 -0
- package/docs/goals/hybrid-search.md +436 -0
- package/docs/goals/semantic-dedup.md +229 -0
- package/docs/goals/sync.md +217 -0
- package/docs/modules/rust/fs-database/indexes/vectors.md +110 -0
- package/docs/modules/typescript/shared/auto-capture/module.md +73 -0
- package/docs/modules/typescript/shared/embedding/functions.md +94 -0
- package/docs/modules/typescript/shared/embedding/module.md +71 -0
- package/docs/modules/typescript/shared/embedding/typings.md +122 -0
- package/docs/overview.md +148 -166
- package/docs/release-notes/0.2.0.md +3 -3
- package/docs/release-notes/0.3.0.md +89 -0
- package/docs/release-notes/0.3.1.md +111 -0
- package/docs/release-notes/README.md +2 -0
- package/package.json +1 -1
- package/src/shared/auto-capture/classes/auto-capture-controller.class.ts +62 -0
- package/src/shared/auto-capture/constants/auto-capture-defaults.constant.ts +15 -0
- package/src/shared/auto-capture/functions/build-capture-prompt.function.ts +27 -0
- package/src/shared/auto-capture/functions/evaluate-trigger.function.ts +50 -0
- package/src/shared/auto-capture/index.ts +7 -0
- package/src/shared/auto-capture/typings/auto-capture-config.interface.ts +13 -0
- package/src/shared/auto-capture/typings/auto-capture-state.interface.ts +13 -0
- package/src/shared/auto-capture/typings/auto-capture-trigger.interface.ts +7 -0
- package/src/shared/cli/constants/global-help.constant.ts +73 -0
- package/src/shared/cli/constants/leaf-help.constant.ts +219 -0
- package/src/shared/cli/constants/memory-protocol-body.constant.ts +39 -0
- package/src/shared/cli/constants/query-guidance-body.constant.ts +37 -0
- package/src/shared/cli/constants/subcommand-help.constant.ts +195 -0
- package/src/shared/cli/functions/collect-files.function.ts +55 -0
- package/src/shared/cli/functions/compute-section-kbid.function.ts +49 -0
- package/src/shared/cli/functions/format-mcp-output.function.ts +41 -0
- package/src/shared/cli/functions/format-text-output.function.ts +42 -0
- package/src/shared/cli/functions/generate-group-help.function.ts +41 -0
- package/src/shared/cli/functions/handle-data-command.function.ts +67 -0
- package/src/shared/cli/functions/handle-mcp.function.ts +56 -0
- package/src/shared/cli/functions/handle-migrate.function.ts +64 -0
- package/src/shared/cli/functions/hydrate-search-previews.function.ts +29 -0
- package/src/shared/cli/functions/parse-args.function.ts +3 -0
- package/src/shared/cli/functions/resolve-skill-names.function.ts +43 -0
- package/src/shared/cli/functions/run-search.function.ts +2 -0
- package/src/shared/cli/functions/version-gate.function.ts +44 -0
- package/src/shared/cli/functions/wrap-command.function.ts +34 -0
- package/src/shared/cli/typings/agent-create-client.interface.ts +47 -0
- package/src/shared/cli/typings/agent-get-client.interface.ts +39 -0
- package/src/shared/cli/typings/check-client.interface.ts +66 -0
- package/src/shared/cli/typings/cli-deps.interface.ts +54 -0
- package/src/shared/cli/typings/cli-options.interface.ts +2 -0
- package/src/shared/cli/typings/disconnectable-client.interface.ts +29 -0
- package/src/shared/cli/typings/dispatch-client.type.ts +46 -0
- package/src/shared/cli/typings/learn-client.interface.ts +53 -0
- package/src/shared/cli/typings/learn-io.interface.ts +5 -0
- package/src/shared/cli/typings/search-client.interface.ts +73 -0
- package/src/shared/embedding/classes/null-embedding-provider.class.ts +29 -0
- package/src/shared/embedding/constants/near-duplicate-thresholds.constant.ts +17 -0
- package/src/shared/embedding/functions/build-vector-index.function.ts +79 -0
- package/src/shared/embedding/functions/cosine-similarity.function.ts +31 -0
- package/src/shared/embedding/functions/detect-near-duplicates.function.ts +69 -0
- package/src/shared/embedding/functions/jaccard-coefficient.function.ts +26 -0
- package/src/shared/embedding/functions/read-vector-index-meta.function.ts +44 -0
- package/src/shared/embedding/functions/rrf-fuse.function.ts +33 -0
- package/src/shared/embedding/functions/search-vectors.function.ts +59 -0
- package/src/shared/embedding/index.ts +20 -0
- package/src/shared/embedding/typings/embedding-config.interface.ts +23 -0
- package/src/shared/embedding/typings/embedding-provider.interface.ts +25 -0
- package/src/shared/embedding/typings/near-duplicate-candidate.model.ts +25 -0
- package/src/shared/embedding/typings/near-duplicate-result.model.ts +26 -0
- package/src/shared/embedding/typings/vector-index-entry.model.ts +13 -0
- package/src/shared/embedding/typings/vector-index-meta.model.ts +14 -0
- package/src/shared/embedding/typings/vector-search-result.model.ts +8 -0
- package/src/shared/mcp/classes/mcp-server.class.ts +6 -3
- package/src/shared/mcp/constants/tool-agent-create.constant.ts +39 -0
- package/src/shared/mcp/constants/tool-agent-delete.constant.ts +26 -0
- package/src/shared/mcp/constants/tool-agent-get.constant.ts +24 -0
- package/src/shared/mcp/constants/tool-agent-list.constant.ts +18 -0
- package/src/shared/mcp/constants/tool-auto-capture-review.constant.ts +32 -0
- package/src/shared/mcp/constants/tool-check.constant.ts +21 -0
- package/src/shared/mcp/constants/tool-content.constant.ts +29 -0
- package/src/shared/mcp/constants/tool-export.constant.ts +27 -0
- package/src/shared/mcp/constants/tool-gc.constant.ts +21 -0
- package/src/shared/mcp/constants/tool-learn.constant.ts +58 -0
- package/src/shared/mcp/constants/tool-rebuild.constant.ts +21 -0
- package/src/shared/mcp/constants/tool-recall.constant.ts +36 -0
- package/src/shared/mcp/constants/tool-retrieve.constant.ts +31 -0
- package/src/shared/mcp/constants/tool-search.constant.ts +51 -0
- package/src/shared/mcp/constants/tool-skill-delete.constant.ts +24 -0
- package/src/shared/mcp/constants/tool-skill-get.constant.ts +27 -0
- package/src/shared/mcp/constants/tool-skill-learn.constant.ts +37 -0
- package/src/shared/mcp/constants/tool-skill-list.constant.ts +18 -0
- package/src/shared/mcp/constants/tool-status.constant.ts +20 -0
- package/src/shared/mcp/constants/tool-unlearn.constant.ts +25 -0
- package/src/shared/mcp/functions/as-boolean-or-undefined.function.ts +11 -0
- package/src/shared/mcp/functions/as-string-array-or-undefined.function.ts +17 -0
- package/src/shared/mcp/functions/as-string-array.function.ts +15 -0
- package/src/shared/mcp/functions/as-string.function.ts +10 -0
- package/src/shared/mcp/functions/build-skills-text.function.ts +43 -0
- package/src/shared/mcp/functions/create-tool-definitions.function.ts +28 -0
- package/src/shared/mcp/functions/handle-agent-create.function.ts +1 -1
- package/src/shared/mcp/functions/handle-agent-prompt.function.ts +68 -0
- package/src/shared/mcp/functions/handle-mcp-request.function.ts +202 -0
- package/src/shared/mcp/functions/handle-prompt-get.function.ts +18 -12
- package/src/shared/mcp/functions/handle-skill-prompt.function.ts +44 -0
- package/src/shared/mcp/functions/handle-tool-auto-capture-review.function.ts +24 -0
- package/src/shared/mcp/functions/handle-tool-call.function.ts +18 -0
- package/src/shared/mcp/functions/handle-tool-check.function.ts +21 -0
- package/src/shared/mcp/functions/handle-tool-content.function.ts +23 -0
- package/src/shared/mcp/functions/handle-tool-export.function.ts +25 -0
- package/src/shared/mcp/functions/handle-tool-gc.function.ts +21 -0
- package/src/shared/mcp/functions/handle-tool-learn.function.ts +69 -0
- package/src/shared/mcp/functions/handle-tool-rebuild.function.ts +21 -0
- package/src/shared/mcp/functions/handle-tool-retrieve.function.ts +40 -0
- package/src/shared/mcp/functions/handle-tool-search.function.ts +47 -0
- package/src/shared/mcp/functions/handle-tool-skill-delete.function.ts +34 -0
- package/src/shared/mcp/functions/handle-tool-skill-get.function.ts +59 -0
- package/src/shared/mcp/functions/handle-tool-skill-learn.function.ts +61 -0
- package/src/shared/mcp/functions/handle-tool-skill-list.function.ts +39 -0
- package/src/shared/mcp/functions/handle-tool-status.function.ts +21 -0
- package/src/shared/mcp/functions/handle-tool-unlearn.function.ts +24 -0
- package/src/shared/mcp/functions/parse-agent-meta.function.ts +27 -0
- package/src/shared/mcp/functions/parse-skill-arguments.function.ts +36 -0
- package/src/shared/mcp/functions/read-agent-meta.function.ts +41 -0
- package/src/shared/mcp/functions/resolve-skill-refs.function.ts +50 -0
- package/src/shared/mcp/functions/run-startup-health-check.function.ts +34 -0
- package/src/shared/mcp/typings/mcp-capabilities.interface.ts +16 -0
- package/src/shared/mcp/typings/mcp-client.interface.ts +2 -0
- package/src/shared/mcp/typings/mcp-completion.interface.ts +45 -0
- package/src/shared/mcp/typings/mcp-content-result.model.ts +9 -0
- package/src/shared/mcp/typings/mcp-export-result.model.ts +11 -0
- package/src/shared/mcp/typings/mcp-gc-result.model.ts +15 -0
- package/src/shared/mcp/typings/mcp-integrity-check-result.model.ts +17 -0
- package/src/shared/mcp/typings/mcp-integrity-error.model.ts +15 -0
- package/src/shared/mcp/typings/mcp-notification.interface.ts +9 -0
- package/src/shared/mcp/typings/mcp-rebuild-result.model.ts +9 -0
- package/src/shared/mcp/typings/mcp-request.interface.ts +11 -0
- package/src/shared/mcp/typings/mcp-resource-result.interface.ts +12 -0
- package/src/shared/mcp/typings/mcp-resource-template.interface.ts +11 -0
- package/src/shared/mcp/typings/mcp-response.interface.ts +18 -0
- package/src/shared/mcp/typings/mcp-server-info.interface.ts +7 -0
- package/src/shared/mcp/typings/mcp-server-state.interface.ts +17 -0
- package/src/shared/mcp/typings/mcp-tool-annotations.interface.ts +32 -0
- package/src/shared/mcp/typings/mcp-tool-definition.interface.ts +16 -0
- package/src/shared/mcp/typings/mcp-tool-result.interface.ts +19 -0
- package/src/shared/mcp/typings/mcp-worker-client.interface.ts +243 -0
- package/src/shared/mcp/typings/tool-call-result.model.ts +18 -0
- package/src/shared/sync/functions/build-import-report.function.ts +40 -0
- package/src/shared/sync/functions/parse-export-entry.function.ts +45 -0
- package/src/shared/sync/functions/resolve-conflict.function.ts +31 -0
- package/src/shared/sync/functions/serialize-export-entry.function.ts +18 -0
- package/src/shared/sync/index.ts +9 -0
- package/src/shared/sync/typings/conflict-resolution.type.ts +8 -0
- package/src/shared/sync/typings/export-entry.interface.ts +13 -0
- package/src/shared/sync/typings/export-options.interface.ts +9 -0
- package/src/shared/sync/typings/import-options.interface.ts +7 -0
- package/src/shared/sync/typings/import-report.interface.ts +15 -0
- package/src/shared/wasm-codec/functions/decode-one-recall-result.function.ts +86 -0
- package/src/shared/wasm-codec/functions/decode-option-string.function.ts +24 -0
- package/src/shared/wasm-codec/functions/decode-recall-document.function.ts +59 -0
- package/src/shared/wasm-codec/functions/decode-recall-reference.function.ts +52 -0
- package/src/shared/wasm-codec/functions/decode-recall-sibling.function.ts +43 -0
- package/src/shared/wasm-codec/functions/decode-section-match.function.ts +80 -0
- package/src/shared/wasm-codec/functions/decode-section-record-trailing.function.ts +75 -0
- package/src/shared/wasm-codec/functions/decode-section-record.function.ts +85 -0
- package/src/shared/wasm-codec/functions/decode-section-type.function.ts +30 -0
- package/src/shared/wasm-codec/functions/decode-wasm-list.function.ts +31 -0
- package/src/shared/wasm-codec/typings/add-section-input.model.ts +45 -0
- package/src/shared/wasm-codec/typings/add-section-result.model.ts +28 -0
- package/src/shared/wasm-codec/typings/document-manifest.model.ts +20 -0
- package/src/shared/wasm-codec/typings/document-section.model.ts +12 -0
- package/src/shared/wasm-codec/typings/item-decoder.type.ts +10 -0
- package/src/shared/wasm-codec/typings/near-duplicate.model.ts +16 -0
- package/src/shared/wasm-codec/typings/paged-search-result.model.ts +22 -0
- package/src/shared/wasm-codec/typings/section-match.model.ts +31 -0
- package/src/shared/wasm-codec/typings/section-record-trailing.model.ts +38 -0
- package/src/shared/wasm-codec/typings/section-record.model.ts +66 -0
- package/src/shared/wasm-codec/typings/section-type-result.model.ts +12 -0
- package/src/shared/worker-client/functions/handle-ipc-data.function.ts +49 -0
- package/src/shared/worker-client/functions/send-ipc-request.function.ts +39 -0
- package/src/shared/worker-client/typings/add-section-result.model.ts +2 -0
- package/src/shared/worker-client/typings/json-rpc-response.interface.ts +17 -0
- package/src/shared/worker-client/typings/pending-call.interface.ts +7 -0
- package/src/shared/worker-client/typings/recall-document.model.ts +16 -0
- package/src/shared/worker-client/typings/recall-params.model.ts +15 -0
- package/src/shared/worker-client/typings/recall-reference.model.ts +32 -0
- package/src/shared/worker-client/typings/recall-sibling.model.ts +11 -0
- package/src/shared/worker-client/typings/recall-single-result.model.ts +41 -0
- package/src/shared/worker-daemon/classes/ipc-error.class.ts +22 -0
- package/src/shared/worker-daemon/constants/wasm-method-map.constant.ts +69 -0
- package/src/shared/worker-daemon/functions/build-ipc-error-response.function.ts +16 -0
- package/src/shared/worker-daemon/functions/check-catalog-version.function.ts +54 -0
- package/src/shared/worker-daemon/functions/check-preconditions.function.ts +28 -0
- package/src/shared/worker-daemon/functions/detect-stale-pid.function.ts +33 -0
- package/src/shared/worker-daemon/functions/dispatch-request.function.ts +190 -0
- package/src/shared/worker-daemon/functions/handle-check-version.function.ts +74 -0
- package/src/shared/worker-daemon/functions/handle-config-method.function.ts +27 -0
- package/src/shared/worker-daemon/functions/handle-read-ops.function.ts +236 -0
- package/src/shared/worker-daemon/functions/handle-write-ops.function.ts +257 -0
- package/src/shared/worker-daemon/functions/parse-auto-capture-section.function.ts +51 -0
- package/src/shared/worker-daemon/functions/parse-catalog-version.function.ts +20 -0
- package/src/shared/worker-daemon/functions/parse-embedding-section.function.ts +38 -0
- package/src/shared/worker-daemon/functions/parse-worker-toml.function.ts +104 -0
- package/src/shared/worker-daemon/functions/run-startup-integrity-check.function.ts +55 -0
- package/src/shared/worker-daemon/functions/scan-near-duplicates.function.ts +92 -0
- package/src/shared/worker-daemon/functions/wasm-bridge.function.ts +144 -0
- package/src/shared/worker-daemon/functions/wasm-memory-helpers.function.ts +41 -0
- package/src/shared/worker-daemon/functions/write-lock.function.ts +49 -0
- package/src/shared/worker-daemon/typings/allocator-ref.interface.ts +16 -0
- package/src/shared/worker-daemon/typings/daemon-config.interface.ts +7 -0
- package/src/shared/worker-daemon/typings/fs-adapter.interface.ts +22 -0
- package/src/shared/worker-daemon/typings/handler-context.interface.ts +19 -0
- package/src/shared/worker-daemon/typings/memory-ref.interface.ts +13 -0
- package/src/shared/worker-daemon/typings/wasm-fn.type.ts +2 -0
- package/src/shared/worker-daemon/typings/write-lock.interface.ts +13 -0
- package/src/wasm/fs-database/kbdb_fs_database_bg.wasm +0 -0
- package/src/wasm/kb-worker/kbdb_worker_bg.wasm +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { ConflictResolution } from '../typings/conflict-resolution.type.ts';
|
|
2
|
+
import type { ExportEntry } from '../typings/export-entry.interface.ts';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Determines the conflict resolution action for
|
|
6
|
+
* an incoming section.
|
|
7
|
+
*
|
|
8
|
+
* Rules applied in order:
|
|
9
|
+
* 1. Same kbid exists -> skip
|
|
10
|
+
* 2. Same source_key, incoming is newer -> supersede
|
|
11
|
+
* 3. Same source_key, incoming is not newer -> skip
|
|
12
|
+
* 4. No match -> add
|
|
13
|
+
*/
|
|
14
|
+
export function resolveConflict(
|
|
15
|
+
incoming: ExportEntry,
|
|
16
|
+
existingKbids: ReadonlySet<string>,
|
|
17
|
+
existingBySourceKey: ReadonlyMap<string, ExportEntry>,
|
|
18
|
+
): ConflictResolution {
|
|
19
|
+
if (existingKbids.has(incoming.kbid)) {
|
|
20
|
+
return 'skip';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const existing = existingBySourceKey.get(incoming.sourceKey);
|
|
24
|
+
if (existing !== undefined) {
|
|
25
|
+
const incomingTime = new Date(incoming.createdAt).getTime();
|
|
26
|
+
const existingTime = new Date(existing.createdAt).getTime();
|
|
27
|
+
return incomingTime > existingTime ? 'supersede' : 'skip';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return 'add';
|
|
31
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { ExportEntry } from '../typings/export-entry.interface.ts';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Serializes an export entry to a flat file format.
|
|
5
|
+
*
|
|
6
|
+
* Format: TOML frontmatter delimited by `+++` lines,
|
|
7
|
+
* followed by the body content.
|
|
8
|
+
*/
|
|
9
|
+
export function serializeExportEntry(entry: ExportEntry): string {
|
|
10
|
+
const frontmatter = [
|
|
11
|
+
`kbid = "${entry.kbid}"`,
|
|
12
|
+
`sourceKey = "${entry.sourceKey}"`,
|
|
13
|
+
`heading = "${entry.heading}"`,
|
|
14
|
+
`createdAt = "${entry.createdAt}"`,
|
|
15
|
+
].join('\n');
|
|
16
|
+
|
|
17
|
+
return `+++\n${frontmatter}\n+++\n${entry.body}`;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { resolveConflict } from './functions/resolve-conflict.function.ts';
|
|
2
|
+
export { buildImportReport } from './functions/build-import-report.function.ts';
|
|
3
|
+
export { serializeExportEntry } from './functions/serialize-export-entry.function.ts';
|
|
4
|
+
export { parseExportEntry } from './functions/parse-export-entry.function.ts';
|
|
5
|
+
export type { ExportEntry } from './typings/export-entry.interface.ts';
|
|
6
|
+
export type { ExportOptions } from './typings/export-options.interface.ts';
|
|
7
|
+
export type { ImportOptions } from './typings/import-options.interface.ts';
|
|
8
|
+
export type { ImportReport } from './typings/import-report.interface.ts';
|
|
9
|
+
export type { ConflictResolution } from './typings/conflict-resolution.type.ts';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** A single entry in an export manifest. */
|
|
2
|
+
export interface ExportEntry {
|
|
3
|
+
/** Section kbid. */
|
|
4
|
+
readonly kbid: string;
|
|
5
|
+
/** Source key. */
|
|
6
|
+
readonly sourceKey: string;
|
|
7
|
+
/** Section heading. */
|
|
8
|
+
readonly heading: string;
|
|
9
|
+
/** Content body. */
|
|
10
|
+
readonly body: string;
|
|
11
|
+
/** Created timestamp (ISO). */
|
|
12
|
+
readonly createdAt: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/** Options for export operation. */
|
|
2
|
+
export interface ExportOptions {
|
|
3
|
+
/** Export format. */
|
|
4
|
+
readonly format: 'git' | 'archive';
|
|
5
|
+
/** Output directory or file path. */
|
|
6
|
+
readonly outputPath: string;
|
|
7
|
+
/** Exclude vector indexes. */
|
|
8
|
+
readonly excludeVectors: boolean;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** Report of an import operation. */
|
|
2
|
+
export interface ImportReport {
|
|
3
|
+
/** Sections added. */
|
|
4
|
+
readonly sectionsAdded: number;
|
|
5
|
+
/** Sections skipped (same kbid). */
|
|
6
|
+
readonly sectionsSkipped: number;
|
|
7
|
+
/** Sections superseded (same source_key, newer). */
|
|
8
|
+
readonly sectionsSuperseded: number;
|
|
9
|
+
/** Documents added. */
|
|
10
|
+
readonly documentsAdded: number;
|
|
11
|
+
/** Documents skipped. */
|
|
12
|
+
readonly documentsSkipped: number;
|
|
13
|
+
/** Whether rebuild is required. */
|
|
14
|
+
readonly rebuildRequired: boolean;
|
|
15
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
3
|
+
import { decodeWasmList } from './decode-wasm-list.function.ts';
|
|
4
|
+
import { decodeRecallReference } from './decode-recall-reference.function.ts';
|
|
5
|
+
import { decodeRecallSibling } from './decode-recall-sibling.function.ts';
|
|
6
|
+
import { decodeRecallDocument } from './decode-recall-document.function.ts';
|
|
7
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
8
|
+
import type {
|
|
9
|
+
RecallResult,
|
|
10
|
+
RecallDocument,
|
|
11
|
+
RecallSibling,
|
|
12
|
+
RecallReference,
|
|
13
|
+
} from '../../worker-client/typings/recall-result.model.ts';
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Decodes a single `RecallResult` record from WASM binary output.
|
|
17
|
+
*
|
|
18
|
+
* Wire format: kbid, heading, section_type, content, docid list,
|
|
19
|
+
* document list, back_references list, siblings list,
|
|
20
|
+
* references list.
|
|
21
|
+
*
|
|
22
|
+
* @param bytes - raw binary buffer
|
|
23
|
+
* @param startOffset - byte position of the record start
|
|
24
|
+
* @returns decoded result and number of bytes consumed
|
|
25
|
+
*/
|
|
26
|
+
export function decodeOneRecallResult(
|
|
27
|
+
bytes: Uint8Array,
|
|
28
|
+
startOffset: number,
|
|
29
|
+
): DecodeResult<RecallResult> {
|
|
30
|
+
let pos = startOffset;
|
|
31
|
+
|
|
32
|
+
const kbid = decodeString(bytes, pos);
|
|
33
|
+
pos += kbid.bytesRead;
|
|
34
|
+
const heading = decodeOptionString(bytes, pos);
|
|
35
|
+
pos += heading.bytesRead;
|
|
36
|
+
const sectionType = decodeString(bytes, pos);
|
|
37
|
+
pos += sectionType.bytesRead;
|
|
38
|
+
const content = decodeString(bytes, pos);
|
|
39
|
+
pos += content.bytesRead;
|
|
40
|
+
|
|
41
|
+
const docids = decodeWasmList(bytes, pos, decodeString);
|
|
42
|
+
pos += docids.bytesRead;
|
|
43
|
+
|
|
44
|
+
const documents = decodeWasmList<RecallDocument>(
|
|
45
|
+
bytes,
|
|
46
|
+
pos,
|
|
47
|
+
decodeRecallDocument,
|
|
48
|
+
);
|
|
49
|
+
pos += documents.bytesRead;
|
|
50
|
+
|
|
51
|
+
const back_references = decodeWasmList<RecallReference>(
|
|
52
|
+
bytes,
|
|
53
|
+
pos,
|
|
54
|
+
decodeRecallReference,
|
|
55
|
+
);
|
|
56
|
+
pos += back_references.bytesRead;
|
|
57
|
+
|
|
58
|
+
const siblings = decodeWasmList<RecallSibling>(
|
|
59
|
+
bytes,
|
|
60
|
+
pos,
|
|
61
|
+
decodeRecallSibling,
|
|
62
|
+
);
|
|
63
|
+
pos += siblings.bytesRead;
|
|
64
|
+
|
|
65
|
+
const references = decodeWasmList<RecallReference>(
|
|
66
|
+
bytes,
|
|
67
|
+
pos,
|
|
68
|
+
decodeRecallReference,
|
|
69
|
+
);
|
|
70
|
+
pos += references.bytesRead;
|
|
71
|
+
|
|
72
|
+
return {
|
|
73
|
+
value: {
|
|
74
|
+
kbid: kbid.value,
|
|
75
|
+
heading: heading.value,
|
|
76
|
+
type: sectionType.value,
|
|
77
|
+
content: content.value,
|
|
78
|
+
docids: docids.items,
|
|
79
|
+
documents: documents.items,
|
|
80
|
+
back_references: back_references.items,
|
|
81
|
+
siblings: siblings.items,
|
|
82
|
+
references: references.items,
|
|
83
|
+
},
|
|
84
|
+
bytesRead: pos - startOffset,
|
|
85
|
+
};
|
|
86
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
2
|
+
import { decodeString } from './decode-string.function.ts';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Decodes an `Option<String>` from WASM binary output.
|
|
6
|
+
*
|
|
7
|
+
* Wire format: `u8` tag byte (`0x00` = `None`, any other value =
|
|
8
|
+
* `Some`) followed by a length-prefixed UTF-8 string when present.
|
|
9
|
+
*
|
|
10
|
+
* @param bytes - raw binary buffer
|
|
11
|
+
* @param offset - byte position of the tag byte
|
|
12
|
+
* @returns decoded nullable string and number of bytes consumed
|
|
13
|
+
*/
|
|
14
|
+
export function decodeOptionString(
|
|
15
|
+
bytes: Uint8Array,
|
|
16
|
+
offset: number,
|
|
17
|
+
): DecodeResult<string | null> {
|
|
18
|
+
const tag = bytes[offset];
|
|
19
|
+
if (tag === 0x00) {
|
|
20
|
+
return { value: null, bytesRead: 1 };
|
|
21
|
+
}
|
|
22
|
+
const str = decodeString(bytes, offset + 1);
|
|
23
|
+
return { value: str.value, bytesRead: 1 + str.bytesRead };
|
|
24
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeU32 } from './decode-u32.function.ts';
|
|
3
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
4
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
5
|
+
import type { RecallDocument } from '../../worker-client/typings/recall-result.model.ts';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Decodes a single `RecallDocument` record from WASM binary output.
|
|
9
|
+
*
|
|
10
|
+
* Wire format: docid (String), title (String), section_count (u32),
|
|
11
|
+
* then each section as kbid (String), heading (Option<String>),
|
|
12
|
+
* section_type (String).
|
|
13
|
+
*
|
|
14
|
+
* @param bytes - raw binary buffer
|
|
15
|
+
* @param offset - byte position of the record start
|
|
16
|
+
* @returns decoded document and number of bytes consumed
|
|
17
|
+
*/
|
|
18
|
+
export function decodeRecallDocument(
|
|
19
|
+
bytes: Uint8Array,
|
|
20
|
+
offset: number,
|
|
21
|
+
): DecodeResult<RecallDocument> {
|
|
22
|
+
let pos = offset;
|
|
23
|
+
|
|
24
|
+
const docid = decodeString(bytes, pos);
|
|
25
|
+
pos += docid.bytesRead;
|
|
26
|
+
|
|
27
|
+
const title = decodeString(bytes, pos);
|
|
28
|
+
pos += title.bytesRead;
|
|
29
|
+
|
|
30
|
+
const sectionCount = decodeU32(bytes, pos);
|
|
31
|
+
pos += sectionCount.bytesRead;
|
|
32
|
+
|
|
33
|
+
const sections: RecallDocument['sections'][number][] = [];
|
|
34
|
+
for (let i = 0; i < sectionCount.value; i++) {
|
|
35
|
+
const secKbid = decodeString(bytes, pos);
|
|
36
|
+
pos += secKbid.bytesRead;
|
|
37
|
+
|
|
38
|
+
const secHeading = decodeOptionString(bytes, pos);
|
|
39
|
+
pos += secHeading.bytesRead;
|
|
40
|
+
|
|
41
|
+
const secType = decodeString(bytes, pos);
|
|
42
|
+
pos += secType.bytesRead;
|
|
43
|
+
|
|
44
|
+
sections.push({
|
|
45
|
+
kbid: secKbid.value,
|
|
46
|
+
heading: secHeading.value,
|
|
47
|
+
type: secType.value,
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return {
|
|
52
|
+
value: {
|
|
53
|
+
docid: docid.value,
|
|
54
|
+
title: title.value,
|
|
55
|
+
sections,
|
|
56
|
+
},
|
|
57
|
+
bytesRead: pos - offset,
|
|
58
|
+
};
|
|
59
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
3
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
4
|
+
import type { RecallReference } from '../../worker-client/typings/recall-result.model.ts';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Decodes a single `RecallReference` record from WASM binary output.
|
|
8
|
+
*
|
|
9
|
+
* Wire format: kbid (String), heading (Option<String>),
|
|
10
|
+
* section_type (String), marker_type (String),
|
|
11
|
+
* context_snippet (String), direction (String).
|
|
12
|
+
*
|
|
13
|
+
* @param bytes - raw binary buffer
|
|
14
|
+
* @param offset - byte position of the record start
|
|
15
|
+
* @returns decoded reference and number of bytes consumed
|
|
16
|
+
*/
|
|
17
|
+
export function decodeRecallReference(
|
|
18
|
+
bytes: Uint8Array,
|
|
19
|
+
offset: number,
|
|
20
|
+
): DecodeResult<RecallReference> {
|
|
21
|
+
let pos = offset;
|
|
22
|
+
|
|
23
|
+
const kbid = decodeString(bytes, pos);
|
|
24
|
+
pos += kbid.bytesRead;
|
|
25
|
+
|
|
26
|
+
const heading = decodeOptionString(bytes, pos);
|
|
27
|
+
pos += heading.bytesRead;
|
|
28
|
+
|
|
29
|
+
const sectionType = decodeString(bytes, pos);
|
|
30
|
+
pos += sectionType.bytesRead;
|
|
31
|
+
|
|
32
|
+
const markerType = decodeString(bytes, pos);
|
|
33
|
+
pos += markerType.bytesRead;
|
|
34
|
+
|
|
35
|
+
const contextSnippet = decodeString(bytes, pos);
|
|
36
|
+
pos += contextSnippet.bytesRead;
|
|
37
|
+
|
|
38
|
+
const direction = decodeString(bytes, pos);
|
|
39
|
+
pos += direction.bytesRead;
|
|
40
|
+
|
|
41
|
+
return {
|
|
42
|
+
value: {
|
|
43
|
+
kbid: kbid.value,
|
|
44
|
+
heading: heading.value,
|
|
45
|
+
type: sectionType.value,
|
|
46
|
+
marker_type: markerType.value,
|
|
47
|
+
context_snippet: contextSnippet.value,
|
|
48
|
+
direction: direction.value as 'forward' | 'back',
|
|
49
|
+
},
|
|
50
|
+
bytesRead: pos - offset,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
3
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
4
|
+
import type { RecallSibling } from '../../worker-client/typings/recall-result.model.ts';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Decodes a single `RecallSibling` record from WASM binary output.
|
|
8
|
+
*
|
|
9
|
+
* Wire format: kbid (String), heading (Option<String>),
|
|
10
|
+
* section_type (String), content (String).
|
|
11
|
+
*
|
|
12
|
+
* @param bytes - raw binary buffer
|
|
13
|
+
* @param offset - byte position of the record start
|
|
14
|
+
* @returns decoded sibling and number of bytes consumed
|
|
15
|
+
*/
|
|
16
|
+
export function decodeRecallSibling(
|
|
17
|
+
bytes: Uint8Array,
|
|
18
|
+
offset: number,
|
|
19
|
+
): DecodeResult<RecallSibling> {
|
|
20
|
+
let pos = offset;
|
|
21
|
+
|
|
22
|
+
const kbid = decodeString(bytes, pos);
|
|
23
|
+
pos += kbid.bytesRead;
|
|
24
|
+
|
|
25
|
+
const heading = decodeOptionString(bytes, pos);
|
|
26
|
+
pos += heading.bytesRead;
|
|
27
|
+
|
|
28
|
+
const sectionType = decodeString(bytes, pos);
|
|
29
|
+
pos += sectionType.bytesRead;
|
|
30
|
+
|
|
31
|
+
const content = decodeString(bytes, pos);
|
|
32
|
+
pos += content.bytesRead;
|
|
33
|
+
|
|
34
|
+
return {
|
|
35
|
+
value: {
|
|
36
|
+
kbid: kbid.value,
|
|
37
|
+
heading: heading.value,
|
|
38
|
+
type: sectionType.value,
|
|
39
|
+
content: content.value,
|
|
40
|
+
},
|
|
41
|
+
bytesRead: pos - offset,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeU32 } from './decode-u32.function.ts';
|
|
3
|
+
import { decodeF32 } from './decode-f32.function.ts';
|
|
4
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
5
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
6
|
+
import type { SectionMatch } from '../typings/section-match.model.ts';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Decodes a single `SectionMatch` item from WASM binary output.
|
|
10
|
+
*
|
|
11
|
+
* Wire format per item: kbid, heading (Option<String>),
|
|
12
|
+
* section_type, docids (u32 count + String[]), score (f32),
|
|
13
|
+
* confidence (f32), snippet, matched_terms (u32 + String[]),
|
|
14
|
+
* matched_fields (u32 + String[]), created_at.
|
|
15
|
+
*
|
|
16
|
+
* @param bytes - raw binary buffer
|
|
17
|
+
* @param startOffset - byte position of the item start
|
|
18
|
+
* @returns decoded match and number of bytes consumed
|
|
19
|
+
*/
|
|
20
|
+
export function decodeSectionMatch(
|
|
21
|
+
bytes: Uint8Array,
|
|
22
|
+
startOffset: number,
|
|
23
|
+
): DecodeResult<SectionMatch> {
|
|
24
|
+
let pos = startOffset;
|
|
25
|
+
|
|
26
|
+
const kbid = decodeString(bytes, pos);
|
|
27
|
+
pos += kbid.bytesRead;
|
|
28
|
+
const heading = decodeOptionString(bytes, pos);
|
|
29
|
+
pos += heading.bytesRead;
|
|
30
|
+
const sectionType = decodeString(bytes, pos);
|
|
31
|
+
pos += sectionType.bytesRead;
|
|
32
|
+
const docidCount = decodeU32(bytes, pos);
|
|
33
|
+
pos += docidCount.bytesRead;
|
|
34
|
+
const docids: string[] = [];
|
|
35
|
+
for (let j = 0; j < docidCount.value; j++) {
|
|
36
|
+
const docid = decodeString(bytes, pos);
|
|
37
|
+
pos += docid.bytesRead;
|
|
38
|
+
docids.push(docid.value);
|
|
39
|
+
}
|
|
40
|
+
const score = decodeF32(bytes, pos);
|
|
41
|
+
pos += score.bytesRead;
|
|
42
|
+
const confidence = decodeF32(bytes, pos);
|
|
43
|
+
pos += confidence.bytesRead;
|
|
44
|
+
const snippet = decodeString(bytes, pos);
|
|
45
|
+
pos += snippet.bytesRead;
|
|
46
|
+
const termCount = decodeU32(bytes, pos);
|
|
47
|
+
pos += termCount.bytesRead;
|
|
48
|
+
const matched_terms: string[] = [];
|
|
49
|
+
for (let j = 0; j < termCount.value; j++) {
|
|
50
|
+
const term = decodeString(bytes, pos);
|
|
51
|
+
pos += term.bytesRead;
|
|
52
|
+
matched_terms.push(term.value);
|
|
53
|
+
}
|
|
54
|
+
const fieldCount = decodeU32(bytes, pos);
|
|
55
|
+
pos += fieldCount.bytesRead;
|
|
56
|
+
const matched_fields: string[] = [];
|
|
57
|
+
for (let j = 0; j < fieldCount.value; j++) {
|
|
58
|
+
const field = decodeString(bytes, pos);
|
|
59
|
+
pos += field.bytesRead;
|
|
60
|
+
matched_fields.push(field.value);
|
|
61
|
+
}
|
|
62
|
+
const createdAt = decodeString(bytes, pos);
|
|
63
|
+
pos += createdAt.bytesRead;
|
|
64
|
+
|
|
65
|
+
return {
|
|
66
|
+
value: {
|
|
67
|
+
kbid: kbid.value,
|
|
68
|
+
heading: heading.value,
|
|
69
|
+
type: sectionType.value,
|
|
70
|
+
docids,
|
|
71
|
+
score: score.value,
|
|
72
|
+
confidence: confidence.value,
|
|
73
|
+
snippet: snippet.value,
|
|
74
|
+
matched_terms,
|
|
75
|
+
matched_fields,
|
|
76
|
+
created_at: createdAt.value,
|
|
77
|
+
},
|
|
78
|
+
bytesRead: pos - startOffset,
|
|
79
|
+
};
|
|
80
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeU32 } from './decode-u32.function.ts';
|
|
3
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
4
|
+
import type { SectionRecordTrailing } from '../typings/section-record-trailing.model.ts';
|
|
5
|
+
|
|
6
|
+
export type { SectionRecordTrailing };
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Decodes the trailing backward-compatible fields of a
|
|
10
|
+
* `SectionRecord` from WASM binary output.
|
|
11
|
+
*
|
|
12
|
+
* Fields present only in newer binary output; each is guarded by a
|
|
13
|
+
* length check. Missing fields default to `null` or `[]`.
|
|
14
|
+
*
|
|
15
|
+
* @param bytes - raw bytes from a WASM section-list export
|
|
16
|
+
* @param startOffset - byte position after the `typeName` field
|
|
17
|
+
* @returns decoded trailing fields and bytes consumed
|
|
18
|
+
*/
|
|
19
|
+
export function decodeSectionRecordTrailing(
|
|
20
|
+
bytes: Uint8Array,
|
|
21
|
+
startOffset: number,
|
|
22
|
+
): SectionRecordTrailing {
|
|
23
|
+
let pos = startOffset;
|
|
24
|
+
|
|
25
|
+
let sourceKey: string | null = null;
|
|
26
|
+
if (pos < bytes.length) {
|
|
27
|
+
const v = decodeOptionString(bytes, pos);
|
|
28
|
+
pos += v.bytesRead;
|
|
29
|
+
sourceKey = v.value;
|
|
30
|
+
}
|
|
31
|
+
let sourcePath: string | null = null;
|
|
32
|
+
if (pos < bytes.length) {
|
|
33
|
+
const v = decodeOptionString(bytes, pos);
|
|
34
|
+
pos += v.bytesRead;
|
|
35
|
+
sourcePath = v.value;
|
|
36
|
+
}
|
|
37
|
+
let sourceMtime: string | null = null;
|
|
38
|
+
if (pos < bytes.length) {
|
|
39
|
+
const v = decodeOptionString(bytes, pos);
|
|
40
|
+
pos += v.bytesRead;
|
|
41
|
+
sourceMtime = v.value;
|
|
42
|
+
}
|
|
43
|
+
let updatedAt: string | null = null;
|
|
44
|
+
if (pos < bytes.length) {
|
|
45
|
+
const v = decodeOptionString(bytes, pos);
|
|
46
|
+
pos += v.bytesRead;
|
|
47
|
+
updatedAt = v.value;
|
|
48
|
+
}
|
|
49
|
+
const tags: string[] = [];
|
|
50
|
+
if (pos < bytes.length) {
|
|
51
|
+
const tagCount = decodeU32(bytes, pos);
|
|
52
|
+
pos += tagCount.bytesRead;
|
|
53
|
+
for (let j = 0; j < tagCount.value; j++) {
|
|
54
|
+
const tagStr = decodeString(bytes, pos);
|
|
55
|
+
pos += tagStr.bytesRead;
|
|
56
|
+
tags.push(tagStr.value);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
let supersedes: string | null = null;
|
|
60
|
+
if (pos < bytes.length) {
|
|
61
|
+
const v = decodeOptionString(bytes, pos);
|
|
62
|
+
pos += v.bytesRead;
|
|
63
|
+
supersedes = v.value;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return {
|
|
67
|
+
sourceKey,
|
|
68
|
+
sourcePath,
|
|
69
|
+
sourceMtime,
|
|
70
|
+
updatedAt,
|
|
71
|
+
tags,
|
|
72
|
+
supersedes,
|
|
73
|
+
bytesRead: pos - startOffset,
|
|
74
|
+
};
|
|
75
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import { decodeU32 } from './decode-u32.function.ts';
|
|
3
|
+
import { decodeU64 } from './decode-u64.function.ts';
|
|
4
|
+
import { decodeOptionString } from './decode-option-string.function.ts';
|
|
5
|
+
import { decodeSectionType } from './decode-section-type.function.ts';
|
|
6
|
+
import { decodeSectionRecordTrailing } from './decode-section-record-trailing.function.ts';
|
|
7
|
+
import type { DecodeResult } from './decode-string.function.ts';
|
|
8
|
+
import type { SectionRecord } from '../typings/section-record.model.ts';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Decodes a single `SectionRecord` from WASM binary output.
|
|
12
|
+
*
|
|
13
|
+
* Reads all section fields in the order produced by the Rust
|
|
14
|
+
* `SectionRecord::encode` implementation. Trailing fields added
|
|
15
|
+
* after `typeName` default to `null` / `[]` when absent.
|
|
16
|
+
*
|
|
17
|
+
* @param bytes - raw bytes returned by a WASM section-list export
|
|
18
|
+
* @param startOffset - byte position of the record start
|
|
19
|
+
* @returns decoded record and number of bytes consumed
|
|
20
|
+
*/
|
|
21
|
+
export function decodeSectionRecord(
|
|
22
|
+
bytes: Uint8Array,
|
|
23
|
+
startOffset: number,
|
|
24
|
+
): DecodeResult<SectionRecord> {
|
|
25
|
+
let pos = startOffset;
|
|
26
|
+
|
|
27
|
+
const kbid = decodeString(bytes, pos);
|
|
28
|
+
pos += kbid.bytesRead;
|
|
29
|
+
const docid = decodeOptionString(bytes, pos);
|
|
30
|
+
pos += docid.bytesRead;
|
|
31
|
+
const st = decodeSectionType(bytes, pos);
|
|
32
|
+
pos += st.bytesRead;
|
|
33
|
+
const title = decodeOptionString(bytes, pos);
|
|
34
|
+
pos += title.bytesRead;
|
|
35
|
+
const description = decodeOptionString(bytes, pos);
|
|
36
|
+
pos += description.bytesRead;
|
|
37
|
+
const content = decodeString(bytes, pos);
|
|
38
|
+
pos += content.bytesRead;
|
|
39
|
+
const size = decodeU32(bytes, pos);
|
|
40
|
+
pos += size.bytesRead;
|
|
41
|
+
const createdAt = decodeU64(bytes, pos);
|
|
42
|
+
pos += createdAt.bytesRead;
|
|
43
|
+
const checksum = decodeString(bytes, pos);
|
|
44
|
+
pos += checksum.bytesRead;
|
|
45
|
+
const tokenCount = decodeU32(bytes, pos);
|
|
46
|
+
pos += tokenCount.bytesRead;
|
|
47
|
+
const headingTokenCount = decodeU32(bytes, pos);
|
|
48
|
+
pos += headingTokenCount.bytesRead;
|
|
49
|
+
const bodyTokenCount = decodeU32(bytes, pos);
|
|
50
|
+
pos += bodyTokenCount.bytesRead;
|
|
51
|
+
const codeTokenCount = decodeU32(bytes, pos);
|
|
52
|
+
pos += codeTokenCount.bytesRead;
|
|
53
|
+
const typeName = decodeString(bytes, pos);
|
|
54
|
+
pos += typeName.bytesRead;
|
|
55
|
+
|
|
56
|
+
const trailing = decodeSectionRecordTrailing(bytes, pos);
|
|
57
|
+
pos += trailing.bytesRead;
|
|
58
|
+
|
|
59
|
+
const record: SectionRecord = {
|
|
60
|
+
kbid: kbid.value,
|
|
61
|
+
docid: docid.value,
|
|
62
|
+
sectionType: st.sectionType,
|
|
63
|
+
title: title.value,
|
|
64
|
+
description: description.value,
|
|
65
|
+
content: content.value,
|
|
66
|
+
size: size.value,
|
|
67
|
+
createdAt: createdAt.value,
|
|
68
|
+
checksum: checksum.value,
|
|
69
|
+
tokenCount: tokenCount.value,
|
|
70
|
+
headingTokenCount: headingTokenCount.value,
|
|
71
|
+
bodyTokenCount: bodyTokenCount.value,
|
|
72
|
+
codeTokenCount: codeTokenCount.value,
|
|
73
|
+
typeName: typeName.value,
|
|
74
|
+
sourceKey: trailing.sourceKey,
|
|
75
|
+
sourcePath: trailing.sourcePath,
|
|
76
|
+
sourceMtime: trailing.sourceMtime,
|
|
77
|
+
updatedAt: trailing.updatedAt,
|
|
78
|
+
tags: trailing.tags,
|
|
79
|
+
supersedes: trailing.supersedes,
|
|
80
|
+
};
|
|
81
|
+
if (st.mimeType !== undefined) {
|
|
82
|
+
record.mimeType = st.mimeType;
|
|
83
|
+
}
|
|
84
|
+
return { value: record, bytesRead: pos - startOffset };
|
|
85
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { decodeString } from './decode-string.function.ts';
|
|
2
|
+
import type { SectionTypeResult } from '../typings/section-type-result.model.ts';
|
|
3
|
+
|
|
4
|
+
export type { SectionTypeResult };
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Decodes a section type discriminant from WASM binary output.
|
|
8
|
+
*
|
|
9
|
+
* Wire format: `u8` tag (`0x00` = text, `0x01` = code,
|
|
10
|
+
* `0x02` = image), followed by a MIME string for code/image.
|
|
11
|
+
*
|
|
12
|
+
* @param bytes - raw binary buffer
|
|
13
|
+
* @param offset - byte position of the tag byte
|
|
14
|
+
* @returns section type, optional MIME type, and bytes consumed
|
|
15
|
+
*/
|
|
16
|
+
export function decodeSectionType(
|
|
17
|
+
bytes: Uint8Array,
|
|
18
|
+
offset: number,
|
|
19
|
+
): SectionTypeResult {
|
|
20
|
+
const tag = bytes[offset];
|
|
21
|
+
if (tag === 0x00) {
|
|
22
|
+
return { sectionType: 'text', bytesRead: 1 };
|
|
23
|
+
}
|
|
24
|
+
const mime = decodeString(bytes, offset + 1);
|
|
25
|
+
return {
|
|
26
|
+
sectionType: tag === 0x01 ? 'code' : 'image',
|
|
27
|
+
mimeType: mime.value,
|
|
28
|
+
bytesRead: 1 + mime.bytesRead,
|
|
29
|
+
};
|
|
30
|
+
}
|