signetai 0.192.1 → 0.193.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/mcp-stdio.js +56 -0
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -40931,6 +40931,48 @@ 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
|
+
}
|
|
40958
|
+
function up124(db) {
|
|
40959
|
+
db.exec(`
|
|
40960
|
+
CREATE TABLE IF NOT EXISTS imported_source_lifecycle (
|
|
40961
|
+
id TEXT PRIMARY KEY,
|
|
40962
|
+
source_id TEXT NOT NULL,
|
|
40963
|
+
agent_id TEXT NOT NULL,
|
|
40964
|
+
status TEXT NOT NULL CHECK(status IN ('unsupported', 'reviewed')),
|
|
40965
|
+
reason TEXT NOT NULL,
|
|
40966
|
+
removed_at TEXT NOT NULL,
|
|
40967
|
+
reviewed_at TEXT,
|
|
40968
|
+
created_at TEXT NOT NULL,
|
|
40969
|
+
updated_at TEXT NOT NULL,
|
|
40970
|
+
UNIQUE(source_id, agent_id)
|
|
40971
|
+
);
|
|
40972
|
+
CREATE INDEX IF NOT EXISTS idx_imported_source_lifecycle_agent
|
|
40973
|
+
ON imported_source_lifecycle(agent_id, status, updated_at DESC);
|
|
40974
|
+
`);
|
|
40975
|
+
}
|
|
40934
40976
|
var MIGRATIONS = [
|
|
40935
40977
|
{
|
|
40936
40978
|
version: 1,
|
|
@@ -41925,6 +41967,20 @@ var MIGRATIONS = [
|
|
|
41925
41967
|
{ table: "dreaming_evidence_exclusions", column: "last_requeued_at" }
|
|
41926
41968
|
]
|
|
41927
41969
|
}
|
|
41970
|
+
},
|
|
41971
|
+
{
|
|
41972
|
+
version: 123,
|
|
41973
|
+
name: "embedding-index-failures",
|
|
41974
|
+
up: up123,
|
|
41975
|
+
artifacts: { tables: ["embedding_index_failures"] }
|
|
41976
|
+
},
|
|
41977
|
+
{
|
|
41978
|
+
version: 124,
|
|
41979
|
+
name: "import-derived-lifecycle",
|
|
41980
|
+
up: up124,
|
|
41981
|
+
artifacts: {
|
|
41982
|
+
tables: ["imported_source_lifecycle"]
|
|
41983
|
+
}
|
|
41928
41984
|
}
|
|
41929
41985
|
];
|
|
41930
41986
|
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.
|
|
3
|
+
"version": "0.193.0",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "5650215d97a506f75ff8671e9ceea928f67f36cd575520ed49d9018c5d433c19",
|
|
9
|
+
"size": 124541344
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "2940b454dec1cbc96a170caf6cc24ab29844f49852c6c16cfa92ce908ef9c81d",
|
|
15
|
+
"size": 129518144
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "f7cbe63ae54699a42d36527c83f79bd98256a91f219453666583221666d8e1d0",
|
|
21
|
+
"size": 169087440
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "bfb81054560f63d3a145bffc9ed68cf2b307190a65619e7e8f9abc0526acf43f",
|
|
27
|
+
"size": 171462022
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "946d00cce4ceffccca47ad9460315e9ff29efc8d47b79a5ce2e60be3c8a31eaf",
|
|
33
|
+
"size": 179587584
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.193.0.tar.gz",
|
|
39
|
+
"sha256": "bb28bf48f13daeb6334c9ba3299d1adcc0b3ffa3fe34116c611cb341057cc08d",
|
|
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.
|
|
3
|
+
"version": "0.193.0",
|
|
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.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-darwin-arm64-0.193.0.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-darwin-x64-0.193.0.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-linux-arm64-0.193.0.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-linux-x64-0.193.0.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-win32-x64-0.193.0.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|