@psiclawops/hypermem 0.9.7 → 0.9.9
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/CHANGELOG.md +16 -0
- package/INSTALL.md +29 -9
- package/README.md +5 -1
- package/assets/default-config.json +20 -5
- package/assets/runtime-validation-fixture.json +123 -0
- package/bin/hypermem-cleanup.mjs +334 -0
- package/bin/hypermem-doctor.mjs +71 -0
- package/bin/hypermem-validate-runtime.mjs +282 -0
- package/dist/compositor.d.ts +43 -5
- package/dist/compositor.d.ts.map +1 -1
- package/dist/compositor.js +802 -30
- package/dist/entity-bridge-backfill.d.ts +66 -0
- package/dist/entity-bridge-backfill.d.ts.map +1 -0
- package/dist/entity-bridge-backfill.js +145 -0
- package/dist/entity-bridge-store.d.ts +164 -0
- package/dist/entity-bridge-store.d.ts.map +1 -0
- package/dist/entity-bridge-store.js +488 -0
- package/dist/entity-extractor.d.ts +124 -0
- package/dist/entity-extractor.d.ts.map +1 -0
- package/dist/entity-extractor.js +382 -0
- package/dist/entity-ppr.d.ts +55 -0
- package/dist/entity-ppr.d.ts.map +1 -0
- package/dist/entity-ppr.js +180 -0
- package/dist/hybrid-retrieval.d.ts +27 -0
- package/dist/hybrid-retrieval.d.ts.map +1 -1
- package/dist/hybrid-retrieval.js +26 -1
- package/dist/index.d.ts +19 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +63 -13
- package/dist/message-store.d.ts +36 -0
- package/dist/message-store.d.ts.map +1 -1
- package/dist/message-store.js +155 -1
- package/dist/open-domain.d.ts +13 -4
- package/dist/open-domain.d.ts.map +1 -1
- package/dist/open-domain.js +222 -20
- package/dist/profiles.js +13 -13
- package/dist/question-shape.d.ts +73 -0
- package/dist/question-shape.d.ts.map +1 -0
- package/dist/question-shape.js +230 -0
- package/dist/schema.d.ts +1 -1
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +92 -1
- package/dist/topic-detector.d.ts.map +1 -1
- package/dist/topic-detector.js +22 -9
- package/dist/types.d.ts +176 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/vector-store.d.ts +6 -0
- package/dist/vector-store.d.ts.map +1 -1
- package/dist/vector-store.js +3 -0
- package/docs/DIAGNOSTICS.md +32 -0
- package/docs/INTEGRATION_VALIDATION.md +9 -4
- package/docs/TUNING.md +21 -21
- package/memory-plugin/dist/index.js +3 -1
- package/memory-plugin/package.json +8 -7
- package/package.json +10 -4
- package/plugin/dist/index.d.ts.map +1 -1
- package/plugin/dist/index.js +114 -11
- package/plugin/dist/index.js.map +1 -1
- package/plugin/package.json +9 -8
- package/scripts/install-runtime.mjs +4 -1
|
@@ -89,9 +89,11 @@ const requiredEntries = [
|
|
|
89
89
|
['README.md', 'README.md'],
|
|
90
90
|
['LICENSE', 'LICENSE'],
|
|
91
91
|
['assets/default-config.json', 'assets/default-config.json'],
|
|
92
|
+
['assets/runtime-validation-fixture.json', 'assets/runtime-validation-fixture.json'],
|
|
92
93
|
['bin/hypermem-status.mjs', 'bin/hypermem-status.mjs'],
|
|
93
94
|
['bin/hypermem-model-audit.mjs', 'bin/hypermem-model-audit.mjs'],
|
|
94
95
|
['bin/hypermem-doctor.mjs', 'bin/hypermem-doctor.mjs'],
|
|
96
|
+
['bin/hypermem-validate-runtime.mjs', 'bin/hypermem-validate-runtime.mjs'],
|
|
95
97
|
['bin/hypermem-bench.mjs', 'bin/hypermem-bench.mjs'],
|
|
96
98
|
['bench/data-access-bench.mjs', 'bench/data-access-bench.mjs'],
|
|
97
99
|
['plugin/dist', 'plugin/dist'],
|
|
@@ -248,4 +250,5 @@ console.log(` openclaw gateway restart\n`);
|
|
|
248
250
|
console.log(` Verify:\n`);
|
|
249
251
|
console.log(` openclaw plugins registry --refresh`);
|
|
250
252
|
console.log(` openclaw plugins list`);
|
|
251
|
-
console.log(` node bin/hypermem-status.mjs --health
|
|
253
|
+
console.log(` node bin/hypermem-status.mjs --health`);
|
|
254
|
+
console.log(` node bin/hypermem-validate-runtime.mjs\n`);
|