signetai 0.167.0 → 0.168.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 +31 -0
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -47370,6 +47370,23 @@ function up106(db) {
|
|
|
47370
47370
|
}
|
|
47371
47371
|
db.exec("CREATE INDEX IF NOT EXISTS idx_memories_review_after ON memories(review_after);");
|
|
47372
47372
|
}
|
|
47373
|
+
function hasColumn18(db, table, column) {
|
|
47374
|
+
return db.prepare(`PRAGMA table_info(${table})`).all().some((row) => row.name === column);
|
|
47375
|
+
}
|
|
47376
|
+
var TOKEN_COLUMNS = [
|
|
47377
|
+
["tokens_input", "INTEGER"],
|
|
47378
|
+
["tokens_output", "INTEGER"],
|
|
47379
|
+
["tokens_cache_read", "INTEGER"],
|
|
47380
|
+
["tokens_cache_write", "INTEGER"],
|
|
47381
|
+
["tokens_cost", "REAL"]
|
|
47382
|
+
];
|
|
47383
|
+
function up107(db) {
|
|
47384
|
+
for (const [column, type] of TOKEN_COLUMNS) {
|
|
47385
|
+
if (!hasColumn18(db, "dreaming_passes", column)) {
|
|
47386
|
+
db.exec(`ALTER TABLE dreaming_passes ADD COLUMN ${column} ${type};`);
|
|
47387
|
+
}
|
|
47388
|
+
}
|
|
47389
|
+
}
|
|
47373
47390
|
var MIGRATIONS = [
|
|
47374
47391
|
{
|
|
47375
47392
|
version: 1,
|
|
@@ -48210,6 +48227,20 @@ var MIGRATIONS = [
|
|
|
48210
48227
|
artifacts: {
|
|
48211
48228
|
columns: [{ table: "memories", column: "review_after" }]
|
|
48212
48229
|
}
|
|
48230
|
+
},
|
|
48231
|
+
{
|
|
48232
|
+
version: 107,
|
|
48233
|
+
name: "dreaming-pass-usage",
|
|
48234
|
+
up: up107,
|
|
48235
|
+
artifacts: {
|
|
48236
|
+
columns: [
|
|
48237
|
+
{ table: "dreaming_passes", column: "tokens_input" },
|
|
48238
|
+
{ table: "dreaming_passes", column: "tokens_output" },
|
|
48239
|
+
{ table: "dreaming_passes", column: "tokens_cache_read" },
|
|
48240
|
+
{ table: "dreaming_passes", column: "tokens_cache_write" },
|
|
48241
|
+
{ table: "dreaming_passes", column: "tokens_cost" }
|
|
48242
|
+
]
|
|
48243
|
+
}
|
|
48213
48244
|
}
|
|
48214
48245
|
];
|
|
48215
48246
|
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.168.0",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "736f1afe8024274127409fc99f12b912e138b2b869aae7fff7ce3fe35b26d0cd",
|
|
9
|
+
"size": 116995360
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "10c1502f4ccfbc959bc403b709ef1f4fbda23c207e48fd987b8b5282cc12bb70",
|
|
15
|
+
"size": 121621056
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "1a3c0301b616d145c87a0c52c9ccd1b393e02f01075b3fd5d796b2964217fd42",
|
|
21
|
+
"size": 154234480
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "6908c39caa7d3a752a50bbb61f6500d784848c27268193ea5cf0ea65ee5b93de",
|
|
27
|
+
"size": 154793465
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "bfe5abdbd9e0f8fb166a60a905fee897d48d8812c1594f0284d25755bf85b9bb",
|
|
33
|
+
"size": 170926592
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.168.0.tar.gz",
|
|
39
|
+
"sha256": "4c7b7ff1cd7de1d51e3131cd73e7d6ca3e635814a6810d21ffdd8dd32dac1789",
|
|
40
|
+
"size": 16242
|
|
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.168.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.168.0/signetai-darwin-arm64-0.168.0.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.168.0/signetai-darwin-x64-0.168.0.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.168.0/signetai-linux-arm64-0.168.0.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.168.0/signetai-linux-x64-0.168.0.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.168.0/signetai-win32-x64-0.168.0.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|