signetai 0.198.0 → 0.198.2
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/mcp-stdio.js +46 -0
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -40856,6 +40856,46 @@ function up129(db) {
|
|
|
40856
40856
|
AND status IN ('pending', 'leased');
|
|
40857
40857
|
`);
|
|
40858
40858
|
}
|
|
40859
|
+
function up130(db) {
|
|
40860
|
+
db.exec(`
|
|
40861
|
+
CREATE TABLE IF NOT EXISTS embedding_repair_budget (
|
|
40862
|
+
id INTEGER PRIMARY KEY CHECK (id = 1),
|
|
40863
|
+
window_started_at TEXT NOT NULL,
|
|
40864
|
+
batches_started INTEGER NOT NULL DEFAULT 0 CHECK (batches_started >= 0),
|
|
40865
|
+
last_completed_at TEXT,
|
|
40866
|
+
last_affected INTEGER NOT NULL DEFAULT 0 CHECK (last_affected >= 0),
|
|
40867
|
+
lease_id TEXT,
|
|
40868
|
+
lease_expires_at TEXT,
|
|
40869
|
+
last_error TEXT,
|
|
40870
|
+
updated_at TEXT NOT NULL
|
|
40871
|
+
);
|
|
40872
|
+
|
|
40873
|
+
CREATE TABLE IF NOT EXISTS embedding_repair_backoff (
|
|
40874
|
+
memory_id TEXT NOT NULL,
|
|
40875
|
+
content_hash TEXT NOT NULL,
|
|
40876
|
+
model TEXT NOT NULL,
|
|
40877
|
+
attempts INTEGER NOT NULL DEFAULT 1 CHECK (attempts > 0),
|
|
40878
|
+
retry_at TEXT NOT NULL,
|
|
40879
|
+
updated_at TEXT NOT NULL,
|
|
40880
|
+
PRIMARY KEY (memory_id, content_hash, model)
|
|
40881
|
+
);
|
|
40882
|
+
CREATE INDEX IF NOT EXISTS idx_embedding_repair_backoff_retry
|
|
40883
|
+
ON embedding_repair_backoff(model, retry_at);
|
|
40884
|
+
|
|
40885
|
+
-- Backoff is derived state. Retire it when the source memory disappears
|
|
40886
|
+
-- or moves to a new hash so stale retry keys cannot accumulate forever.
|
|
40887
|
+
CREATE TRIGGER IF NOT EXISTS embedding_repair_backoff_memory_deleted
|
|
40888
|
+
AFTER DELETE ON memories BEGIN
|
|
40889
|
+
DELETE FROM embedding_repair_backoff WHERE memory_id = OLD.id;
|
|
40890
|
+
END;
|
|
40891
|
+
CREATE TRIGGER IF NOT EXISTS embedding_repair_backoff_content_hash_changed
|
|
40892
|
+
AFTER UPDATE OF content_hash ON memories
|
|
40893
|
+
WHEN OLD.content_hash IS NOT NEW.content_hash BEGIN
|
|
40894
|
+
DELETE FROM embedding_repair_backoff
|
|
40895
|
+
WHERE memory_id = OLD.id AND content_hash IS NOT NEW.content_hash;
|
|
40896
|
+
END;
|
|
40897
|
+
`);
|
|
40898
|
+
}
|
|
40859
40899
|
var MIGRATIONS = [
|
|
40860
40900
|
{
|
|
40861
40901
|
version: 1,
|
|
@@ -41892,6 +41932,12 @@ var MIGRATIONS = [
|
|
|
41892
41932
|
version: 129,
|
|
41893
41933
|
name: "retire-structural-jobs",
|
|
41894
41934
|
up: up129
|
|
41935
|
+
},
|
|
41936
|
+
{
|
|
41937
|
+
version: 130,
|
|
41938
|
+
name: "embedding-repair-state",
|
|
41939
|
+
up: up130,
|
|
41940
|
+
artifacts: { tables: ["embedding_repair_budget", "embedding_repair_backoff"] }
|
|
41895
41941
|
}
|
|
41896
41942
|
];
|
|
41897
41943
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
package/native-manifest.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.198.
|
|
3
|
+
"version": "0.198.2",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "b23911756b64552905361b34aebf1469fd0181b7426bc5aeec1acf291ce202d5",
|
|
9
|
+
"size": 125168800
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "57bbec1b64fd18e992cbaed5fbc421a827d6d31aeeedff616451df4c8bbe51c4",
|
|
15
|
+
"size": 130140736
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "966683c01bfc43be24dff48cfc6684611d0c1ae70c26cc3d6857421f2df403fd",
|
|
21
|
+
"size": 169719138
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "8338bc113bacdedb7f7b9744da7a187f55596b2d18bbbbbfa81027da646a6486",
|
|
27
|
+
"size": 172093720
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "867feedf67e9358ab359d98de3b989cdaca75159e3123613af427fa71d453f8f",
|
|
33
|
+
"size": 180219904
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.198.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.198.2.tar.gz",
|
|
39
|
+
"sha256": "c2ccd7a4d126fb628de12aa34779e3b2255e6930adbec9f720522a368ac4a4cd",
|
|
40
|
+
"size": 21621
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.198.
|
|
3
|
+
"version": "0.198.2",
|
|
4
4
|
"description": "Signet native CLI installer wrapper",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.2/signetai-darwin-arm64-0.198.2.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.2/signetai-darwin-x64-0.198.2.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.2/signetai-linux-arm64-0.198.2.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.2/signetai-linux-x64-0.198.2.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.198.2/signetai-win32-x64-0.198.2.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|