signetai 0.200.2 → 0.200.4
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 +20 -20
- package/native-manifest.json +12 -12
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -29393,11 +29393,11 @@ import { homedir as homedir2 } from "os";
|
|
|
29393
29393
|
import { join as join2 } from "path";
|
|
29394
29394
|
import { createRequire as createRequire2 } from "node:module";
|
|
29395
29395
|
import { existsSync as existsSync5, mkdirSync as mkdirSync3, readFileSync as readFileSync4, renameSync as renameSync2, rmSync as rmSync2, writeFileSync as writeFileSync2 } from "node:fs";
|
|
29396
|
-
import { homedir as
|
|
29397
|
-
import { dirname as
|
|
29398
|
-
import { homedir as
|
|
29399
|
-
import { basename, dirname as
|
|
29400
|
-
import { homedir as
|
|
29396
|
+
import { homedir as homedir5 } from "node:os";
|
|
29397
|
+
import { dirname as dirname4, join as join7, resolve as resolve2 } from "node:path";
|
|
29398
|
+
import { homedir as homedir6, platform as platform2 } from "node:os";
|
|
29399
|
+
import { basename, dirname as dirname5, resolve as resolve4 } from "node:path";
|
|
29400
|
+
import { homedir as homedir10 } from "node:os";
|
|
29401
29401
|
var __create2 = Object.create;
|
|
29402
29402
|
var __getProtoOf2 = Object.getPrototypeOf;
|
|
29403
29403
|
var __defProp2 = Object.defineProperty;
|
|
@@ -42078,9 +42078,9 @@ var SIGNET_GRAPHIQ_PLUGIN_ID = "signet.graphiq";
|
|
|
42078
42078
|
var SIGNET_PLUGIN_REGISTRY_DIR = ".daemon/plugins";
|
|
42079
42079
|
var SIGNET_PLUGIN_REGISTRY_FILE = "registry-v1.json";
|
|
42080
42080
|
var SIGNET_GRAPHIQ_STATE_FILE = ".daemon/graphiq/state.json";
|
|
42081
|
-
var GRAPHIQ_DEFAULT_INSTALL_DIR =
|
|
42081
|
+
var GRAPHIQ_DEFAULT_INSTALL_DIR = join7(homedir5(), ".local", "bin");
|
|
42082
42082
|
function getGraphiqStatePath(basePath) {
|
|
42083
|
-
return
|
|
42083
|
+
return join7(basePath, SIGNET_GRAPHIQ_STATE_FILE);
|
|
42084
42084
|
}
|
|
42085
42085
|
function emptyGraphiqState(now = new Date) {
|
|
42086
42086
|
return {
|
|
@@ -42208,11 +42208,11 @@ var VALID_GITHUB_RESOURCE_TYPES = new Set(DEFAULT_GITHUB_RESOURCE_TYPES);
|
|
|
42208
42208
|
function defaultDiscordDesktopCachePath() {
|
|
42209
42209
|
switch (platform2()) {
|
|
42210
42210
|
case "darwin":
|
|
42211
|
-
return resolve4(
|
|
42211
|
+
return resolve4(homedir6(), "Library", "Application Support", "discord");
|
|
42212
42212
|
case "win32":
|
|
42213
|
-
return resolve4(process.env.APPDATA || resolve4(
|
|
42213
|
+
return resolve4(process.env.APPDATA || resolve4(homedir6(), "AppData", "Roaming"), "discord");
|
|
42214
42214
|
default:
|
|
42215
|
-
return resolve4(process.env.XDG_CONFIG_HOME || resolve4(
|
|
42215
|
+
return resolve4(process.env.XDG_CONFIG_HOME || resolve4(homedir6(), ".config"), "discord");
|
|
42216
42216
|
}
|
|
42217
42217
|
}
|
|
42218
42218
|
var IDENTITY_FILES = {
|
|
@@ -42270,7 +42270,7 @@ var IDENTITY_FILES = {
|
|
|
42270
42270
|
};
|
|
42271
42271
|
var REQUIRED_IDENTITY_KEYS = Object.entries(IDENTITY_FILES).filter(([, spec]) => !spec.optional).map(([key]) => key);
|
|
42272
42272
|
var OPTIONAL_IDENTITY_KEYS = Object.entries(IDENTITY_FILES).filter(([, spec]) => spec.optional).map(([key]) => key);
|
|
42273
|
-
var home =
|
|
42273
|
+
var home = homedir10();
|
|
42274
42274
|
var SOURCE_NATIVE_TOPOLOGY_ENTITY_TYPES = [
|
|
42275
42275
|
"source_document",
|
|
42276
42276
|
"source_folder",
|
|
@@ -49312,16 +49312,16 @@ import {
|
|
|
49312
49312
|
unlinkSync as unlinkSync3,
|
|
49313
49313
|
writeFileSync
|
|
49314
49314
|
} from "node:fs";
|
|
49315
|
-
import { join as
|
|
49315
|
+
import { join as join8 } from "node:path";
|
|
49316
49316
|
|
|
49317
49317
|
// ../../platform/daemon/src/plugins/audit.ts
|
|
49318
49318
|
import { appendFileSync as appendFileSync2, existsSync as existsSync4, mkdirSync as mkdirSync4, readFileSync as readFileSync3 } from "node:fs";
|
|
49319
|
-
import { dirname as
|
|
49319
|
+
import { dirname as dirname3, join as join6 } from "node:path";
|
|
49320
49320
|
var SENSITIVE_KEY_RE = /(^|[_-])(api-key|apikey|auth-token|authorization|bearer|client-secret|credential|credentials|password|private-key|refresh-token|secret|secret-value|token|value)([_-]|$)/i;
|
|
49321
49321
|
var SENSITIVE_ASSIGNMENT_RE = /\b((?:access[_-]?token|api[_-]?key|auth(?:orization)?|bearer|client[_-]?secret|credential|password|refresh[_-]?token|secret|token)\s*[:=]\s*)(["']?)([^"'\s,;&]+)/gi;
|
|
49322
49322
|
var KNOWN_SECRET_VALUE_RE = /\b(AKIA[0-9A-Z]{16}|github_pat_[A-Za-z0-9_]{20,}|gh[pousr]_[A-Za-z0-9_]{20,}|sk-[A-Za-z0-9_-]{12,}|xox[baprs]-[A-Za-z0-9-]{10,})\b/g;
|
|
49323
49323
|
function getDefaultPluginAuditPath() {
|
|
49324
|
-
return
|
|
49324
|
+
return join6(resolveDefaultBasePath(), ".daemon", "plugins", "audit-v1.ndjson");
|
|
49325
49325
|
}
|
|
49326
49326
|
function recordPluginAuditEvent(input, auditPath) {
|
|
49327
49327
|
if (auditPath === null)
|
|
@@ -49338,7 +49338,7 @@ function recordPluginAuditEvent(input, auditPath) {
|
|
|
49338
49338
|
data: sanitizeAuditData(input.data ?? {})
|
|
49339
49339
|
};
|
|
49340
49340
|
try {
|
|
49341
|
-
mkdirSync4(
|
|
49341
|
+
mkdirSync4(dirname3(path), { recursive: true });
|
|
49342
49342
|
appendFileSync2(path, `${JSON.stringify(event)}
|
|
49343
49343
|
`, { mode: 384 });
|
|
49344
49344
|
} catch (err) {
|
|
@@ -49684,10 +49684,10 @@ function getAgentsDir2() {
|
|
|
49684
49684
|
return resolveDefaultBasePath();
|
|
49685
49685
|
}
|
|
49686
49686
|
function getSecretsDir() {
|
|
49687
|
-
return
|
|
49687
|
+
return join8(getAgentsDir2(), ".secrets");
|
|
49688
49688
|
}
|
|
49689
49689
|
function getSecretsFile() {
|
|
49690
|
-
return
|
|
49690
|
+
return join8(getSecretsDir(), "secrets.enc");
|
|
49691
49691
|
}
|
|
49692
49692
|
var DEFAULT_SECRET_EXEC_TIMEOUT_MS = 5 * 60000;
|
|
49693
49693
|
var MAX_SECRET_EXEC_TIMEOUT_MS = 30 * 60000;
|
|
@@ -49722,7 +49722,7 @@ function cleanupStaleSecretStoreTemps() {
|
|
|
49722
49722
|
if (!name.startsWith(SECRET_STORE_TEMP_PREFIX) || isSecretStoreTempProcessLive(name))
|
|
49723
49723
|
continue;
|
|
49724
49724
|
try {
|
|
49725
|
-
unlinkSync3(
|
|
49725
|
+
unlinkSync3(join8(dir, name));
|
|
49726
49726
|
} catch {}
|
|
49727
49727
|
}
|
|
49728
49728
|
}
|
|
@@ -49995,7 +49995,7 @@ var signetGraphiqManifest = {
|
|
|
49995
49995
|
|
|
49996
49996
|
// ../../platform/daemon/src/plugins/host.ts
|
|
49997
49997
|
import { existsSync as existsSync8, mkdirSync as mkdirSync7, readFileSync as readFileSync7, writeFileSync as writeFileSync3 } from "node:fs";
|
|
49998
|
-
import { dirname as
|
|
49998
|
+
import { dirname as dirname6, join as join10 } from "node:path";
|
|
49999
49999
|
|
|
50000
50000
|
// ../../platform/daemon/src/plugins/manifest.ts
|
|
50001
50001
|
var PLUGIN_ID_RE = /^[a-z][a-z0-9-]*(\.[a-z][a-z0-9-]*)+$/;
|
|
@@ -50371,7 +50371,7 @@ class PluginHostV1 {
|
|
|
50371
50371
|
});
|
|
50372
50372
|
return;
|
|
50373
50373
|
}
|
|
50374
|
-
mkdirSync7(
|
|
50374
|
+
mkdirSync7(dirname6(this.storagePath), { recursive: true });
|
|
50375
50375
|
writeFileSync3(this.storagePath, `${JSON.stringify(this.store, null, 2)}
|
|
50376
50376
|
`, { mode: 384 });
|
|
50377
50377
|
}
|
package/native-manifest.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.200.
|
|
3
|
+
"version": "0.200.4",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
8
|
+
"sha256": "b02997e864e51bab153da367e8fe16865479ea5c9559717ee929297ea2d201a4",
|
|
9
9
|
"size": 125317408
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
14
|
+
"sha256": "0b8ad3f724ffd81e634c65b85ba70f4405e376aa1d84839d4c3b1c0fc6b49d6a",
|
|
15
15
|
"size": 130288192
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "efd4ea07438f1ab37707ccfe2ca84827034f4fec790db761d45a5d8a11b84477",
|
|
21
|
+
"size": 169863801
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "5438cac3ad30af90cff839c0292c8892e9636e93f8f4382d70cfc4827e41a0ad",
|
|
27
|
+
"size": 172238383
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "7f498ee9902c80dc763a4889aecca4087f18e1738b98e3b31e6f473c77fe26d9",
|
|
33
|
+
"size": 180364800
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.200.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.200.4.tar.gz",
|
|
39
|
+
"sha256": "8227f1b443f00f74f47c2f04c01b1bba78df9261a3aa203ae9779b1a504baf9d",
|
|
40
|
+
"size": 21670
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.200.
|
|
3
|
+
"version": "0.200.4",
|
|
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.200.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.4/signetai-darwin-arm64-0.200.4.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.4/signetai-darwin-x64-0.200.4.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.4/signetai-linux-arm64-0.200.4.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.4/signetai-linux-x64-0.200.4.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.200.4/signetai-win32-x64-0.200.4.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|