@signetai/signet-memory-openclaw 0.66.1 → 0.68.0
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/dist/index.js +15 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -7837,6 +7837,13 @@ function up32(db) {
|
|
|
7837
7837
|
db.exec("ALTER TABLE embeddings ADD COLUMN vector BLOB");
|
|
7838
7838
|
}
|
|
7839
7839
|
}
|
|
7840
|
+
function up33(db) {
|
|
7841
|
+
const cols = db.prepare("PRAGMA table_info(memories)").all();
|
|
7842
|
+
if (!cols.some((c) => c.name === "scope")) {
|
|
7843
|
+
db.exec("ALTER TABLE memories ADD COLUMN scope TEXT DEFAULT NULL");
|
|
7844
|
+
}
|
|
7845
|
+
db.exec("CREATE INDEX IF NOT EXISTS idx_memories_scope ON memories(scope) WHERE scope IS NOT NULL");
|
|
7846
|
+
}
|
|
7840
7847
|
var MIGRATIONS = [
|
|
7841
7848
|
{
|
|
7842
7849
|
version: 1,
|
|
@@ -8098,6 +8105,14 @@ var MIGRATIONS = [
|
|
|
8098
8105
|
artifacts: {
|
|
8099
8106
|
columns: [{ table: "embeddings", column: "vector", optional: true }]
|
|
8100
8107
|
}
|
|
8108
|
+
},
|
|
8109
|
+
{
|
|
8110
|
+
version: 33,
|
|
8111
|
+
name: "scope",
|
|
8112
|
+
up: up33,
|
|
8113
|
+
artifacts: {
|
|
8114
|
+
columns: [{ table: "memories", column: "scope" }]
|
|
8115
|
+
}
|
|
8101
8116
|
}
|
|
8102
8117
|
];
|
|
8103
8118
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/signet-memory-openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@sinclair/typebox": "0.34.47"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@signet/core": "0.
|
|
39
|
+
"@signet/core": "0.68.0",
|
|
40
40
|
"@types/node": "^22.0.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|