formative-memory 0.1.0 → 0.2.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 +153 -123
- package/dist/cli.js +1 -1
- package/dist/{db-D2pzT6fw.js → db-D1Sc76VE.js} +1 -1
- package/dist/index.js +649 -227
- package/openclaw.plugin.json +82 -0
- package/package.json +4 -3
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "formative-memory",
|
|
3
|
+
"name": "Formative Memory",
|
|
4
|
+
"kind": ["memory", "context-engine"],
|
|
5
|
+
"description": "Self-optimizing memory that strengthens relevant context through use, builds associations, and consolidates during sleep.",
|
|
6
|
+
"configSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"embedding": {
|
|
11
|
+
"type": "object",
|
|
12
|
+
"additionalProperties": false,
|
|
13
|
+
"properties": {
|
|
14
|
+
"provider": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"default": "auto"
|
|
17
|
+
},
|
|
18
|
+
"model": {
|
|
19
|
+
"type": "string"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"dbPath": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"autoCapture": {
|
|
27
|
+
"type": "boolean"
|
|
28
|
+
},
|
|
29
|
+
"autoRecall": {
|
|
30
|
+
"type": "boolean"
|
|
31
|
+
},
|
|
32
|
+
"verbose": {
|
|
33
|
+
"type": "boolean"
|
|
34
|
+
},
|
|
35
|
+
"logQueries": {
|
|
36
|
+
"type": "boolean"
|
|
37
|
+
},
|
|
38
|
+
"requireEmbedding": {
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"default": true
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"uiHints": {
|
|
45
|
+
"embedding.provider": {
|
|
46
|
+
"label": "Embedding Provider",
|
|
47
|
+
"placeholder": "auto",
|
|
48
|
+
"help": "Embedding provider to use. \"auto\" selects the best available provider based on configured API keys."
|
|
49
|
+
},
|
|
50
|
+
"embedding.model": {
|
|
51
|
+
"label": "Embedding Model",
|
|
52
|
+
"help": "Override the provider's default embedding model"
|
|
53
|
+
},
|
|
54
|
+
"dbPath": {
|
|
55
|
+
"label": "Database Path",
|
|
56
|
+
"placeholder": "~/.openclaw/memory/associative",
|
|
57
|
+
"advanced": true
|
|
58
|
+
},
|
|
59
|
+
"autoCapture": {
|
|
60
|
+
"label": "Auto-Capture",
|
|
61
|
+
"help": "Automatically capture all conversations for consolidation"
|
|
62
|
+
},
|
|
63
|
+
"autoRecall": {
|
|
64
|
+
"label": "Auto-Recall",
|
|
65
|
+
"help": "Automatically inject associated memories into context"
|
|
66
|
+
},
|
|
67
|
+
"verbose": {
|
|
68
|
+
"label": "Verbose Logging",
|
|
69
|
+
"help": "Enable debug-level logging."
|
|
70
|
+
},
|
|
71
|
+
"logQueries": {
|
|
72
|
+
"label": "Log Query Text",
|
|
73
|
+
"help": "Include raw query text in debug logs. Disabled by default for privacy — queries may contain personal data.",
|
|
74
|
+
"advanced": true
|
|
75
|
+
},
|
|
76
|
+
"requireEmbedding": {
|
|
77
|
+
"label": "Require Embedding",
|
|
78
|
+
"help": "When true (default), the plugin requires a working embedding provider. Set to false to allow BM25-only fallback.",
|
|
79
|
+
"advanced": true
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formative-memory",
|
|
3
|
-
"version": "0.1
|
|
4
|
-
"description": "Memory that
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Memory that actively forms around what matters.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -64,7 +64,8 @@
|
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
66
|
"files": [
|
|
67
|
-
"dist"
|
|
67
|
+
"dist",
|
|
68
|
+
"openclaw.plugin.json"
|
|
68
69
|
],
|
|
69
70
|
"openclaw": {
|
|
70
71
|
"extensions": [
|