signetai 0.219.4 → 0.219.6
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 +62 -13
- package/native-manifest.json +14 -14
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -21257,14 +21257,20 @@ var init_zod = __esm(() => {
|
|
|
21257
21257
|
|
|
21258
21258
|
// ../../platform/core/dist/index.js
|
|
21259
21259
|
import { createRequire } from "node:module";
|
|
21260
|
-
import { execFileSync as execFileSync2 } from "node:child_process";
|
|
21261
21260
|
import { existsSync, readdirSync } from "node:fs";
|
|
21262
21261
|
import { homedir } from "node:os";
|
|
21263
21262
|
import { dirname, join } from "node:path";
|
|
21264
21263
|
import { arch, platform } from "node:process";
|
|
21265
21264
|
import { fileURLToPath } from "node:url";
|
|
21265
|
+
import {
|
|
21266
|
+
execFile as nodeExecFile,
|
|
21267
|
+
execFileSync as nodeExecFileSync,
|
|
21268
|
+
execSync as nodeExecSync,
|
|
21269
|
+
spawn as nodeSpawn,
|
|
21270
|
+
spawnSync as nodeSpawnSync
|
|
21271
|
+
} from "node:child_process";
|
|
21272
|
+
import { promisify } from "node:util";
|
|
21266
21273
|
import { createHash } from "node:crypto";
|
|
21267
|
-
import { execFileSync } from "node:child_process";
|
|
21268
21274
|
import { statfsSync } from "node:fs";
|
|
21269
21275
|
import { existsSync as existsSync2, readFileSync } from "node:fs";
|
|
21270
21276
|
import { homedir as homedir2 } from "node:os";
|
|
@@ -21285,7 +21291,6 @@ import {
|
|
|
21285
21291
|
writeFileSync as writeFileSync2
|
|
21286
21292
|
} from "node:fs";
|
|
21287
21293
|
import { join as join4 } from "node:path";
|
|
21288
|
-
import { execFileSync as execFileSync3 } from "node:child_process";
|
|
21289
21294
|
import { createHash as createHash2 } from "node:crypto";
|
|
21290
21295
|
import { createRequire as createRequire2 } from "node:module";
|
|
21291
21296
|
import {
|
|
@@ -25009,6 +25014,40 @@ function buildRememberRequestBody(content, options = {}) {
|
|
|
25009
25014
|
source: options.source
|
|
25010
25015
|
});
|
|
25011
25016
|
}
|
|
25017
|
+
function withWindowsHide(options) {
|
|
25018
|
+
return {
|
|
25019
|
+
...options ?? {},
|
|
25020
|
+
windowsHide: options?.windowsHide ?? true
|
|
25021
|
+
};
|
|
25022
|
+
}
|
|
25023
|
+
function isOptions(value) {
|
|
25024
|
+
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
25025
|
+
}
|
|
25026
|
+
function withWindowsHideArgument(args, firstOptionIndex) {
|
|
25027
|
+
const normalized = [...args];
|
|
25028
|
+
const optionIndex = normalized.findIndex((value, index) => index >= firstOptionIndex && isOptions(value));
|
|
25029
|
+
if (optionIndex >= 0) {
|
|
25030
|
+
normalized[optionIndex] = withWindowsHide(normalized[optionIndex]);
|
|
25031
|
+
return normalized;
|
|
25032
|
+
}
|
|
25033
|
+
const placeholderIndex = normalized.findIndex((value, index) => index >= firstOptionIndex && (value === undefined || value === null));
|
|
25034
|
+
if (placeholderIndex >= 0) {
|
|
25035
|
+
normalized[placeholderIndex] = withWindowsHide(undefined);
|
|
25036
|
+
return normalized;
|
|
25037
|
+
}
|
|
25038
|
+
const callbackIndex = normalized.findIndex((value, index) => index >= firstOptionIndex && typeof value === "function");
|
|
25039
|
+
normalized.splice(callbackIndex >= 0 ? callbackIndex : normalized.length, 0, { windowsHide: true });
|
|
25040
|
+
return normalized;
|
|
25041
|
+
}
|
|
25042
|
+
function withSpawnDefaults(options) {
|
|
25043
|
+
if (options?.shell !== undefined && options.shell !== false) {
|
|
25044
|
+
throw new TypeError("spawnHidden does not allow shell execution");
|
|
25045
|
+
}
|
|
25046
|
+
return {
|
|
25047
|
+
...withWindowsHide(options),
|
|
25048
|
+
shell: false
|
|
25049
|
+
};
|
|
25050
|
+
}
|
|
25012
25051
|
function matchHasDefensiveContext(content, match) {
|
|
25013
25052
|
if (!match || !match[0])
|
|
25014
25053
|
return false;
|
|
@@ -30400,7 +30439,7 @@ function detectFilesystemType(path, opts) {
|
|
|
30400
30439
|
}
|
|
30401
30440
|
} catch {}
|
|
30402
30441
|
try {
|
|
30403
|
-
const output = opts?.statCommand?.(path) ??
|
|
30442
|
+
const output = opts?.statCommand?.(path) ?? execFileSyncHidden("/usr/bin/stat", ["-f", "%T", path], { encoding: "utf8" });
|
|
30404
30443
|
const filesystemType = output.trim();
|
|
30405
30444
|
return filesystemType.length > 0 ? filesystemType : null;
|
|
30406
30445
|
} catch {
|
|
@@ -30436,10 +30475,9 @@ function findNpmGlobalRoot() {
|
|
|
30436
30475
|
return cachedNpmGlobalRoot;
|
|
30437
30476
|
try {
|
|
30438
30477
|
const command = platform === "win32" ? "npm.cmd" : "npm";
|
|
30439
|
-
const root =
|
|
30478
|
+
const root = execFileSyncHidden(command, ["root", "-g"], {
|
|
30440
30479
|
encoding: "utf8",
|
|
30441
|
-
timeout: 3000
|
|
30442
|
-
windowsHide: true
|
|
30480
|
+
timeout: 3000
|
|
30443
30481
|
}).trim();
|
|
30444
30482
|
cachedNpmGlobalRoot = root || null;
|
|
30445
30483
|
} catch {
|
|
@@ -30609,7 +30647,7 @@ function linuxKeyringAvailable() {
|
|
|
30609
30647
|
};
|
|
30610
30648
|
}
|
|
30611
30649
|
try {
|
|
30612
|
-
|
|
30650
|
+
execFileSyncHidden("busctl", ["--user", "status", "org.freedesktop.secrets"], {
|
|
30613
30651
|
stdio: "ignore",
|
|
30614
30652
|
timeout: 1000
|
|
30615
30653
|
});
|
|
@@ -31318,7 +31356,11 @@ var __create2, __getProtoOf2, __defProp2, __getOwnPropNames2, __hasOwnProp2, __t
|
|
|
31318
31356
|
configurable: true,
|
|
31319
31357
|
set: __exportSetter2.bind(all, name)
|
|
31320
31358
|
});
|
|
31321
|
-
}, __esm2 = (fn, res) => () => (fn && (res = fn(fn = 0)), res), __require, require_identity, require_visit, require_directives, require_anchors, require_applyReviver, require_toJS, require_Node, require_Alias, require_Scalar, require_createNode, require_Collection, require_stringifyComment, require_foldFlowLines, require_stringifyString, require_stringify, require_stringifyPair, require_log, require_merge, require_addPairToJSMap, require_Pair, require_stringifyCollection, require_YAMLMap, require_map, require_YAMLSeq, require_seq, require_string, require_null, require_bool, require_stringifyNumber, require_float, require_int, require_schema, require_schema2, require_binary, require_pairs, require_omap, require_bool2, require_float2, require_int2, require_set, require_timestamp, require_schema3, require_tags, require_Schema, require_stringifyDocument, require_Document, require_errors2, require_resolve_props, require_util_contains_newline, require_util_flow_indent_check, require_util_map_includes, require_resolve_block_map, require_resolve_block_seq, require_resolve_end, require_resolve_flow_collection, require_compose_collection, require_resolve_block_scalar, require_resolve_flow_scalar, require_compose_scalar, require_util_empty_scalar_position, require_compose_node, require_compose_doc, require_composer, require_cst_scalar, require_cst_stringify, require_cst_visit, require_cst, require_lexer, require_line_counter, require_parser, require_public_api, require_dist2, require_keyring_linux_x64_musl, require_package, require_keyring_linux_x64_gnu, require_package2, require_keyring, libsodium_default, init_libsodium, exports_libsodium_wrappers, r, t, a, _, n, s, m, libsodium_wrappers_default, init_libsodium_wrappers, PIPELINE_PROVIDER_CHOICES, SYNTHESIS_PROVIDER_CHOICES, DEFAULT_PIPELINE_TIMEOUT_MS = 90000, PIPELINE_PROVIDER_SET, SYNTHESIS_PROVIDER_SET,
|
|
31359
|
+
}, __esm2 = (fn, res) => () => (fn && (res = fn(fn = 0)), res), __require, require_identity, require_visit, require_directives, require_anchors, require_applyReviver, require_toJS, require_Node, require_Alias, require_Scalar, require_createNode, require_Collection, require_stringifyComment, require_foldFlowLines, require_stringifyString, require_stringify, require_stringifyPair, require_log, require_merge, require_addPairToJSMap, require_Pair, require_stringifyCollection, require_YAMLMap, require_map, require_YAMLSeq, require_seq, require_string, require_null, require_bool, require_stringifyNumber, require_float, require_int, require_schema, require_schema2, require_binary, require_pairs, require_omap, require_bool2, require_float2, require_int2, require_set, require_timestamp, require_schema3, require_tags, require_Schema, require_stringifyDocument, require_Document, require_errors2, require_resolve_props, require_util_contains_newline, require_util_flow_indent_check, require_util_map_includes, require_resolve_block_map, require_resolve_block_seq, require_resolve_end, require_resolve_flow_collection, require_compose_collection, require_resolve_block_scalar, require_resolve_flow_scalar, require_compose_scalar, require_util_empty_scalar_position, require_compose_node, require_compose_doc, require_composer, require_cst_scalar, require_cst_stringify, require_cst_visit, require_cst, require_lexer, require_line_counter, require_parser, require_public_api, require_dist2, require_keyring_linux_x64_musl, require_package, require_keyring_linux_x64_gnu, require_package2, require_keyring, libsodium_default, init_libsodium, exports_libsodium_wrappers, r, t, a, _, n, s, m, libsodium_wrappers_default, init_libsodium_wrappers, PIPELINE_PROVIDER_CHOICES, SYNTHESIS_PROVIDER_CHOICES, DEFAULT_PIPELINE_TIMEOUT_MS = 90000, PIPELINE_PROVIDER_SET, SYNTHESIS_PROVIDER_SET, spawnHidden = (command, argsOrOptions, options) => {
|
|
31360
|
+
if (Array.isArray(argsOrOptions))
|
|
31361
|
+
return nodeSpawn(command, argsOrOptions, withSpawnDefaults(options));
|
|
31362
|
+
return nodeSpawn(command, withSpawnDefaults(options ?? argsOrOptions));
|
|
31363
|
+
}, nodeExecFileAsync, execFileHiddenImpl = (...args) => Reflect.apply(nodeExecFile, undefined, withWindowsHideArgument(args, 1)), execFileSyncHidden = (...args) => Reflect.apply(nodeExecFileSync, undefined, withWindowsHideArgument(args, 1)), MEMORY_CONTENT_SAFETY_POLICY_VERSION = "memory-content-safety-v1", MEMORY_CONTENT_WITHHELD_NOTICE = "[memory content withheld by safety policy]", MEMORY_CONTENT_SAFETY_REASONS, INVISIBLE_UNICODE_RE, STRONG_DEFENSIVE_CONTEXT_RE, REPORTING_CONTEXT_RE, REPORTING_BEFORE_RE, REPORTING_AFTER_RE, NEGATED_DIRECTIVE_RE, PROMPT_INJECTION_RES, TOOL_DIRECTIVE_RES, EXFILTRATION_RE, EXFILTRATION_REVERSE, CREDENTIAL_HARVESTING_RE, DANGEROUS_SHELL_RE, DAEMON_DERIVED_MEMORY_SOURCE_TYPES, MEMORIES_FTS_TOKENIZER = "unicode61", FTS_STATE_TABLE = "memories_fts_state", COLUMNS, DEPENDENCY_TYPES, DERIVED_SOURCE_TYPES, TOKEN_COLUMNS, COLUMNS2, COMPLETION_BOUNDARY_REASONS, MIGRATIONS, LATEST_SCHEMA_VERSION, NETWORK_FILESYSTEM_TYPES, __filename2, __dirname2, cachedNpmGlobalRoot, import_yaml, DEFAULT_EMBEDDING_DIMENSIONS = 768, SERVICE = "ai.signet.secrets", require2, modulePromise = null, syncModule, adapterForTests = null, secretEventRecorder = () => {}, SECRET_STORE_TEMP_PREFIX = "secrets.enc.tmp-", NATIVE_STORE_VERSION = 2, DEGRADED_WARNING_FILE = ".degraded-warning", KEYRING_ACCOUNT_SCOPE = "workspace", SecretKeyringError, NAME_RE, DEFAULT_TELEMETRY_POSTHOG_HOST = "https://us.i.posthog.com", DEFAULT_TELEMETRY_POSTHOG_API_KEY = "phc_mLsvJmbmp6e9UarrX9Cq5QtTjVNiiphM9mvi5Xnddd8Q", DEFAULT_TELEMETRY_FLUSH_INTERVAL_MS = 60000, DEFAULT_TELEMETRY_FLUSH_BATCH_SIZE = 50, DEFAULT_PROVIDER_RATE_LIMIT, TELEMETRY_DEPLOYMENT_ROLES, TELEMETRY_INSTALL_CHANNELS, ENTITY_TYPES, ATTRIBUTE_KINDS, DEPENDENCY_TYPES2, ONTOLOGY_PROPOSAL_OPERATIONS, NETWORK_MODES, LOOPBACK_HOST = "127.0.0.1", LOCAL_BINDS, import_yaml2, WORKSPACE_ENV_KEYS, DEFAULT_AGENTS_DIRNAME = ".agents", native = null, SIGNET_SECRETS_PLUGIN_ID = "signet.secrets", SIGNET_GRAPHIQ_PLUGIN_ID = "signet.graphiq", SIGNET_PLUGIN_REGISTRY_DIR = ".daemon/plugins", SIGNET_PLUGIN_REGISTRY_FILE = "registry-v1.json", SIGNET_GRAPHIQ_STATE_FILE = ".daemon/graphiq/state.json", GRAPHIQ_DEFAULT_INSTALL_DIR, SIGNET_SOURCE_CHECKOUT_DIRNAME = "signetai", SIGNET_GIT_ALLOWED_DIRECTORIES, SIGNET_GIT_PROTECTED_PATHS, SIGNET_GIT_TRACKED_PATHS, SIGNET_GITIGNORE_PROTECTED_PATTERNS, DEFAULT_DISCORD_DESKTOP_CACHE_PATH, DEFAULT_GITHUB_RESOURCE_TYPES, VALID_GITHUB_RESOURCE_TYPES, SOURCE_CHUNK_SOURCE_TYPE = "source_chunk", IDENTITY_FILES, REQUIRED_IDENTITY_KEYS, OPTIONAL_IDENTITY_KEYS, home, SOURCE_NATIVE_TOPOLOGY_ENTITY_TYPES;
|
|
31322
31364
|
var init_dist = __esm(() => {
|
|
31323
31365
|
__create2 = Object.create;
|
|
31324
31366
|
__getProtoOf2 = Object.getPrototypeOf;
|
|
@@ -38965,6 +39007,10 @@ ${end.comment}` : end.comment;
|
|
|
38965
39007
|
SYNTHESIS_PROVIDER_CHOICES = PIPELINE_PROVIDER_CHOICES.filter((provider) => provider !== "command");
|
|
38966
39008
|
PIPELINE_PROVIDER_SET = new Set(PIPELINE_PROVIDER_CHOICES);
|
|
38967
39009
|
SYNTHESIS_PROVIDER_SET = new Set(SYNTHESIS_PROVIDER_CHOICES);
|
|
39010
|
+
nodeExecFileAsync = promisify(nodeExecFile);
|
|
39011
|
+
Object.defineProperty(execFileHiddenImpl, promisify.custom, {
|
|
39012
|
+
value: (...args) => Reflect.apply(nodeExecFileAsync, undefined, withWindowsHideArgument(args, 1))
|
|
39013
|
+
});
|
|
38968
39014
|
MEMORY_CONTENT_SAFETY_REASONS = [
|
|
38969
39015
|
"prompt_injection",
|
|
38970
39016
|
"exfiltration",
|
|
@@ -53394,8 +53440,8 @@ import { stat } from "node:fs/promises";
|
|
|
53394
53440
|
import { join as join13 } from "node:path";
|
|
53395
53441
|
|
|
53396
53442
|
// ../../platform/daemon/src/db-owner-client.ts
|
|
53443
|
+
init_dist();
|
|
53397
53444
|
import { randomUUID } from "node:crypto";
|
|
53398
|
-
import { spawn } from "node:child_process";
|
|
53399
53445
|
import { appendFileSync as appendFileSync2, existsSync as existsSync11, readdirSync as readdirSync7, readFileSync as readFileSync10, statSync as statSync7, unlinkSync as unlinkSync5 } from "node:fs";
|
|
53400
53446
|
import { dirname as dirname10, join as join12 } from "node:path";
|
|
53401
53447
|
import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
@@ -53823,7 +53869,7 @@ function createSingleDbOwnerClient(options) {
|
|
|
53823
53869
|
SIGNET_DB_OWNER_CANCEL_REGISTRY: cancellationRegistryPath
|
|
53824
53870
|
};
|
|
53825
53871
|
delete workerEnv.SIGNET_DAEMON_ENTRYPOINT;
|
|
53826
|
-
const owner =
|
|
53872
|
+
const owner = spawnHidden(process.execPath, workerArguments(options.workerPath), {
|
|
53827
53873
|
env: workerEnv,
|
|
53828
53874
|
stdio: ["pipe", "pipe", "pipe"]
|
|
53829
53875
|
});
|
|
@@ -61294,7 +61340,7 @@ init_zod();
|
|
|
61294
61340
|
|
|
61295
61341
|
// ../../platform/daemon/src/graphiq.ts
|
|
61296
61342
|
init_dist();
|
|
61297
|
-
|
|
61343
|
+
init_dist();
|
|
61298
61344
|
import { constants, accessSync, existsSync as existsSync13 } from "node:fs";
|
|
61299
61345
|
import { homedir as homedir9 } from "node:os";
|
|
61300
61346
|
import { delimiter, join as join15 } from "node:path";
|
|
@@ -61347,7 +61393,7 @@ async function runGraphiqCli(args, timeoutMs = 15000) {
|
|
|
61347
61393
|
function runCommand(command, args, timeoutMs, extraEnv) {
|
|
61348
61394
|
return new Promise((resolveResult) => {
|
|
61349
61395
|
const env = extraEnv ? { ...process.env, ...extraEnv } : process.env;
|
|
61350
|
-
const proc =
|
|
61396
|
+
const proc = spawnHidden(command, [...args], { stdio: "pipe", env });
|
|
61351
61397
|
const hardKillGraceMs = Math.min(1000, Math.max(100, Math.floor(timeoutMs / 4)));
|
|
61352
61398
|
let settled = false;
|
|
61353
61399
|
let stdout = "";
|
|
@@ -61400,6 +61446,9 @@ function runCommand(command, args, timeoutMs, extraEnv) {
|
|
|
61400
61446
|
init_dist();
|
|
61401
61447
|
import { existsSync as existsSync16, readFileSync as readFileSync13 } from "node:fs";
|
|
61402
61448
|
|
|
61449
|
+
// ../../platform/daemon/src/bitwarden.ts
|
|
61450
|
+
init_dist();
|
|
61451
|
+
|
|
61403
61452
|
// ../../platform/daemon/src/secrets.ts
|
|
61404
61453
|
init_logger();
|
|
61405
61454
|
init_dist();
|
package/native-manifest.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.219.
|
|
3
|
+
"version": "0.219.6",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
9
|
-
"size":
|
|
8
|
+
"sha256": "d6c2bfd3b41d4f55a6d8e9af7f527ac1c56af82a3543626fe416dc1836f6f7a0",
|
|
9
|
+
"size": 198515104
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "0734ae44b2cd0eecdd23a145d4b1c6963bc0571a054734f4829e7f77ab44a234",
|
|
15
|
+
"size": 202951232
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "dc9a594ba404313ab4f7cd947a7ce84c6233a2edb7f356dfcd5be2a52824664d",
|
|
21
|
+
"size": 245552163
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "bb765adfe55dfef70648fc247b1acd962bf4271fb27501e59c06329e0ba80e86",
|
|
27
|
+
"size": 248340170
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "6d2d7e9d3e99848897ec435d55f0a8a763d3166c3f2f4bda130c79a9d421d1a8",
|
|
33
|
+
"size": 254800384
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.219.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.219.6.tar.gz",
|
|
39
|
+
"sha256": "83a5c7224b7e5957353f17daf6f5ef190039faca0b5bd86695bf6ebde7d4604a",
|
|
40
|
+
"size": 22022
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.219.
|
|
3
|
+
"version": "0.219.6",
|
|
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.219.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.6/signetai-darwin-arm64-0.219.6.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.6/signetai-darwin-x64-0.219.6.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.6/signetai-linux-arm64-0.219.6.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.6/signetai-linux-x64-0.219.6.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.219.6/signetai-win32-x64-0.219.6.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|