@dikolab/kbdb 0.2.2 → 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 +47 -31
- 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 +523 -80
- package/dist/cli.cjs.map +4 -4
- package/dist/cli.mjs +515 -72
- package/dist/cli.mjs.map +4 -4
- package/dist/kbdb-worker.cjs +395 -60
- package/dist/kbdb-worker.cjs.map +4 -4
- package/dist/mod.cjs +17 -0
- package/dist/mod.cjs.map +2 -2
- package/dist/mod.mjs +17 -0
- package/dist/mod.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/dispatch-command.function.d.ts +3 -1
- 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/install-default-skills.function.d.ts +12 -0
- package/dist/src/shared/cli/functions/resolve-skill-names.function.d.ts +16 -0
- package/dist/src/shared/cli/functions/run-check.function.d.ts +47 -5
- package/dist/src/shared/cli/functions/run-export.function.d.ts +34 -0
- package/dist/src/shared/cli/functions/run-gc.function.d.ts +6 -0
- package/dist/src/shared/cli/functions/run-learn.function.d.ts +35 -6
- package/dist/src/shared/cli/functions/run-recall.function.d.ts +45 -0
- package/dist/src/shared/cli/functions/run-search.function.d.ts +53 -15
- 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/index.d.ts +4 -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 +15 -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/learn-result.model.d.ts +19 -0
- package/dist/src/shared/cli/typings/search-client.interface.d.ts +71 -0
- package/dist/src/shared/cli/typings/search-display.model.d.ts +18 -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/classes/mcp-server.class.d.ts +8 -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 +45 -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-add-section-result.function.d.ts +48 -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-scored-results.function.d.ts +58 -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-records.function.d.ts +33 -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/functions/encode-add-section-params.function.d.ts +52 -0
- package/dist/src/shared/wasm-codec/index.d.ts +2 -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/classes/worker-client.class.d.ts +16 -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/index.d.ts +1 -1
- package/dist/src/shared/worker-client/typings/add-section-result.model.d.ts +31 -15
- package/dist/src/shared/worker-client/typings/export-result.model.d.ts +14 -0
- package/dist/src/shared/worker-client/typings/gc-result.model.d.ts +6 -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-client/typings/search-result.model.d.ts +12 -0
- package/dist/src/shared/worker-client/typings/section.model.d.ts +16 -0
- package/dist/src/shared/worker-daemon/classes/ipc-error.class.d.ts +17 -0
- package/dist/src/shared/worker-daemon/classes/worker-daemon.class.d.ts +35 -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.d.ts +22 -1
- package/dist/wasm/fs-database/kbdb_fs_database.js +28 -1
- package/dist/wasm/fs-database/kbdb_fs_database_bg.wasm +0 -0
- package/dist/wasm/fs-database/kbdb_fs_database_bg.wasm.d.ts +1 -0
- package/dist/wasm/kb-worker/kbdb_worker.d.ts +48 -1
- package/dist/wasm/kb-worker/kbdb_worker.js +60 -1
- package/dist/wasm/kb-worker/kbdb_worker_bg.wasm +0 -0
- package/dist/wasm/kb-worker/kbdb_worker_bg.wasm.d.ts +2 -0
- package/dist/wasm/query-parser/kbdb_query_parser_bg.wasm +0 -0
- package/dist/worker.mjs +396 -60
- package/dist/worker.mjs.map +4 -4
- package/docs/details/cli.md +102 -15
- package/docs/details/library-api.md +55 -6
- package/docs/details/mcp-server.md +10 -4
- package/docs/details/search-and-ranking.md +63 -5
- package/docs/details/storage.md +2 -0
- package/docs/goals/auto-capture.md +378 -0
- package/docs/goals/benchmarking.md +296 -0
- package/docs/goals/cli.md +255 -14
- package/docs/goals/concurrency.md +259 -0
- package/docs/goals/database.md +244 -17
- package/docs/goals/document.md +1 -1
- package/docs/goals/hybrid-search.md +436 -0
- package/docs/goals/mcp.md +83 -14
- package/docs/goals/query-parser.md +98 -4
- package/docs/goals/query-result.md +177 -10
- package/docs/goals/semantic-dedup.md +229 -0
- package/docs/goals/skills.md +72 -0
- package/docs/goals/sync.md +217 -0
- package/docs/goals/worker-daemon.md +54 -7
- package/docs/modules/rust/fs-database/functions/integrity.md +11 -0
- package/docs/modules/rust/fs-database/functions/section.md +23 -6
- package/docs/modules/rust/fs-database/indexes/vectors.md +110 -0
- package/docs/modules/rust/fs-database/module.md +1 -0
- package/docs/modules/rust/fs-database/types/section.md +27 -1
- package/docs/modules/rust/overview.md +2 -1
- package/docs/modules/rust/query-parser/functions/module.md +2 -2
- package/docs/modules/rust/query-parser/functions/pipeline.md +44 -6
- package/docs/modules/rust/query-parser/module.md +5 -4
- package/docs/modules/rust/query-parser/types/keyphrase.md +11 -0
- package/docs/modules/rust/query-parser/types/module.md +3 -3
- package/docs/modules/typescript/shared/auto-capture/module.md +73 -0
- package/docs/modules/typescript/shared/cli/functions.md +68 -3
- 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/dispatch-command.function.ts +53 -1
- package/src/shared/cli/functions/format-mcp-output.function.ts +41 -0
- package/src/shared/cli/functions/format-output.function.ts +36 -12
- 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/generate-help.function.ts +56 -1
- 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/install-default-skills.function.ts +296 -0
- package/src/shared/cli/functions/parse-args.function.ts +16 -0
- package/src/shared/cli/functions/resolve-skill-names.function.ts +43 -0
- package/src/shared/cli/functions/run-check.function.ts +87 -6
- package/src/shared/cli/functions/run-export.function.ts +40 -0
- package/src/shared/cli/functions/run-gc.function.ts +6 -0
- package/src/shared/cli/functions/run-init.function.ts +2 -0
- package/src/shared/cli/functions/run-learn.function.ts +68 -16
- package/src/shared/cli/functions/run-recall.function.ts +66 -0
- package/src/shared/cli/functions/run-search.function.ts +60 -15
- 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/index.ts +4 -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 +15 -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/learn-result.model.ts +16 -0
- package/src/shared/cli/typings/search-client.interface.ts +73 -0
- package/src/shared/cli/typings/search-display.model.ts +18 -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 +36 -4
- 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 +74 -5
- 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 +88 -2
- 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 +47 -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-add-section-result.function.ts +112 -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-scored-results.function.ts +86 -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-records.function.ts +87 -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/functions/encode-add-section-params.function.ts +68 -0
- package/src/shared/wasm-codec/index.ts +5 -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/classes/worker-client.class.ts +19 -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/index.ts +4 -1
- package/src/shared/worker-client/typings/add-section-result.model.ts +32 -15
- package/src/shared/worker-client/typings/export-result.model.ts +14 -0
- package/src/shared/worker-client/typings/gc-result.model.ts +6 -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-client/typings/search-result.model.ts +12 -0
- package/src/shared/worker-client/typings/section.model.ts +16 -0
- package/src/shared/worker-daemon/classes/ipc-error.class.ts +22 -0
- package/src/shared/worker-daemon/classes/worker-daemon.class.ts +315 -46
- 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/create-host-imports.function.ts +19 -4
- package/src/shared/worker-daemon/functions/create-ipc-server.function.ts +5 -1
- 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.d.ts +22 -1
- package/src/wasm/fs-database/kbdb_fs_database.js +28 -1
- package/src/wasm/fs-database/kbdb_fs_database_bg.wasm +0 -0
- package/src/wasm/fs-database/kbdb_fs_database_bg.wasm.d.ts +1 -0
- package/src/wasm/kb-worker/kbdb_worker.d.ts +48 -1
- package/src/wasm/kb-worker/kbdb_worker.js +60 -1
- package/src/wasm/kb-worker/kbdb_worker_bg.wasm +0 -0
- package/src/wasm/kb-worker/kbdb_worker_bg.wasm.d.ts +2 -0
- package/src/wasm/query-parser/kbdb_query_parser_bg.wasm +0 -0
|
@@ -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
|
+
}
|
|
@@ -2,22 +2,57 @@ import { decodeString } from './decode-string.function.ts';
|
|
|
2
2
|
import { decodeU32 } from './decode-u32.function.ts';
|
|
3
3
|
import { decodeF32 } from './decode-f32.function.ts';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* A single ranked result item from a paged search response.
|
|
7
|
+
*/
|
|
5
8
|
export interface SectionMatch {
|
|
9
|
+
/** Knowledge-base identifier for the matched section. */
|
|
6
10
|
kbid: string;
|
|
11
|
+
/** Section heading, or `null` when untitled. */
|
|
7
12
|
heading: string | null;
|
|
13
|
+
/** MIME type of the section content. */
|
|
8
14
|
type: string;
|
|
15
|
+
/** Document IDs this section belongs to. */
|
|
9
16
|
docids: string[];
|
|
17
|
+
/** Relevance score from the ranking engine. */
|
|
10
18
|
score: number;
|
|
19
|
+
/**
|
|
20
|
+
* Confidence modifier (0.0–1.0) applied after relaxed search.
|
|
21
|
+
* Always 1.0 for strict-mode results.
|
|
22
|
+
*/
|
|
23
|
+
confidence: number;
|
|
24
|
+
/** KWIC snippet (~150 chars around the best match). */
|
|
11
25
|
snippet: string;
|
|
26
|
+
/** Query terms that matched within this section. */
|
|
12
27
|
matched_terms: string[];
|
|
28
|
+
/**
|
|
29
|
+
* Document fields that contained at least one matched term
|
|
30
|
+
* (e.g. `'title'`, `'body'`).
|
|
31
|
+
*/
|
|
32
|
+
matched_fields: string[];
|
|
33
|
+
/** ISO 8601 creation timestamp of the section. */
|
|
34
|
+
created_at: string;
|
|
13
35
|
}
|
|
14
36
|
|
|
37
|
+
/**
|
|
38
|
+
* Paginated search response envelope returned by the WASM engine.
|
|
39
|
+
*/
|
|
15
40
|
export interface PagedSearchResult {
|
|
41
|
+
/** Matching sections for the current page. */
|
|
16
42
|
items: SectionMatch[];
|
|
43
|
+
/** Total number of matches across all pages. */
|
|
17
44
|
total: number;
|
|
45
|
+
/** Number of results skipped (pagination offset). */
|
|
18
46
|
offset: number;
|
|
47
|
+
/** Maximum results per page. */
|
|
19
48
|
limit: number;
|
|
49
|
+
/** Whether more results exist beyond this page. */
|
|
20
50
|
has_more: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Whether the engine fell back to relaxed (OR-mode) search
|
|
53
|
+
* after strict (AND-mode) returned no results.
|
|
54
|
+
*/
|
|
55
|
+
relaxed: boolean;
|
|
21
56
|
}
|
|
22
57
|
|
|
23
58
|
function decodeOptionString(
|
|
@@ -32,6 +67,29 @@ function decodeOptionString(
|
|
|
32
67
|
return { value: str.value, bytesRead: 1 + str.bytesRead };
|
|
33
68
|
}
|
|
34
69
|
|
|
70
|
+
/**
|
|
71
|
+
* Decodes the binary `PagedSearchResult` returned by the
|
|
72
|
+
* `worker_get_result` WASM export after a `worker_search` call.
|
|
73
|
+
*
|
|
74
|
+
* Wire format (little-endian):
|
|
75
|
+
* - `total`: `u32`
|
|
76
|
+
* - `offset`: `u32`
|
|
77
|
+
* - `limit`: `u32`
|
|
78
|
+
* - `has_more`: `u8` (0/1)
|
|
79
|
+
* - `relaxed`: `u8` (0/1)
|
|
80
|
+
* - `item_count`: `u32`
|
|
81
|
+
* - Per item:
|
|
82
|
+
* - `kbid`: `String`
|
|
83
|
+
* - `heading`: `Option<String>`
|
|
84
|
+
* - `section_type`: `String`
|
|
85
|
+
* - `docids`: `u32` count + `String[]`
|
|
86
|
+
* - `score`: `f32`
|
|
87
|
+
* - `confidence`: `f32`
|
|
88
|
+
* - `snippet`: `String`
|
|
89
|
+
* - `matched_terms`: `u32` count + `String[]`
|
|
90
|
+
* - `matched_fields`: `u32` count + `String[]`
|
|
91
|
+
* - `created_at`: `String`
|
|
92
|
+
*/
|
|
35
93
|
export function decodePagedSearchResult(
|
|
36
94
|
bytes: Uint8Array,
|
|
37
95
|
): PagedSearchResult {
|
|
@@ -49,6 +107,12 @@ export function decodePagedSearchResult(
|
|
|
49
107
|
const hasMore = bytes[offset] === 1;
|
|
50
108
|
offset += 1;
|
|
51
109
|
|
|
110
|
+
// relaxed flag added after has_more
|
|
111
|
+
const relaxed = offset < bytes.length && bytes[offset] === 1;
|
|
112
|
+
if (offset < bytes.length) {
|
|
113
|
+
offset += 1;
|
|
114
|
+
}
|
|
115
|
+
|
|
52
116
|
const itemCount = decodeU32(bytes, offset);
|
|
53
117
|
offset += itemCount.bytesRead;
|
|
54
118
|
|
|
@@ -75,6 +139,10 @@ export function decodePagedSearchResult(
|
|
|
75
139
|
const score = decodeF32(bytes, offset);
|
|
76
140
|
offset += score.bytesRead;
|
|
77
141
|
|
|
142
|
+
// confidence added after score
|
|
143
|
+
const confidence = decodeF32(bytes, offset);
|
|
144
|
+
offset += confidence.bytesRead;
|
|
145
|
+
|
|
78
146
|
const snippet = decodeString(bytes, offset);
|
|
79
147
|
offset += snippet.bytesRead;
|
|
80
148
|
|
|
@@ -87,14 +155,31 @@ export function decodePagedSearchResult(
|
|
|
87
155
|
matched_terms.push(term.value);
|
|
88
156
|
}
|
|
89
157
|
|
|
158
|
+
// matched_fields added after matched_terms
|
|
159
|
+
const fieldCount = decodeU32(bytes, offset);
|
|
160
|
+
offset += fieldCount.bytesRead;
|
|
161
|
+
const matched_fields: string[] = [];
|
|
162
|
+
for (let j = 0; j < fieldCount.value; j++) {
|
|
163
|
+
const field = decodeString(bytes, offset);
|
|
164
|
+
offset += field.bytesRead;
|
|
165
|
+
matched_fields.push(field.value);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// created_at added after matched_fields
|
|
169
|
+
const createdAt = decodeString(bytes, offset);
|
|
170
|
+
offset += createdAt.bytesRead;
|
|
171
|
+
|
|
90
172
|
items.push({
|
|
91
173
|
kbid: kbid.value,
|
|
92
174
|
heading: heading.value,
|
|
93
175
|
type: sectionType.value,
|
|
94
176
|
docids,
|
|
95
177
|
score: score.value,
|
|
178
|
+
confidence: confidence.value,
|
|
96
179
|
snippet: snippet.value,
|
|
97
180
|
matched_terms,
|
|
181
|
+
matched_fields,
|
|
182
|
+
created_at: createdAt.value,
|
|
98
183
|
});
|
|
99
184
|
}
|
|
100
185
|
|
|
@@ -104,5 +189,6 @@ export function decodePagedSearchResult(
|
|
|
104
189
|
offset: resultOffset.value,
|
|
105
190
|
limit: limit.value,
|
|
106
191
|
has_more: hasMore,
|
|
192
|
+
relaxed,
|
|
107
193
|
};
|
|
108
194
|
}
|
|
@@ -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
|
+
}
|