signetai 0.185.7 → 0.185.9
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/bin/launch.js +7 -1
- package/dist/mcp-stdio.js +18 -2
- package/native-manifest.json +13 -13
- package/package.json +6 -6
- package/scripts/install-native.js +8 -0
package/bin/launch.js
CHANGED
|
@@ -48,7 +48,13 @@ export function launchSignet() {
|
|
|
48
48
|
// doesn't carry inline. The env is only set when the wrapper actually
|
|
49
49
|
// has a runtime tree to share; the binary's own bootstrap can derive
|
|
50
50
|
// its own path otherwise.
|
|
51
|
-
const env = {
|
|
51
|
+
const env = {
|
|
52
|
+
...process.env,
|
|
53
|
+
SIGNET_WRAPPER_DIR: packageDir,
|
|
54
|
+
// The wrapper is the explicit package-manager distribution boundary.
|
|
55
|
+
// Preserve an operator override for source, container, or CI launches.
|
|
56
|
+
SIGNET_TELEMETRY_INSTALL_CHANNEL: process.env.SIGNET_TELEMETRY_INSTALL_CHANNEL ?? "package-manager",
|
|
57
|
+
};
|
|
52
58
|
if (!env.SIGNET_DIR && existsSync(join(packageDir, "runtime", "connectors"))) {
|
|
53
59
|
env.SIGNET_DIR = packageDir;
|
|
54
60
|
}
|
package/dist/mcp-stdio.js
CHANGED
|
@@ -47818,6 +47818,14 @@ function up118(db) {
|
|
|
47818
47818
|
WHERE status IN ('pending', 'leased');
|
|
47819
47819
|
`);
|
|
47820
47820
|
}
|
|
47821
|
+
function hasColumn22(db, table, column) {
|
|
47822
|
+
return db.prepare(`PRAGMA table_info(${table})`).all().some((row) => row.name === column);
|
|
47823
|
+
}
|
|
47824
|
+
function up119(db) {
|
|
47825
|
+
if (!hasColumn22(db, "telemetry_install", "last_seen_version")) {
|
|
47826
|
+
db.exec("ALTER TABLE telemetry_install ADD COLUMN last_seen_version TEXT");
|
|
47827
|
+
}
|
|
47828
|
+
}
|
|
47821
47829
|
var MIGRATIONS = [
|
|
47822
47830
|
{
|
|
47823
47831
|
version: 1,
|
|
@@ -48773,6 +48781,12 @@ var MIGRATIONS = [
|
|
|
48773
48781
|
version: 118,
|
|
48774
48782
|
name: "queue-pressure-indices",
|
|
48775
48783
|
up: up118
|
|
48784
|
+
},
|
|
48785
|
+
{
|
|
48786
|
+
version: 119,
|
|
48787
|
+
name: "telemetry-version-observation",
|
|
48788
|
+
up: up119,
|
|
48789
|
+
artifacts: { columns: [{ table: "telemetry_install", column: "last_seen_version" }] }
|
|
48776
48790
|
}
|
|
48777
48791
|
];
|
|
48778
48792
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -50902,7 +50916,9 @@ var DEFAULT_PIPELINE_V2 = {
|
|
|
50902
50916
|
flushIntervalMs: DEFAULT_TELEMETRY_FLUSH_INTERVAL_MS,
|
|
50903
50917
|
flushBatchSize: DEFAULT_TELEMETRY_FLUSH_BATCH_SIZE,
|
|
50904
50918
|
retentionDays: 90,
|
|
50905
|
-
memorySearchQaEnabled: false
|
|
50919
|
+
memorySearchQaEnabled: false,
|
|
50920
|
+
deploymentRole: "unknown",
|
|
50921
|
+
installChannel: "unknown"
|
|
50906
50922
|
},
|
|
50907
50923
|
embeddingTracker: {
|
|
50908
50924
|
enabled: true,
|
|
@@ -53265,7 +53281,7 @@ var reasonField = { reason: text.describe("Why this operation is being applied."
|
|
|
53265
53281
|
var DREAMING_ONTOLOGY_PAYLOAD_SCHEMAS = {
|
|
53266
53282
|
flag: payload({
|
|
53267
53283
|
subjectRef: text.describe("The flagged target, e.g. entity:<id>, aspect:<id>, attribute:<id>, link:<id>, or duplicate:<canonical name>."),
|
|
53268
|
-
details: exports_external.
|
|
53284
|
+
details: exports_external.object({}).catchall(exports_external.string()).describe("Inspection facts about the flagged target.").optional(),
|
|
53269
53285
|
priority: exports_external.number().finite().min(0).max(100).describe("Priority of the flag (0-100).").optional()
|
|
53270
53286
|
}),
|
|
53271
53287
|
decline_attention: payload({
|
package/native-manifest.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.185.
|
|
3
|
+
"version": "0.185.9",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "d4b7f954d4db99570fb3d3853c81b8767cef6ae4d0d182e36a387f74627ac713",
|
|
9
|
+
"size": 117655840
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "38fc7503a18ee4c1688059194b116fabcf8f3256b8c02d60acb574d73103bb55",
|
|
15
|
+
"size": 122276416
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "d8ae3b3559a0a85e2eddb5f999d3aa00e3f3b90d4d122e745b47abc262473ed0",
|
|
21
|
+
"size": 154881953
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "60d6b032171fe49ad481379e1a0d97f0784a1c9ca89ca4d91347533d74b050aa",
|
|
27
|
+
"size": 155440938
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "6a84e717108aee9c39207e2163c33bd1e67dc33f81d405da01ee5d8944f1bce3",
|
|
33
|
+
"size": 171573248
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.185.
|
|
39
|
-
"sha256": "
|
|
38
|
+
"url": "signet-connectors-0.185.9.tar.gz",
|
|
39
|
+
"sha256": "70d5945ee50fd851e4b02b96baf2e54c7a26b7515420ea58fe2e3c15bead2e0f",
|
|
40
40
|
"size": 16889
|
|
41
41
|
}
|
|
42
42
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.185.
|
|
3
|
+
"version": "0.185.9",
|
|
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.185.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.9/signetai-darwin-arm64-0.185.9.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.9/signetai-darwin-x64-0.185.9.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.9/signetai-linux-arm64-0.185.9.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.9/signetai-linux-x64-0.185.9.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.185.9/signetai-win32-x64-0.185.9.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -46,6 +46,12 @@ function telemetryReportedVersion(version) {
|
|
|
46
46
|
return `${version}-dev`;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
function telemetryDeploymentRole() {
|
|
50
|
+
if (telemetryDeployment() === "dev") return "development";
|
|
51
|
+
const role = process.env.SIGNET_TELEMETRY_DEPLOYMENT_ROLE?.trim().toLowerCase();
|
|
52
|
+
return ["personal", "service", "automation", "development", "ci", "unknown"].includes(role) ? role : "unknown";
|
|
53
|
+
}
|
|
54
|
+
|
|
49
55
|
function telemetryEnabled() {
|
|
50
56
|
if (process.env.SIGNET_TELEMETRY_OPTOUT === "1" || process.env.SIGNET_TELEMETRY_OPTOUT === "true") {
|
|
51
57
|
return false;
|
|
@@ -68,6 +74,8 @@ function fireInstallPing(platform) {
|
|
|
68
74
|
properties: {
|
|
69
75
|
version: telemetryReportedVersion(nativePackageVersion()),
|
|
70
76
|
platform,
|
|
77
|
+
deploymentRole: telemetryDeploymentRole(),
|
|
78
|
+
installChannel: "package-manager",
|
|
71
79
|
...(telemetryDeployment() ? { deployment: telemetryDeployment() } : {}),
|
|
72
80
|
$lib: "signet-install",
|
|
73
81
|
},
|