signetai 0.145.10 → 0.146.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 +30 -0
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -38099,6 +38099,25 @@ function up81(db) {
|
|
|
38099
38099
|
ON aggregate_evidence_sources(source_kind, source_id);
|
|
38100
38100
|
`);
|
|
38101
38101
|
}
|
|
38102
|
+
function hasColumn11(db, table, column) {
|
|
38103
|
+
const rows = db.prepare(`PRAGMA table_info(${table})`).all();
|
|
38104
|
+
return rows.some((row) => row.name === column);
|
|
38105
|
+
}
|
|
38106
|
+
var COLUMNS = ["harness", "session_id", "tool_use_id", "cwd", "origin", "args"];
|
|
38107
|
+
function up82(db) {
|
|
38108
|
+
for (const column of COLUMNS) {
|
|
38109
|
+
if (!hasColumn11(db, "skill_invocations", column)) {
|
|
38110
|
+
db.exec(`ALTER TABLE skill_invocations ADD COLUMN ${column} TEXT`);
|
|
38111
|
+
}
|
|
38112
|
+
}
|
|
38113
|
+
db.exec("DROP INDEX IF EXISTS idx_skill_inv_dedupe");
|
|
38114
|
+
db.exec(`
|
|
38115
|
+
CREATE UNIQUE INDEX idx_skill_inv_dedupe
|
|
38116
|
+
ON skill_invocations(agent_id, harness, session_id, tool_use_id)
|
|
38117
|
+
WHERE harness IS NOT NULL AND session_id IS NOT NULL AND tool_use_id IS NOT NULL
|
|
38118
|
+
`);
|
|
38119
|
+
db.exec("CREATE INDEX IF NOT EXISTS idx_skill_inv_harness ON skill_invocations(harness, created_at)");
|
|
38120
|
+
}
|
|
38102
38121
|
var MIGRATIONS = [
|
|
38103
38122
|
{
|
|
38104
38123
|
version: 1,
|
|
@@ -38752,6 +38771,17 @@ var MIGRATIONS = [
|
|
|
38752
38771
|
artifacts: {
|
|
38753
38772
|
tables: ["aggregate_evidence_sources"]
|
|
38754
38773
|
}
|
|
38774
|
+
},
|
|
38775
|
+
{
|
|
38776
|
+
version: 82,
|
|
38777
|
+
name: "skill-invocations-harness",
|
|
38778
|
+
up: up82,
|
|
38779
|
+
artifacts: {
|
|
38780
|
+
columns: [
|
|
38781
|
+
{ table: "skill_invocations", column: "harness" },
|
|
38782
|
+
{ table: "skill_invocations", column: "tool_use_id" }
|
|
38783
|
+
]
|
|
38784
|
+
}
|
|
38755
38785
|
}
|
|
38756
38786
|
];
|
|
38757
38787
|
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.146.0",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "68cd926bf0a7a12d2783d1c4f6e1f7eaa32890ce4503264a4e9621e892e7be14",
|
|
9
|
+
"size": 126720928
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "cb3b502ecfe6c0d7fc46eb11104442a57d82099fa416bd6df69a5776fb88b712",
|
|
15
|
+
"size": 131271232
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "4aba6f76ed30aa227ec3a0b247f3b49b3e9b99ab6c6e329b29b83018d410f7ca",
|
|
21
|
+
"size": 164038355
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "97022865456a0a51460d7f6c80295f87156e0079e79435117bd284aceb52de38",
|
|
27
|
+
"size": 164552009
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "f7e50ceaf64702de2e2f5ce2a7b7b0e07fc6c00790e732076f06b7e694677e8c",
|
|
33
|
+
"size": 180616704
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.146.0.tar.gz",
|
|
39
|
+
"sha256": "b8cf2ff12bbf0e5614602bfca29b26304fa9426cf6446adac1a40f52345bb350",
|
|
40
|
+
"size": 15373
|
|
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.146.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.146.0/signetai-darwin-arm64-0.146.0.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.146.0/signetai-darwin-x64-0.146.0.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.146.0/signetai-linux-arm64-0.146.0.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.146.0/signetai-linux-x64-0.146.0.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.146.0/signetai-win32-x64-0.146.0.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|