signetai 0.192.0 → 0.192.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 +30 -0
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -40931,6 +40931,30 @@ function up122(db) {
|
|
|
40931
40931
|
}
|
|
40932
40932
|
db.exec("CREATE INDEX IF NOT EXISTS idx_dreaming_evidence_exclusions_retry ON dreaming_evidence_exclusions (resolved_at, requeue_requested_at, failure_class, retry_count, last_requeued_at)");
|
|
40933
40933
|
}
|
|
40934
|
+
function up123(db) {
|
|
40935
|
+
db.exec(`
|
|
40936
|
+
CREATE TABLE IF NOT EXISTS embedding_index_failures (
|
|
40937
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
40938
|
+
content_hash TEXT NOT NULL,
|
|
40939
|
+
source_type TEXT NOT NULL,
|
|
40940
|
+
source_id TEXT NOT NULL,
|
|
40941
|
+
agent_id TEXT,
|
|
40942
|
+
target_fingerprint TEXT NOT NULL,
|
|
40943
|
+
provider TEXT NOT NULL,
|
|
40944
|
+
model TEXT NOT NULL,
|
|
40945
|
+
failure_class TEXT NOT NULL CHECK (failure_class IN ('context_limit', 'invalid_input')),
|
|
40946
|
+
attempts INTEGER NOT NULL DEFAULT 1,
|
|
40947
|
+
retry_policy TEXT NOT NULL DEFAULT 'quarantined',
|
|
40948
|
+
first_failed_at TEXT NOT NULL,
|
|
40949
|
+
last_failed_at TEXT NOT NULL,
|
|
40950
|
+
UNIQUE(content_hash, target_fingerprint)
|
|
40951
|
+
);
|
|
40952
|
+
CREATE INDEX IF NOT EXISTS idx_embedding_index_failures_target
|
|
40953
|
+
ON embedding_index_failures(target_fingerprint, failure_class, last_failed_at);
|
|
40954
|
+
CREATE INDEX IF NOT EXISTS idx_embedding_index_failures_source
|
|
40955
|
+
ON embedding_index_failures(source_type, source_id);
|
|
40956
|
+
`);
|
|
40957
|
+
}
|
|
40934
40958
|
var MIGRATIONS = [
|
|
40935
40959
|
{
|
|
40936
40960
|
version: 1,
|
|
@@ -41925,6 +41949,12 @@ var MIGRATIONS = [
|
|
|
41925
41949
|
{ table: "dreaming_evidence_exclusions", column: "last_requeued_at" }
|
|
41926
41950
|
]
|
|
41927
41951
|
}
|
|
41952
|
+
},
|
|
41953
|
+
{
|
|
41954
|
+
version: 123,
|
|
41955
|
+
name: "embedding-index-failures",
|
|
41956
|
+
up: up123,
|
|
41957
|
+
artifacts: { tables: ["embedding_index_failures"] }
|
|
41928
41958
|
}
|
|
41929
41959
|
];
|
|
41930
41960
|
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.192.
|
|
3
|
+
"version": "0.192.2",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "ae21369cf1efe9f1a55945845bffee6260a715f47cc88271c6522715b71a28b2",
|
|
9
|
+
"size": 117556768
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "9c45b54da4a88679bd0d70e4442dcea3f69e91abbc3a80790d07aa0456d564fa",
|
|
15
|
+
"size": 122178112
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "d5a137fe406dded464531d6d1701b3f5d3303ebbc4e0040aab1bdd5f53ca94f7",
|
|
21
|
+
"size": 154790707
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "c479cc2df1c2904222ff935a3658e8420249de703832992d154d19d8a38a2089",
|
|
27
|
+
"size": 155349692
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "b6f912b74bc115fac84b205a9aaa801b9509b8c362dd907969e6336b807234e8",
|
|
33
|
+
"size": 171482112
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.192.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.192.2.tar.gz",
|
|
39
|
+
"sha256": "d2aa40da715273f718795cb9e9f2064c203253fba92c6fb244dd525b8eae0c15",
|
|
40
|
+
"size": 16887
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.192.
|
|
3
|
+
"version": "0.192.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.192.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-darwin-arm64-0.192.2.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-darwin-x64-0.192.2.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-linux-arm64-0.192.2.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-linux-x64-0.192.2.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-win32-x64-0.192.2.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|