@signetai/signet-memory-openclaw 0.102.7 → 0.103.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/dist/index.js +14 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -9100,6 +9100,12 @@ function up60(db) {
|
|
|
9100
9100
|
ON entity_attributes(agent_id, aspect_id, group_key, claim_key, status)
|
|
9101
9101
|
WHERE claim_key IS NOT NULL`);
|
|
9102
9102
|
}
|
|
9103
|
+
function up61(db) {
|
|
9104
|
+
const cols = db.prepare("PRAGMA table_info(memory_artifacts)").all();
|
|
9105
|
+
if (cols.some((col) => col.name === "source_mtime_ms"))
|
|
9106
|
+
return;
|
|
9107
|
+
db.exec("ALTER TABLE memory_artifacts ADD COLUMN source_mtime_ms REAL");
|
|
9108
|
+
}
|
|
9103
9109
|
var MIGRATIONS = [
|
|
9104
9110
|
{
|
|
9105
9111
|
version: 1,
|
|
@@ -9570,6 +9576,14 @@ var MIGRATIONS = [
|
|
|
9570
9576
|
artifacts: {
|
|
9571
9577
|
columns: [{ table: "entity_attributes", column: "group_key" }]
|
|
9572
9578
|
}
|
|
9579
|
+
},
|
|
9580
|
+
{
|
|
9581
|
+
version: 61,
|
|
9582
|
+
name: "memory-artifact-source-mtime",
|
|
9583
|
+
up: up61,
|
|
9584
|
+
artifacts: {
|
|
9585
|
+
columns: [{ table: "memory_artifacts", column: "source_mtime_ms" }]
|
|
9586
|
+
}
|
|
9573
9587
|
}
|
|
9574
9588
|
];
|
|
9575
9589
|
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.103.1",
|
|
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.103.1",
|
|
40
40
|
"@types/node": "^22.0.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|