signetai 0.196.0 → 0.196.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 +17 -0
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -40792,6 +40792,18 @@ function up127(db) {
|
|
|
40792
40792
|
ON ontology_contradictions(agent_id, left_source_id, right_source_id);
|
|
40793
40793
|
`);
|
|
40794
40794
|
}
|
|
40795
|
+
function up128(db) {
|
|
40796
|
+
db.exec(`
|
|
40797
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_status_created_at
|
|
40798
|
+
ON memory_jobs(status, created_at)
|
|
40799
|
+
WHERE job_type <> 'extract';
|
|
40800
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_error_updated_at
|
|
40801
|
+
ON memory_jobs(updated_at DESC)
|
|
40802
|
+
WHERE status IN ('pending', 'leased', 'dead')
|
|
40803
|
+
AND job_type <> 'extract'
|
|
40804
|
+
AND error IS NOT NULL;
|
|
40805
|
+
`);
|
|
40806
|
+
}
|
|
40795
40807
|
var MIGRATIONS = [
|
|
40796
40808
|
{
|
|
40797
40809
|
version: 1,
|
|
@@ -41818,6 +41830,11 @@ var MIGRATIONS = [
|
|
|
41818
41830
|
name: "ontology-contradictions",
|
|
41819
41831
|
up: up127,
|
|
41820
41832
|
artifacts: { tables: ["ontology_contradictions"] }
|
|
41833
|
+
},
|
|
41834
|
+
{
|
|
41835
|
+
version: 128,
|
|
41836
|
+
name: "bounded-queue-diagnostics",
|
|
41837
|
+
up: up128
|
|
41821
41838
|
}
|
|
41822
41839
|
];
|
|
41823
41840
|
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.196.
|
|
3
|
+
"version": "0.196.2",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "9813c20138c4df680309be0361ece79f04c34530edd65d6ba4769b13321bb0b2",
|
|
9
|
+
"size": 125036704
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "7554766ead6d40519988abd17f603250f7cd2ea5093c34a15d1c600037a63837",
|
|
15
|
+
"size": 130009664
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "2f59747908607db5a65433ddaf387d7e5cc06cd240f1f9531c967f0af282979f",
|
|
21
|
+
"size": 169577745
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "8ca4c30f49aff2a1a76f75b4583e610f13449d2c1f1d8c50ea330f5629a534e8",
|
|
27
|
+
"size": 171952327
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "534080366649c994a73b83de1327787231e2dd74178cab084a09e9a0e95fbf9e",
|
|
33
|
+
"size": 180078592
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.196.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.196.2.tar.gz",
|
|
39
|
+
"sha256": "47b129ff01f83cf6eb5eabc0ccb00593581ab6e00c6918aa4f2d85a5d8b6e7e7",
|
|
40
|
+
"size": 21672
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.196.
|
|
3
|
+
"version": "0.196.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.196.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.2/signetai-darwin-arm64-0.196.2.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.2/signetai-darwin-x64-0.196.2.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.2/signetai-linux-arm64-0.196.2.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.2/signetai-linux-x64-0.196.2.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.196.2/signetai-win32-x64-0.196.2.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|