hippo-memory 0.18.0 → 0.19.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.
@@ -1,46 +1,46 @@
1
- {
2
- "id": "hippo-memory",
3
- "name": "Hippo Memory",
4
- "description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
5
- "version": "0.18.0",
6
-
7
- "configSchema": {
8
- "type": "object",
9
- "additionalProperties": false,
10
- "properties": {
11
- "budget": {
12
- "type": "number",
13
- "description": "Default token budget for context injection (default: 1500)"
14
- },
15
- "autoContext": {
16
- "type": "boolean",
17
- "description": "Auto-inject hippo context at session start (default: true)"
18
- },
19
- "autoLearn": {
20
- "type": "boolean",
21
- "description": "Auto-capture errors during agent sessions (default: true)"
22
- },
23
- "autoSleep": {
24
- "type": "boolean",
25
- "description": "Run consolidation after sessions with 10+ new memories (default: false)"
26
- },
27
- "framing": {
28
- "type": "string",
29
- "enum": ["observe", "suggest", "assert"],
30
- "description": "How memories are framed in context (default: observe)"
31
- },
32
- "root": {
33
- "type": "string",
34
- "description": "Custom .hippo directory path (default: auto-detect from workspace)"
35
- }
36
- }
37
- },
38
- "uiHints": {
39
- "budget": { "label": "Token Budget", "placeholder": "1500" },
40
- "autoContext": { "label": "Auto-inject Context" },
41
- "autoLearn": { "label": "Auto-capture Errors" },
42
- "autoSleep": { "label": "Auto-consolidate" },
43
- "framing": { "label": "Memory Framing" },
44
- "root": { "label": "Hippo Root Path", "placeholder": ".hippo/" }
45
- }
46
- }
1
+ {
2
+ "id": "hippo-memory",
3
+ "name": "Hippo Memory",
4
+ "description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
5
+ "version": "0.19.1",
6
+
7
+ "configSchema": {
8
+ "type": "object",
9
+ "additionalProperties": false,
10
+ "properties": {
11
+ "budget": {
12
+ "type": "number",
13
+ "description": "Default token budget for context injection (default: 1500)"
14
+ },
15
+ "autoContext": {
16
+ "type": "boolean",
17
+ "description": "Auto-inject hippo context at session start (default: true)"
18
+ },
19
+ "autoLearn": {
20
+ "type": "boolean",
21
+ "description": "Auto-capture errors during agent sessions (default: true)"
22
+ },
23
+ "autoSleep": {
24
+ "type": "boolean",
25
+ "description": "Run consolidation after sessions with 10+ new memories (default: false)"
26
+ },
27
+ "framing": {
28
+ "type": "string",
29
+ "enum": ["observe", "suggest", "assert"],
30
+ "description": "How memories are framed in context (default: observe)"
31
+ },
32
+ "root": {
33
+ "type": "string",
34
+ "description": "Custom .hippo directory path (default: auto-detect from workspace)"
35
+ }
36
+ }
37
+ },
38
+ "uiHints": {
39
+ "budget": { "label": "Token Budget", "placeholder": "1500" },
40
+ "autoContext": { "label": "Auto-inject Context" },
41
+ "autoLearn": { "label": "Auto-capture Errors" },
42
+ "autoSleep": { "label": "Auto-consolidate" },
43
+ "framing": { "label": "Memory Framing" },
44
+ "root": { "label": "Hippo Root Path", "placeholder": ".hippo/" }
45
+ }
46
+ }
@@ -1,13 +1,13 @@
1
- {
2
- "name": "hippo-memory",
3
- "version": "0.18.0",
4
- "description": "Hippo Memory plugin for OpenClaw - biologically-inspired agent memory",
5
- "main": "index.ts",
6
- "openclaw": {
7
- "extensions": ["./index.ts"]
8
- },
9
- "peerDependencies": {
10
- "hippo-memory": ">=0.4.0"
11
- },
12
- "license": "MIT"
13
- }
1
+ {
2
+ "name": "hippo-memory",
3
+ "version": "0.19.1",
4
+ "description": "Hippo Memory plugin for OpenClaw - biologically-inspired agent memory",
5
+ "main": "index.ts",
6
+ "openclaw": {
7
+ "extensions": ["./index.ts"]
8
+ },
9
+ "peerDependencies": {
10
+ "hippo-memory": ">=0.4.0"
11
+ },
12
+ "license": "MIT"
13
+ }
@@ -1,45 +1,45 @@
1
- {
2
- "id": "hippo-memory",
3
- "name": "Hippo Memory",
4
- "description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
5
- "version": "0.18.0",
6
- "configSchema": {
7
- "type": "object",
8
- "additionalProperties": false,
9
- "properties": {
10
- "budget": {
11
- "type": "number",
12
- "description": "Default token budget for context injection (default: 1500)"
13
- },
14
- "autoContext": {
15
- "type": "boolean",
16
- "description": "Auto-inject hippo context at session start (default: true)"
17
- },
18
- "autoLearn": {
19
- "type": "boolean",
20
- "description": "Auto-capture errors during agent sessions (default: true)"
21
- },
22
- "autoSleep": {
23
- "type": "boolean",
24
- "description": "Run consolidation after sessions with 10+ new memories (default: false)"
25
- },
26
- "framing": {
27
- "type": "string",
28
- "enum": ["observe", "suggest", "assert"],
29
- "description": "How memories are framed in context (default: observe)"
30
- },
31
- "root": {
32
- "type": "string",
33
- "description": "Custom .hippo directory path (default: auto-detect from workspace)"
34
- }
35
- }
36
- },
37
- "uiHints": {
38
- "budget": { "label": "Token Budget", "placeholder": "1500" },
39
- "autoContext": { "label": "Auto-inject Context" },
40
- "autoLearn": { "label": "Auto-capture Errors" },
41
- "autoSleep": { "label": "Auto-consolidate" },
42
- "framing": { "label": "Memory Framing" },
43
- "root": { "label": "Hippo Root Path", "placeholder": ".hippo/" }
44
- }
45
- }
1
+ {
2
+ "id": "hippo-memory",
3
+ "name": "Hippo Memory",
4
+ "description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
5
+ "version": "0.19.1",
6
+ "configSchema": {
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "budget": {
11
+ "type": "number",
12
+ "description": "Default token budget for context injection (default: 1500)"
13
+ },
14
+ "autoContext": {
15
+ "type": "boolean",
16
+ "description": "Auto-inject hippo context at session start (default: true)"
17
+ },
18
+ "autoLearn": {
19
+ "type": "boolean",
20
+ "description": "Auto-capture errors during agent sessions (default: true)"
21
+ },
22
+ "autoSleep": {
23
+ "type": "boolean",
24
+ "description": "Run consolidation after sessions with 10+ new memories (default: false)"
25
+ },
26
+ "framing": {
27
+ "type": "string",
28
+ "enum": ["observe", "suggest", "assert"],
29
+ "description": "How memories are framed in context (default: observe)"
30
+ },
31
+ "root": {
32
+ "type": "string",
33
+ "description": "Custom .hippo directory path (default: auto-detect from workspace)"
34
+ }
35
+ }
36
+ },
37
+ "uiHints": {
38
+ "budget": { "label": "Token Budget", "placeholder": "1500" },
39
+ "autoContext": { "label": "Auto-inject Context" },
40
+ "autoLearn": { "label": "Auto-capture Errors" },
41
+ "autoSleep": { "label": "Auto-consolidate" },
42
+ "framing": { "label": "Memory Framing" },
43
+ "root": { "label": "Hippo Root Path", "placeholder": ".hippo/" }
44
+ }
45
+ }
package/package.json CHANGED
@@ -1,68 +1,68 @@
1
- {
2
- "name": "hippo-memory",
3
- "version": "0.18.0",
4
- "description": "Biologically-inspired memory system for AI agents. Decay by default, strength through use.",
5
- "type": "module",
6
- "main": "./dist/index.js",
7
- "exports": {
8
- ".": "./dist/index.js"
9
- },
10
- "openclaw": {
11
- "extensions": [
12
- "./extensions/openclaw-plugin/index.ts"
13
- ]
14
- },
15
- "bin": {
16
- "hippo": "bin/hippo.js"
17
- },
18
- "files": [
19
- "dist",
20
- "bin",
21
- "openclaw.plugin.json",
22
- "extensions/openclaw-plugin"
23
- ],
24
- "scripts": {
25
- "build": "tsc",
26
- "dev": "tsc --watch",
27
- "test": "vitest run",
28
- "test:watch": "vitest",
29
- "smoke:pack": "node scripts/smoke-pack.mjs",
30
- "smoke:openclaw-install": "node scripts/smoke-openclaw-install.mjs",
31
- "prepublishOnly": "npm run build"
32
- },
33
- "keywords": [
34
- "memory",
35
- "ai",
36
- "agents",
37
- "llm",
38
- "claude",
39
- "context",
40
- "recall",
41
- "episodic",
42
- "semantic",
43
- "embeddings",
44
- "hybrid-search"
45
- ],
46
- "author": "Keith",
47
- "license": "MIT",
48
- "repository": {
49
- "type": "git",
50
- "url": "git+https://github.com/kitfunso/hippo-memory.git"
51
- },
52
- "engines": {
53
- "node": ">=22.5.0"
54
- },
55
- "devDependencies": {
56
- "@types/node": "^20.11.0",
57
- "typescript": "^5.4.0",
58
- "vitest": "^1.4.0"
59
- },
60
- "peerDependenciesMeta": {
61
- "@xenova/transformers": {
62
- "optional": true
63
- }
64
- },
65
- "optionalDependencies": {
66
- "@xenova/transformers": "^2.17.2"
67
- }
68
- }
1
+ {
2
+ "name": "hippo-memory",
3
+ "version": "0.19.1",
4
+ "description": "Biologically-inspired memory system for AI agents. Decay by default, strength through use.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "exports": {
8
+ ".": "./dist/index.js"
9
+ },
10
+ "openclaw": {
11
+ "extensions": [
12
+ "./extensions/openclaw-plugin/index.ts"
13
+ ]
14
+ },
15
+ "bin": {
16
+ "hippo": "bin/hippo.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "bin",
21
+ "openclaw.plugin.json",
22
+ "extensions/openclaw-plugin"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsc",
26
+ "dev": "tsc --watch",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "smoke:pack": "node scripts/smoke-pack.mjs",
30
+ "smoke:openclaw-install": "node scripts/smoke-openclaw-install.mjs",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "keywords": [
34
+ "memory",
35
+ "ai",
36
+ "agents",
37
+ "llm",
38
+ "claude",
39
+ "context",
40
+ "recall",
41
+ "episodic",
42
+ "semantic",
43
+ "embeddings",
44
+ "hybrid-search"
45
+ ],
46
+ "author": "Keith",
47
+ "license": "MIT",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/kitfunso/hippo-memory.git"
51
+ },
52
+ "engines": {
53
+ "node": ">=22.5.0"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^20.11.0",
57
+ "typescript": "^5.4.0",
58
+ "vitest": "^1.4.0"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "@xenova/transformers": {
62
+ "optional": true
63
+ }
64
+ },
65
+ "optionalDependencies": {
66
+ "@xenova/transformers": "^2.17.2"
67
+ }
68
+ }