@psiclawops/hypermem 0.5.3 → 0.5.4

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
@@ -340,9 +340,9 @@ Slot-level budget allocation is shown in the [hypercompositor diagram](#what-the
340
340
 
341
341
  ## Requirements
342
342
 
343
- **Current release: hypermem 0.5.3.** Topic-aware memory and compiled-knowledge system, optimized to run light by default and scale up when operators need richer context.
343
+ **Current release: hypermem 0.5.4.** Topic-aware memory and compiled-knowledge system, optimized to run light by default and scale up when operators need richer context.
344
344
 
345
- What 0.5.3 includes:
345
+ What 0.5.4 includes:
346
346
  - Topic-aware context tracking
347
347
  - Compiled knowledge / wiki-like synthesis and recall
348
348
  - Metrics dashboard primitives
@@ -360,7 +360,7 @@ SQLite is a library, not a service. All four layers run in-process with no exter
360
360
  **Runtime version constants** (importable from the package):
361
361
  ```typescript
362
362
  import {
363
- ENGINE_VERSION, // '0.5.3'
363
+ ENGINE_VERSION, // '0.5.4'
364
364
  MIN_NODE_VERSION, // '22.0.0'
365
365
  MIN_SQLITE_VERSION, // '3.35.0'
366
366
  SQLITE_VEC_VERSION, // '0.1.9'
package/dist/version.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /** Release version — matches package.json and is stamped into library.db on every startup. */
2
- export declare const ENGINE_VERSION = "0.5.3";
2
+ export declare const ENGINE_VERSION = "0.5.4";
3
3
  /** Minimum Node.js version required — matches package.json engines field. */
4
4
  export declare const MIN_NODE_VERSION = "22.0.0";
5
5
  /** @deprecated No longer used — Redis was replaced with SQLite :memory: CacheLayer. */
@@ -21,13 +21,13 @@ export declare const LIBRARY_SCHEMA_VERSION_EXPORT = 12;
21
21
  * Maps to: main schema v6, library schema v12.
22
22
  * Matches ENGINE_VERSION for the 0.5.2 release.
23
23
  */
24
- export declare const HYPERMEM_COMPAT_VERSION = "0.5.3";
24
+ export declare const HYPERMEM_COMPAT_VERSION = "0.5.4";
25
25
  /**
26
26
  * Schema compatibility map — machine-readable version requirements.
27
27
  * Use this to verify DB schemas match the running engine.
28
28
  */
29
29
  export declare const SCHEMA_COMPAT: {
30
- readonly compatVersion: "0.5.3";
30
+ readonly compatVersion: "0.5.4";
31
31
  readonly mainSchema: 6;
32
32
  readonly librarySchema: 12;
33
33
  };
package/dist/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /** Release version — matches package.json and is stamped into library.db on every startup. */
2
- export const ENGINE_VERSION = '0.5.3';
2
+ export const ENGINE_VERSION = '0.5.4';
3
3
  /** Minimum Node.js version required — matches package.json engines field. */
4
4
  export const MIN_NODE_VERSION = '22.0.0';
5
5
  /** @deprecated No longer used — Redis was replaced with SQLite :memory: CacheLayer. */
@@ -21,13 +21,13 @@ export const LIBRARY_SCHEMA_VERSION_EXPORT = 12;
21
21
  * Maps to: main schema v6, library schema v12.
22
22
  * Matches ENGINE_VERSION for the 0.5.2 release.
23
23
  */
24
- export const HYPERMEM_COMPAT_VERSION = '0.5.3';
24
+ export const HYPERMEM_COMPAT_VERSION = '0.5.4';
25
25
  /**
26
26
  * Schema compatibility map — machine-readable version requirements.
27
27
  * Use this to verify DB schemas match the running engine.
28
28
  */
29
29
  export const SCHEMA_COMPAT = {
30
- compatVersion: '0.5.3',
30
+ compatVersion: '0.5.4',
31
31
  mainSchema: 6,
32
32
  librarySchema: 12,
33
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@psiclawops/hypermem",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Agent-centric memory and context composition engine for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",