noteconnection 1.6.0 → 1.6.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 CHANGED
@@ -1,4 +1,4 @@
1
- # 2026-03-04 v1.5.13
1
+ # 2026-03-24 v1.6.0
2
2
 
3
3
  # NoteConnection Knowledge Graph
4
4
 
@@ -294,6 +294,16 @@ For developers building from source, NoteConnection offers two build modes:
294
294
  - **GPU Dev Start (`npm run tauri:dev:mini:gpu`)**: Recommended GPU-enabled Tauri development command.
295
295
  - **Do not use** `npm run tauri:dev:mini --gpu` because npm treats `--gpu` as config and prints warnings.
296
296
 
297
+ ## 📚 Documentation Architecture (Diataxis + MkDocs)
298
+
299
+ - Canonical long-form docs remain under `docs/en/*` and `docs/zh/*`.
300
+ - Diataxis navigation pages are maintained under `docs/diataxis/<lang>/*`.
301
+ - Mapping governance is versioned in `docs/diataxis-map.json`.
302
+ - Run mapping validation: `npm run docs:diataxis:check`.
303
+ - Run local docs site preview: `npm run docs:site:serve`.
304
+ - Build static docs site: `npm run docs:site:build`.
305
+ - CI policy gate for docs mapping and site build: `.github/workflows/docs-diataxis-site.yml`.
306
+
297
307
  ## 🛠️ Hardware & Driver Requirements (AMDGPU)
298
308
 
299
309
  For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA cards (like RX 7900XT):
@@ -309,6 +319,11 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
309
319
 
310
320
  ### v1.6.0 - Unified Runtime, NoteMD Integration & Release Hardening (2026-03-23)
311
321
 
322
+ - **Tag Compare Snapshot (`v1.3.0..v1.6.0`)**:
323
+ - `107` commits, `301` files changed, `+125,957 / -10,083` churn.
324
+ - File-level status: `241` added, `56` modified, `3` deleted, `1` renamed.
325
+ - Largest engineering footprint: `src/`, `docs/`, `scripts/`, `path_mode/`, `src-tauri/`.
326
+
312
327
  - **Single-Window Runtime Orchestration**:
313
328
  - Implemented Tauri <-> Godot visibility handoff so only one primary window is shown at a time.
314
329
  - Added Godot close-confirm flow ("Return to main interface" vs "Close all windows") to prevent accidental full shutdown.
@@ -323,6 +338,7 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
323
338
  - **Reliability & Security Gates**:
324
339
  - Expanded CI/workflow coverage for FixRisk operational readiness, mobile e2e contracts, wasm parity, SBOM, attestation, and signature/privacy checks.
325
340
  - Added broad contract-level regression coverage across mobile/runtime/pathbridge/storage layers.
341
+ - Included pre-release CI compatibility fixes for runtime bridge invoke-contract assertions and unsigned SBOM transparency policy handling.
326
342
  - **Build Performance & Developer Experience**:
327
343
  - Added low-memory Tauri build wrappers and release-profile safeguards for constrained environments.
328
344
  - Added sidecar readiness preflight to skip redundant rebuilds during dev startup, reducing warm `tauri:dev:mini:gpu` startup latency.
@@ -854,7 +870,7 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
854
870
  ## 中文文档
855
871
 
856
872
 
857
- # 2026-03-04 v1.5.13
873
+ # 2026-03-24 v1.6.0
858
874
  # NoteConnection: 层级知识图谱可视化系统
859
875
 
860
876
  <img width="606" height="309" alt="banner" src="https://github.com/user-attachments/assets/92e90de5-2b1a-4398-8e8b-6e142c92b6a2" />
@@ -1135,6 +1151,16 @@ npm start -- --path "E:/Knowledge/ObsidianVault" --no-gpu
1135
1151
  - **GPU 开发启动(推荐)** (`npm run tauri:dev:mini:gpu`)。
1136
1152
  - **不要使用** `npm run tauri:dev:mini --gpu`,该写法会被 npm 当作配置参数并触发告警。
1137
1153
 
1154
+ ## 📚 文档架构(Diataxis + MkDocs)
1155
+
1156
+ - 权威长文档仍保持在 `docs/en/*` 与 `docs/zh/*`。
1157
+ - Diataxis 导航页维护在 `docs/diataxis/<lang>/*`。
1158
+ - 映射治理文件为 `docs/diataxis-map.json`。
1159
+ - 映射一致性校验:`npm run docs:diataxis:check`。
1160
+ - 本地预览文档站点:`npm run docs:site:serve`。
1161
+ - 构建静态文档站点:`npm run docs:site:build`。
1162
+ - CI 文档治理工作流:`.github/workflows/docs-diataxis-site.yml`。
1163
+
1138
1164
  ---
1139
1165
 
1140
1166
  <a id="changelog-zh"></a>
@@ -1143,6 +1169,11 @@ npm start -- --path "E:/Knowledge/ObsidianVault" --no-gpu
1143
1169
 
1144
1170
  ### v1.6.0 - 单窗口运行时、NoteMD 集成与发布加固 (2026-03-23)
1145
1171
 
1172
+ - **Tag 对比快照(`v1.3.0..v1.6.0`)**:
1173
+ - `107` 个提交、`301` 个变更文件、`+125,957 / -10,083` 代码/文档变更量。
1174
+ - 文件状态分布:新增 `241`、修改 `56`、删除 `3`、重命名 `1`。
1175
+ - 主要工程变更面集中在:`src/`、`docs/`、`scripts/`、`path_mode/`、`src-tauri/`。
1176
+
1146
1177
  - **单窗口运行时编排**:
1147
1178
  - 实现 Tauri <-> Godot 的可见性切换,同一时刻仅显示一个主窗口。
1148
1179
  - 增加 Godot 关闭确认流程(“返回主界面” / “关闭全部窗口”),避免误操作导致全局退出。
@@ -1157,6 +1188,7 @@ npm start -- --path "E:/Knowledge/ObsidianVault" --no-gpu
1157
1188
  - **可靠性与安全门禁**:
1158
1189
  - 扩展 CI/工作流:FixRisk 运维就绪、移动端 e2e 合约、wasm parity、SBOM、attestation、签名与隐私清单校验。
1159
1190
  - 新增多层合约回归覆盖(mobile/runtime/pathbridge/storage)。
1191
+ - 纳入发布前 CI 兼容修复:runtime bridge invoke 契约断言兼容与无签名 SBOM transparency 条件化策略。
1160
1192
  - **构建性能与开发体验**:
1161
1193
  - 增加低内存 Tauri 构建包装器与 release 配置保护,提升受限内存环境可构建性。
1162
1194
  - 增加 sidecar 预检,避免开发期重复重建,缩短 `tauri:dev:mini:gpu` 热启动耗时。
@@ -1,4 +1,4 @@
1
- # 2026-03-04 v1.5.13
1
+ # 2026-03-24 v1.6.0
2
2
 
3
3
  # NoteConnection Knowledge Graph
4
4
 
@@ -294,6 +294,16 @@ For developers building from source, NoteConnection offers two build modes:
294
294
  - **GPU Dev Start (`npm run tauri:dev:mini:gpu`)**: Recommended GPU-enabled Tauri development command.
295
295
  - **Do not use** `npm run tauri:dev:mini --gpu` because npm treats `--gpu` as config and prints warnings.
296
296
 
297
+ ## 📚 Documentation Architecture (Diataxis + MkDocs)
298
+
299
+ - Canonical long-form docs remain under `docs/en/*` and `docs/zh/*`.
300
+ - Diataxis navigation pages are maintained under `docs/diataxis/<lang>/*`.
301
+ - Mapping governance is versioned in `docs/diataxis-map.json`.
302
+ - Run mapping validation: `npm run docs:diataxis:check`.
303
+ - Run local docs site preview: `npm run docs:site:serve`.
304
+ - Build static docs site: `npm run docs:site:build`.
305
+ - CI policy gate for docs mapping and site build: `.github/workflows/docs-diataxis-site.yml`.
306
+
297
307
  ## 🛠️ Hardware & Driver Requirements (AMDGPU)
298
308
 
299
309
  For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA cards (like RX 7900XT):
@@ -309,6 +319,11 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
309
319
 
310
320
  ### v1.6.0 - Unified Runtime, NoteMD Integration & Release Hardening (2026-03-23)
311
321
 
322
+ - **Tag Compare Snapshot (`v1.3.0..v1.6.0`)**:
323
+ - `107` commits, `301` files changed, `+125,957 / -10,083` churn.
324
+ - File-level status: `241` added, `56` modified, `3` deleted, `1` renamed.
325
+ - Largest engineering footprint: `src/`, `docs/`, `scripts/`, `path_mode/`, `src-tauri/`.
326
+
312
327
  - **Single-Window Runtime Orchestration**:
313
328
  - Implemented Tauri <-> Godot visibility handoff so only one primary window is shown at a time.
314
329
  - Added Godot close-confirm flow ("Return to main interface" vs "Close all windows") to prevent accidental full shutdown.
@@ -323,6 +338,7 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
323
338
  - **Reliability & Security Gates**:
324
339
  - Expanded CI/workflow coverage for FixRisk operational readiness, mobile e2e contracts, wasm parity, SBOM, attestation, and signature/privacy checks.
325
340
  - Added broad contract-level regression coverage across mobile/runtime/pathbridge/storage layers.
341
+ - Included pre-release CI compatibility fixes for runtime bridge invoke-contract assertions and unsigned SBOM transparency policy handling.
326
342
  - **Build Performance & Developer Experience**:
327
343
  - Added low-memory Tauri build wrappers and release-profile safeguards for constrained environments.
328
344
  - Added sidecar readiness preflight to skip redundant rebuilds during dev startup, reducing warm `tauri:dev:mini:gpu` startup latency.
@@ -854,7 +870,7 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
854
870
  ## 中文文档
855
871
 
856
872
 
857
- # 2026-03-04 v1.5.13
873
+ # 2026-03-24 v1.6.0
858
874
  # NoteConnection: 层级知识图谱可视化系统
859
875
 
860
876
  <img width="606" height="309" alt="banner" src="https://github.com/user-attachments/assets/92e90de5-2b1a-4398-8e8b-6e142c92b6a2" />
@@ -1135,6 +1151,16 @@ npm start -- --path "E:/Knowledge/ObsidianVault" --no-gpu
1135
1151
  - **GPU 开发启动(推荐)** (`npm run tauri:dev:mini:gpu`)。
1136
1152
  - **不要使用** `npm run tauri:dev:mini --gpu`,该写法会被 npm 当作配置参数并触发告警。
1137
1153
 
1154
+ ## 📚 文档架构(Diataxis + MkDocs)
1155
+
1156
+ - 权威长文档仍保持在 `docs/en/*` 与 `docs/zh/*`。
1157
+ - Diataxis 导航页维护在 `docs/diataxis/<lang>/*`。
1158
+ - 映射治理文件为 `docs/diataxis-map.json`。
1159
+ - 映射一致性校验:`npm run docs:diataxis:check`。
1160
+ - 本地预览文档站点:`npm run docs:site:serve`。
1161
+ - 构建静态文档站点:`npm run docs:site:build`。
1162
+ - CI 文档治理工作流:`.github/workflows/docs-diataxis-site.yml`。
1163
+
1138
1164
  ---
1139
1165
 
1140
1166
  <a id="changelog-zh"></a>
@@ -1143,6 +1169,11 @@ npm start -- --path "E:/Knowledge/ObsidianVault" --no-gpu
1143
1169
 
1144
1170
  ### v1.6.0 - 单窗口运行时、NoteMD 集成与发布加固 (2026-03-23)
1145
1171
 
1172
+ - **Tag 对比快照(`v1.3.0..v1.6.0`)**:
1173
+ - `107` 个提交、`301` 个变更文件、`+125,957 / -10,083` 代码/文档变更量。
1174
+ - 文件状态分布:新增 `241`、修改 `56`、删除 `3`、重命名 `1`。
1175
+ - 主要工程变更面集中在:`src/`、`docs/`、`scripts/`、`path_mode/`、`src-tauri/`。
1176
+
1146
1177
  - **单窗口运行时编排**:
1147
1178
  - 实现 Tauri <-> Godot 的可见性切换,同一时刻仅显示一个主窗口。
1148
1179
  - 增加 Godot 关闭确认流程(“返回主界面” / “关闭全部窗口”),避免误操作导致全局退出。
@@ -1157,6 +1188,7 @@ npm start -- --path "E:/Knowledge/ObsidianVault" --no-gpu
1157
1188
  - **可靠性与安全门禁**:
1158
1189
  - 扩展 CI/工作流:FixRisk 运维就绪、移动端 e2e 合约、wasm parity、SBOM、attestation、签名与隐私清单校验。
1159
1190
  - 新增多层合约回归覆盖(mobile/runtime/pathbridge/storage)。
1191
+ - 纳入发布前 CI 兼容修复:runtime bridge invoke 契约断言兼容与无签名 SBOM transparency 条件化策略。
1160
1192
  - **构建性能与开发体验**:
1161
1193
  - 增加低内存 Tauri 构建包装器与 release 配置保护,提升受限内存环境可构建性。
1162
1194
  - 增加 sidecar 预检,避免开发期重复重建,缩短 `tauri:dev:mini:gpu` 热启动耗时。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noteconnection",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Hierarchical Knowledge Graph Visualization System",
5
5
  "main": "dist/src/server.js",
6
6
  "bin": {
@@ -10,12 +10,12 @@
10
10
  "start": "node scripts/start-server.js",
11
11
  "start:prod": "node dist/src/server.js",
12
12
  "tauri": "tauri",
13
- "tauri:dev": "npm run build && npm run ensure:sidecar:dev && npm run cleanup:tauri:sidecars && npx kill-port 3000 && npx tauri dev",
14
- "tauri:dev:mini": "npm run build:mini && npm run ensure:sidecar:dev && npm run cleanup:tauri:sidecars && npx kill-port 3000 && npx tauri dev",
13
+ "tauri:dev": "npm run build && npm run ensure:sidecar:dev && npm run cleanup:tauri:sidecars && npx kill-port 3000 && npx tauri dev",
14
+ "tauri:dev:mini": "npm run build:mini && npm run ensure:sidecar:dev && npm run cleanup:tauri:sidecars && npx kill-port 3000 && npx tauri dev",
15
15
  "tauri:dev:gpu": "set NOTE_CONNECTION_GPU=1&& npm run tauri:dev",
16
16
  "tauri:dev:mini:gpu": "set NOTE_CONNECTION_GPU=1&& npm run tauri:dev:mini",
17
- "tauri:build": "npm run build && npm run build:sidecar && npm run cleanup:tauri:sidecars && node scripts/run-tauri-build.js",
18
- "tauri:build:mini": "npm run build:mini && npm run build:sidecar && npm run cleanup:tauri:sidecars && node scripts/run-tauri-build.js",
17
+ "tauri:build": "npm run build && npm run build:sidecar && npm run cleanup:tauri:sidecars && node scripts/run-tauri-build.js",
18
+ "tauri:build:mini": "npm run build:mini && npm run build:sidecar && npm run cleanup:tauri:sidecars && node scripts/run-tauri-build.js",
19
19
  "verify:android:env": "node scripts/verify-tauri-android-prereqs.js",
20
20
  "verify:capacitor:device": "node scripts/verify-capacitor-device-acceptance.js",
21
21
  "capture:capacitor:evidence": "node scripts/capture-capacitor-device-evidence.js",
@@ -33,9 +33,9 @@
33
33
  "build:mini": "node scripts/copy-reader-runtime-assets.js && tsc && node scripts/bundle_path_core.js && node scripts/copy-assets.js --mini && node scripts/sync-wasm-parity-artifact.js",
34
34
  "prepare:godot:bin": "node scripts/ensure-godot-sidecar.js",
35
35
  "verify:tauri:bin": "node scripts/validate-tauri-sidecars.js",
36
- "build:sidecar": "node scripts/copy-reader-runtime-assets.js && tsc && node scripts/build-sidecar.js && npm run prepare:godot:bin && npm run verify:tauri:bin",
37
- "build:sidecar:all": "node scripts/copy-reader-runtime-assets.js && tsc && node scripts/build-sidecar.js --all && npm run prepare:godot:bin && node scripts/validate-tauri-sidecars.js --all",
38
- "ensure:sidecar:dev": "node scripts/ensure-sidecar-ready.js",
36
+ "build:sidecar": "node scripts/copy-reader-runtime-assets.js && tsc && node scripts/build-sidecar.js && npm run prepare:godot:bin && npm run verify:tauri:bin",
37
+ "build:sidecar:all": "node scripts/copy-reader-runtime-assets.js && tsc && node scripts/build-sidecar.js --all && npm run prepare:godot:bin && node scripts/validate-tauri-sidecars.js --all",
38
+ "ensure:sidecar:dev": "node scripts/ensure-sidecar-ready.js",
39
39
  "pathmode:dev": "node -r ts-node/register src/server.ts --pathmode",
40
40
  "pathmode:test": "jest --testPathPatterns=Path",
41
41
  "smoke:sidecar:relaunch": "node scripts/smoke-sidecar-relaunch.js",
@@ -51,28 +51,31 @@
51
51
  "benchmark:wasm:parity:history:release": "node scripts/benchmark-wasm-parity.js --require-wasm-adapter 1 --history-window 90 --minimum-history-samples 5 --history-strict-samples 15 --history-maturity-fail-tier enforced --history-performance-fail-mode always --history-max-records 3000 --history-max-age-days 180 --max-candidate-to-history-graph-p95-ratio 1.25 --max-candidate-to-history-layout-p95-ratio 1.25 --max-candidate-to-history-graph-p99-ratio 1.25 --max-candidate-to-history-layout-p99-ratio 1.25",
52
52
  "calibrate:graphmetrics:tiering": "node scripts/calibrate-graphmetrics-tiering.js",
53
53
  "test:wasm:parity:gates": "npm run verify:wasm:parity:strict && npm run benchmark:wasm:parity:strict:perf",
54
- "verify:detox:pipeline": "node scripts/verify-detox-pipeline.js",
55
- "verify:fixrisk:issues": "node scripts/verify-fixrisk-issues.js",
56
- "verify:fixrisk:issues:strict": "node scripts/verify-fixrisk-issues.js --strict-pending",
57
- "verify:fixrisk:issues:strict:evidence": "node scripts/verify-fixrisk-issues.js --strict-pending --require-evidence-root",
58
- "verify:pathbridge:strict": "node scripts/verify-pathbridge-strict-schema.js",
59
- "generate:sbom": "node scripts/generate-sbom.js",
60
- "generate:sbom:attestation": "node scripts/generate-sbom-attestation.js",
61
- "verify:sbom": "node scripts/verify-sbom-policy.js",
62
- "verify:sbom:attestation": "node scripts/verify-sbom-attestation.js",
63
- "test:e2e:detox": "node scripts/run-detox-e2e.js",
64
- "test:e2e:detox:run": "node scripts/run-detox-e2e.js --run",
65
- "verify:privacy:manifest": "node scripts/verify-privacy-manifest.js",
66
- "verify:sidecar:signatures": "node scripts/verify-sidecar-signatures.js",
67
- "ops:fixrisk:close": "node scripts/run-fixrisk-ops-closure.js",
68
- "ops:fixrisk:close:dry": "node scripts/run-fixrisk-ops-closure.js --dry-run",
69
- "test:mobile:contracts": "jest src/mobile.pipeline.test.ts src/runtime.capabilities.test.ts src/source_manager.loadflow.test.ts src/capacitor.runtime.contract.test.ts src/android.pathmode.contract.test.ts src/android.pathmode.smoke.contract.test.ts src/graph.accessibility.contract.test.ts src/detox.pipeline.contract.test.ts src/privacy.manifest.contract.test.ts --runInBand && npm run verify:detox:pipeline && npm run verify:privacy:manifest",
70
- "test:migration": "jest src/core/Graph.test.ts src/core/PathEngine.test.ts src/core/TreeLayout.test.ts src/backend/algorithms/CycleDetection.test.ts src/backend/algorithms/TopologicalSort.test.ts src/backend/algorithms/WasmParityHistory.test.ts src/utils/RuntimePaths.test.ts src/server.migration.test.ts src/pkg.sidecar.contract.test.ts src/pkg.snapshot.safety.contract.test.ts src/mobile.pipeline.test.ts src/capacitor.device.utils.contract.test.ts src/capacitor.evidence.contract.test.ts src/runtime.capabilities.test.ts src/runtime.heap.policy.contract.test.ts src/runtime.spool.policy.contract.test.ts src/runtime.transport.adapter.contract.test.ts src/storage.provider.contract.test.ts src/storage.provider.capacitor.content.contract.test.ts src/storage.provider.capacitor.worker.contract.test.ts src/wasm.parity.runtime.contract.test.ts src/wasm.parity.runtime.functional.test.ts src/wasm.parity.output.equivalence.contract.test.ts src/wasm.parity.benchmark.contract.test.ts src/wasm.parity.benchmark.guards.contract.test.ts src/wasm.parity.history.gate.contract.test.ts src/wasm.parity.artifact.probe.contract.test.ts src/wasm.parity.artifact.provisioning.contract.test.ts src/source_manager.loadflow.test.ts src/capacitor.runtime.contract.test.ts src/welcome.loadflow.test.ts src/pathmode.history.contract.test.ts src/android.pathmode.contract.test.ts src/android.pathmode.smoke.contract.test.ts src/pathbridge.handshake.contract.test.ts src/pathbridge.strict.policy.contract.test.ts src/graph.accessibility.contract.test.ts src/detox.pipeline.contract.test.ts src/privacy.manifest.contract.test.ts src/server.port.fallback.contract.test.ts src/sidecar.signature.contract.test.ts src/sbom.policy.contract.test.ts src/sbom.attestation.policy.contract.test.ts src/sidecar.relaunch.contract.test.ts src/tauri.test.runner.contract.test.ts --runInBand",
71
- "test:tauri": "node scripts/run-tauri-tests.js",
72
- "test:gates": "npm run test:migration && npm run test:wasm:parity:gates && npm run test:tauri && npm run verify:android:env && npm run verify:detox:pipeline && npm run verify:privacy:manifest && npm run verify:pathbridge:strict && npm run verify:sbom -- --contract-only && npm run verify:sbom:attestation -- --contract-only && npm run verify:sidecar:signatures -- --contract-only",
73
- "prepublishOnly": "npm run build:mini",
54
+ "verify:detox:pipeline": "node scripts/verify-detox-pipeline.js",
55
+ "verify:fixrisk:issues": "node scripts/verify-fixrisk-issues.js",
56
+ "verify:fixrisk:issues:strict": "node scripts/verify-fixrisk-issues.js --strict-pending",
57
+ "verify:fixrisk:issues:strict:evidence": "node scripts/verify-fixrisk-issues.js --strict-pending --require-evidence-root",
58
+ "verify:pathbridge:strict": "node scripts/verify-pathbridge-strict-schema.js",
59
+ "generate:sbom": "node scripts/generate-sbom.js",
60
+ "generate:sbom:attestation": "node scripts/generate-sbom-attestation.js",
61
+ "verify:sbom": "node scripts/verify-sbom-policy.js",
62
+ "verify:sbom:attestation": "node scripts/verify-sbom-attestation.js",
63
+ "test:e2e:detox": "node scripts/run-detox-e2e.js",
64
+ "test:e2e:detox:run": "node scripts/run-detox-e2e.js --run",
65
+ "verify:privacy:manifest": "node scripts/verify-privacy-manifest.js",
66
+ "verify:sidecar:signatures": "node scripts/verify-sidecar-signatures.js",
67
+ "ops:fixrisk:close": "node scripts/run-fixrisk-ops-closure.js",
68
+ "ops:fixrisk:close:dry": "node scripts/run-fixrisk-ops-closure.js --dry-run",
69
+ "test:mobile:contracts": "jest src/mobile.pipeline.test.ts src/runtime.capabilities.test.ts src/source_manager.loadflow.test.ts src/capacitor.runtime.contract.test.ts src/android.pathmode.contract.test.ts src/android.pathmode.smoke.contract.test.ts src/graph.accessibility.contract.test.ts src/detox.pipeline.contract.test.ts src/privacy.manifest.contract.test.ts --runInBand && npm run verify:detox:pipeline && npm run verify:privacy:manifest",
70
+ "test:migration": "jest src/core/Graph.test.ts src/core/PathEngine.test.ts src/core/TreeLayout.test.ts src/backend/algorithms/CycleDetection.test.ts src/backend/algorithms/TopologicalSort.test.ts src/backend/algorithms/WasmParityHistory.test.ts src/utils/RuntimePaths.test.ts src/server.migration.test.ts src/pkg.sidecar.contract.test.ts src/pkg.snapshot.safety.contract.test.ts src/mobile.pipeline.test.ts src/capacitor.device.utils.contract.test.ts src/capacitor.evidence.contract.test.ts src/runtime.capabilities.test.ts src/runtime.heap.policy.contract.test.ts src/runtime.spool.policy.contract.test.ts src/runtime.transport.adapter.contract.test.ts src/storage.provider.contract.test.ts src/storage.provider.capacitor.content.contract.test.ts src/storage.provider.capacitor.worker.contract.test.ts src/wasm.parity.runtime.contract.test.ts src/wasm.parity.runtime.functional.test.ts src/wasm.parity.output.equivalence.contract.test.ts src/wasm.parity.benchmark.contract.test.ts src/wasm.parity.benchmark.guards.contract.test.ts src/wasm.parity.history.gate.contract.test.ts src/wasm.parity.artifact.probe.contract.test.ts src/wasm.parity.artifact.provisioning.contract.test.ts src/source_manager.loadflow.test.ts src/capacitor.runtime.contract.test.ts src/welcome.loadflow.test.ts src/pathmode.history.contract.test.ts src/android.pathmode.contract.test.ts src/android.pathmode.smoke.contract.test.ts src/pathbridge.handshake.contract.test.ts src/pathbridge.strict.policy.contract.test.ts src/graph.accessibility.contract.test.ts src/detox.pipeline.contract.test.ts src/privacy.manifest.contract.test.ts src/server.port.fallback.contract.test.ts src/sidecar.signature.contract.test.ts src/sbom.policy.contract.test.ts src/sbom.attestation.policy.contract.test.ts src/sidecar.relaunch.contract.test.ts src/tauri.test.runner.contract.test.ts --runInBand",
71
+ "test:tauri": "node scripts/run-tauri-tests.js",
72
+ "test:gates": "npm run test:migration && npm run test:wasm:parity:gates && npm run test:tauri && npm run verify:android:env && npm run verify:detox:pipeline && npm run verify:privacy:manifest && npm run verify:pathbridge:strict && npm run verify:sbom -- --contract-only && npm run verify:sbom:attestation -- --contract-only && npm run verify:sidecar:signatures -- --contract-only",
73
+ "prepublishOnly": "npm run build:mini",
74
74
  "test": "jest",
75
- "cleanup:tauri:sidecars": "node scripts/cleanup-tauri-sidecars.js"
75
+ "cleanup:tauri:sidecars": "node scripts/cleanup-tauri-sidecars.js",
76
+ "docs:diataxis:check": "node scripts/verify-diataxis-map.js",
77
+ "docs:site:build": "mkdocs build --config-file mkdocs.yml",
78
+ "docs:site:serve": "mkdocs serve --config-file mkdocs.yml"
76
79
  },
77
80
  "pkg": {
78
81
  "scripts": [
@@ -84,12 +87,12 @@
84
87
  "graph_data.json"
85
88
  ]
86
89
  },
87
- "files": [
88
- "dist/src",
89
- "dist/amdgpu",
90
- "LICENSE",
91
- "README.md"
92
- ],
90
+ "files": [
91
+ "dist/src",
92
+ "dist/amdgpu",
93
+ "LICENSE",
94
+ "README.md"
95
+ ],
93
96
  "keywords": [
94
97
  "knowledge-graph",
95
98
  "visualization",