@scheduler-systems/gal-run 0.0.555 → 0.0.556
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/index.cjs +459 -432
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3955,7 +3955,7 @@ var cliVersion, defaultApiUrl, BUILD_CONSTANTS, constants_default;
|
|
|
3955
3955
|
var init_constants = __esm({
|
|
3956
3956
|
"module_6"() {
|
|
3957
3957
|
"use strict";
|
|
3958
|
-
cliVersion = true ? "0.0.
|
|
3958
|
+
cliVersion = true ? "0.0.556" : "0.0.0-dev";
|
|
3959
3959
|
defaultApiUrl = true ? "https://api.gal.run" : "http://localhost:3000";
|
|
3960
3960
|
BUILD_CONSTANTS = Object.freeze([cliVersion, defaultApiUrl]);
|
|
3961
3961
|
constants_default = BUILD_CONSTANTS;
|
|
@@ -11781,7 +11781,7 @@ function detectEnvironment() {
|
|
|
11781
11781
|
return "dev";
|
|
11782
11782
|
}
|
|
11783
11783
|
try {
|
|
11784
|
-
const version2 = true ? "0.0.
|
|
11784
|
+
const version2 = true ? "0.0.556" : void 0;
|
|
11785
11785
|
if (version2 && version2.includes("-local")) {
|
|
11786
11786
|
return "dev";
|
|
11787
11787
|
}
|
|
@@ -13854,9 +13854,29 @@ var init_org_config_upgrade = __esm({
|
|
|
13854
13854
|
}
|
|
13855
13855
|
});
|
|
13856
13856
|
|
|
13857
|
+
function shouldEnableGlobalTimeout(requestedCommand) {
|
|
13858
|
+
return requestedCommand !== "code";
|
|
13859
|
+
}
|
|
13860
|
+
function installGlobalTimeout() {
|
|
13861
|
+
const timeout = setTimeout(() => {
|
|
13862
|
+
console.error("\n[GAL CLI] Command timed out after 2 minutes. Exiting.");
|
|
13863
|
+
console.error("If this keeps happening, please report at:");
|
|
13864
|
+
console.error("https://github.com/Scheduler-Systems/gal-run/issues\n");
|
|
13865
|
+
process.exit(124);
|
|
13866
|
+
}, GLOBAL_TIMEOUT_MS);
|
|
13867
|
+
timeout.unref();
|
|
13868
|
+
}
|
|
13869
|
+
var GLOBAL_TIMEOUT_MS;
|
|
13870
|
+
var init_global_timeout = __esm({
|
|
13871
|
+
"module_20"() {
|
|
13872
|
+
"use strict";
|
|
13873
|
+
GLOBAL_TIMEOUT_MS = 12e4;
|
|
13874
|
+
}
|
|
13875
|
+
});
|
|
13876
|
+
|
|
13857
13877
|
var import_fs6, import_path6, import_os5, GAL_DIR, QUEUE_FILE, PENDING_EVENTS_FILE, MAX_BATCH_SIZE, OFFLINE_TTL_DAYS, OFFLINE_TTL_MS, EventQueue;
|
|
13858
13878
|
var init_event_queue = __esm({
|
|
13859
|
-
"
|
|
13879
|
+
"module_21"() {
|
|
13860
13880
|
"use strict";
|
|
13861
13881
|
import_fs6 = require("fs");
|
|
13862
13882
|
import_path6 = require("path");
|
|
@@ -14086,7 +14106,7 @@ var init_event_queue = __esm({
|
|
|
14086
14106
|
|
|
14087
14107
|
var REQUEST_TIMEOUT_MS, SCHEMA_VERSION, TelemetryClient;
|
|
14088
14108
|
var init_telemetry_client = __esm({
|
|
14089
|
-
"
|
|
14109
|
+
"module_22"() {
|
|
14090
14110
|
"use strict";
|
|
14091
14111
|
REQUEST_TIMEOUT_MS = 5e3;
|
|
14092
14112
|
SCHEMA_VERSION = "v2";
|
|
@@ -14206,7 +14226,7 @@ function isFirstRun() {
|
|
|
14206
14226
|
}
|
|
14207
14227
|
var import_fs7, import_path7, import_os6, import_crypto, GAL_DIR2, INSTALLATION_ID_FILE;
|
|
14208
14228
|
var init_installation_id = __esm({
|
|
14209
|
-
"
|
|
14229
|
+
"module_23"() {
|
|
14210
14230
|
"use strict";
|
|
14211
14231
|
import_fs7 = require("fs");
|
|
14212
14232
|
import_path7 = require("path");
|
|
@@ -14242,7 +14262,7 @@ async function sendFeedback(rating, comment, context) {
|
|
|
14242
14262
|
}
|
|
14243
14263
|
var isEnabled, telemetryClient;
|
|
14244
14264
|
var init_api = __esm({
|
|
14245
|
-
"
|
|
14265
|
+
"module_24"() {
|
|
14246
14266
|
"use strict";
|
|
14247
14267
|
init_config_manager();
|
|
14248
14268
|
init_telemetry_client();
|
|
@@ -14395,7 +14415,7 @@ function recordFeedbackPrompt(type) {
|
|
|
14395
14415
|
}
|
|
14396
14416
|
var readline2, sessionCommandCount;
|
|
14397
14417
|
var init_feedback_prompt = __esm({
|
|
14398
|
-
"
|
|
14418
|
+
"module_25"() {
|
|
14399
14419
|
"use strict";
|
|
14400
14420
|
readline2 = __toESM(require("readline"), 1);
|
|
14401
14421
|
init_source();
|
|
@@ -14462,7 +14482,7 @@ function getId() {
|
|
|
14462
14482
|
}
|
|
14463
14483
|
function getCliVersion() {
|
|
14464
14484
|
try {
|
|
14465
|
-
return true ? "0.0.
|
|
14485
|
+
return true ? "0.0.556" : "0.0.0-dev";
|
|
14466
14486
|
} catch {
|
|
14467
14487
|
return "0.0.0-dev";
|
|
14468
14488
|
}
|
|
@@ -14668,7 +14688,7 @@ function trackSessionEnd(durationMs) {
|
|
|
14668
14688
|
}
|
|
14669
14689
|
var import_crypto2, import_os7, import_fs8, import_path8, import_os8, eventQueue, telemetryClient2, installationId, telemetryEnabled;
|
|
14670
14690
|
var init_telemetry = __esm({
|
|
14671
|
-
"
|
|
14691
|
+
"module_26"() {
|
|
14672
14692
|
"use strict";
|
|
14673
14693
|
import_crypto2 = require("crypto");
|
|
14674
14694
|
import_os7 = require("os");
|
|
@@ -14692,7 +14712,7 @@ function platformsWithCapability(cap) {
|
|
|
14692
14712
|
}
|
|
14693
14713
|
var PLATFORM_REGISTRY, ALL_PLATFORM_IDS, STABLE_PLATFORM_IDS, HOOKABLE_PLATFORMS, CREDENTIAL_SYNC_PLATFORMS, SESSION_RUNNER_PLATFORMS, PLATFORM_DIRECTORY_MAP, PLATFORM_DISPLAY_MAP, PLATFORM_INSTRUCTION_FILE_MAP;
|
|
14694
14714
|
var init_platform_registry = __esm({
|
|
14695
|
-
"
|
|
14715
|
+
"module_27"() {
|
|
14696
14716
|
"use strict";
|
|
14697
14717
|
PLATFORM_REGISTRY = {
|
|
14698
14718
|
claude: {
|
|
@@ -14868,14 +14888,14 @@ var init_platform_registry = __esm({
|
|
|
14868
14888
|
});
|
|
14869
14889
|
|
|
14870
14890
|
var init_llm_analysis = __esm({
|
|
14871
|
-
"
|
|
14891
|
+
"module_28"() {
|
|
14872
14892
|
"use strict";
|
|
14873
14893
|
}
|
|
14874
14894
|
});
|
|
14875
14895
|
|
|
14876
14896
|
var ALL_PAGE_IDS;
|
|
14877
14897
|
var init_feature_flags = __esm({
|
|
14878
|
-
"
|
|
14898
|
+
"module_29"() {
|
|
14879
14899
|
"use strict";
|
|
14880
14900
|
ALL_PAGE_IDS = [
|
|
14881
14901
|
"dashboard",
|
|
@@ -14910,7 +14930,7 @@ var init_feature_flags = __esm({
|
|
|
14910
14930
|
});
|
|
14911
14931
|
|
|
14912
14932
|
var init_billing = __esm({
|
|
14913
|
-
"
|
|
14933
|
+
"module_30"() {
|
|
14914
14934
|
"use strict";
|
|
14915
14935
|
}
|
|
14916
14936
|
});
|
|
@@ -14959,20 +14979,20 @@ function severityToNumber(severity) {
|
|
|
14959
14979
|
return levels[severity];
|
|
14960
14980
|
}
|
|
14961
14981
|
var init_telemetry2 = __esm({
|
|
14962
|
-
"
|
|
14982
|
+
"module_31"() {
|
|
14963
14983
|
"use strict";
|
|
14964
14984
|
}
|
|
14965
14985
|
});
|
|
14966
14986
|
|
|
14967
14987
|
var init_trainable_trace = __esm({
|
|
14968
|
-
"
|
|
14988
|
+
"module_32"() {
|
|
14969
14989
|
"use strict";
|
|
14970
14990
|
}
|
|
14971
14991
|
});
|
|
14972
14992
|
|
|
14973
14993
|
var AGENT_EXECUTOR_DATASET_SCHEMA_VERSION, AGENT_EXECUTOR_TRAINING_TASK, DEFAULT_AGENT_EXECUTOR_BASE_MODEL, ONE_HOUR_AGENT_EXECUTOR_FALLBACK_MODEL, HEAVY_AGENT_EXECUTOR_MODEL, AGENT_EXECUTOR_REJECTION_REASONS;
|
|
14974
14994
|
var init_agent_executor_training = __esm({
|
|
14975
|
-
"
|
|
14995
|
+
"module_33"() {
|
|
14976
14996
|
"use strict";
|
|
14977
14997
|
AGENT_EXECUTOR_DATASET_SCHEMA_VERSION = "v1";
|
|
14978
14998
|
AGENT_EXECUTOR_TRAINING_TASK = "agent_executor_trajectory";
|
|
@@ -14995,25 +15015,25 @@ var init_agent_executor_training = __esm({
|
|
|
14995
15015
|
});
|
|
14996
15016
|
|
|
14997
15017
|
var init_oauth = __esm({
|
|
14998
|
-
"
|
|
15018
|
+
"module_34"() {
|
|
14999
15019
|
"use strict";
|
|
15000
15020
|
}
|
|
15001
15021
|
});
|
|
15002
15022
|
|
|
15003
15023
|
var init_auth = __esm({
|
|
15004
|
-
"
|
|
15024
|
+
"module_35"() {
|
|
15005
15025
|
"use strict";
|
|
15006
15026
|
}
|
|
15007
15027
|
});
|
|
15008
15028
|
|
|
15009
15029
|
var init_user = __esm({
|
|
15010
|
-
"
|
|
15030
|
+
"module_36"() {
|
|
15011
15031
|
"use strict";
|
|
15012
15032
|
}
|
|
15013
15033
|
});
|
|
15014
15034
|
|
|
15015
15035
|
var init_workspace = __esm({
|
|
15016
|
-
"
|
|
15036
|
+
"module_37"() {
|
|
15017
15037
|
"use strict";
|
|
15018
15038
|
}
|
|
15019
15039
|
});
|
|
@@ -15030,7 +15050,7 @@ function normalizeBackgroundAgentRunnerLabel(value) {
|
|
|
15030
15050
|
}
|
|
15031
15051
|
var SESSION_AGENTS, DEFAULT_SESSION_AGENT, ACTIVE_BACKGROUND_AGENT_RUNNER_LABELS, SECURITY_GATED_RUNNER_LABELS, RETIRED_BACKGROUND_AGENT_RUNNER_LABELS, DEFAULT_RUNNER_LABEL;
|
|
15032
15052
|
var init_session = __esm({
|
|
15033
|
-
"
|
|
15053
|
+
"module_38"() {
|
|
15034
15054
|
"use strict";
|
|
15035
15055
|
SESSION_AGENTS = [
|
|
15036
15056
|
{ id: "claude", displayName: "Claude Code", icon: "\u{1F916}", description: "Anthropic Claude Code CLI" },
|
|
@@ -15066,7 +15086,7 @@ var init_session = __esm({
|
|
|
15066
15086
|
});
|
|
15067
15087
|
|
|
15068
15088
|
var init_workflow = __esm({
|
|
15069
|
-
"
|
|
15089
|
+
"module_39"() {
|
|
15070
15090
|
"use strict";
|
|
15071
15091
|
}
|
|
15072
15092
|
});
|
|
@@ -15260,38 +15280,38 @@ function parseWorkItemExecutionContext(raw) {
|
|
|
15260
15280
|
}
|
|
15261
15281
|
var PROCESS_EXECUTION_MODES;
|
|
15262
15282
|
var init_work_item = __esm({
|
|
15263
|
-
"
|
|
15283
|
+
"module_40"() {
|
|
15264
15284
|
"use strict";
|
|
15265
15285
|
PROCESS_EXECUTION_MODES = ["agent", "hybrid", "manual", "workforce"];
|
|
15266
15286
|
}
|
|
15267
15287
|
});
|
|
15268
15288
|
|
|
15269
15289
|
var init_agent_activity = __esm({
|
|
15270
|
-
"
|
|
15290
|
+
"module_41"() {
|
|
15271
15291
|
"use strict";
|
|
15272
15292
|
}
|
|
15273
15293
|
});
|
|
15274
15294
|
|
|
15275
15295
|
var init_gal_config = __esm({
|
|
15276
|
-
"
|
|
15296
|
+
"module_42"() {
|
|
15277
15297
|
"use strict";
|
|
15278
15298
|
}
|
|
15279
15299
|
});
|
|
15280
15300
|
|
|
15281
15301
|
var init_onboarding = __esm({
|
|
15282
|
-
"
|
|
15302
|
+
"module_43"() {
|
|
15283
15303
|
"use strict";
|
|
15284
15304
|
}
|
|
15285
15305
|
});
|
|
15286
15306
|
|
|
15287
15307
|
var init_user_context = __esm({
|
|
15288
|
-
"
|
|
15308
|
+
"module_44"() {
|
|
15289
15309
|
"use strict";
|
|
15290
15310
|
}
|
|
15291
15311
|
});
|
|
15292
15312
|
|
|
15293
15313
|
var init_config_governance = __esm({
|
|
15294
|
-
"
|
|
15314
|
+
"module_45"() {
|
|
15295
15315
|
"use strict";
|
|
15296
15316
|
}
|
|
15297
15317
|
});
|
|
@@ -15304,7 +15324,7 @@ function isValidCredentialProvider(value) {
|
|
|
15304
15324
|
}
|
|
15305
15325
|
var CREDENTIAL_PROVIDERS, CREDENTIAL_PROVIDER_CONFIGS;
|
|
15306
15326
|
var init_credentials = __esm({
|
|
15307
|
-
"
|
|
15327
|
+
"module_46"() {
|
|
15308
15328
|
"use strict";
|
|
15309
15329
|
CREDENTIAL_PROVIDERS = ["claude", "codex", "gemini", "cursor", "oss", "firebase"];
|
|
15310
15330
|
CREDENTIAL_PROVIDER_CONFIGS = [
|
|
@@ -15370,7 +15390,7 @@ var init_credentials = __esm({
|
|
|
15370
15390
|
|
|
15371
15391
|
var SessionErrorCode, ErrorCategory, ERROR_CODE_CATEGORIES;
|
|
15372
15392
|
var init_error_codes = __esm({
|
|
15373
|
-
"
|
|
15393
|
+
"module_47"() {
|
|
15374
15394
|
"use strict";
|
|
15375
15395
|
(function(SessionErrorCode2) {
|
|
15376
15396
|
SessionErrorCode2["AUTH_EXPIRED"] = "AUTH_EXPIRED";
|
|
@@ -15405,13 +15425,13 @@ var init_error_codes = __esm({
|
|
|
15405
15425
|
});
|
|
15406
15426
|
|
|
15407
15427
|
var init_discovery_intelligence = __esm({
|
|
15408
|
-
"
|
|
15428
|
+
"module_48"() {
|
|
15409
15429
|
"use strict";
|
|
15410
15430
|
}
|
|
15411
15431
|
});
|
|
15412
15432
|
|
|
15413
15433
|
var init_orchestrator_brain = __esm({
|
|
15414
|
-
"
|
|
15434
|
+
"module_49"() {
|
|
15415
15435
|
"use strict";
|
|
15416
15436
|
}
|
|
15417
15437
|
});
|
|
@@ -15437,7 +15457,7 @@ function calculateUsagePercent(currentUsage, limit) {
|
|
|
15437
15457
|
}
|
|
15438
15458
|
var DEFAULT_USAGE_THRESHOLDS;
|
|
15439
15459
|
var init_provider_usage = __esm({
|
|
15440
|
-
"
|
|
15460
|
+
"module_50"() {
|
|
15441
15461
|
"use strict";
|
|
15442
15462
|
DEFAULT_USAGE_THRESHOLDS = {
|
|
15443
15463
|
warningThreshold: 70,
|
|
@@ -15447,7 +15467,7 @@ var init_provider_usage = __esm({
|
|
|
15447
15467
|
});
|
|
15448
15468
|
|
|
15449
15469
|
var init_worker_pool = __esm({
|
|
15450
|
-
"
|
|
15470
|
+
"module_51"() {
|
|
15451
15471
|
"use strict";
|
|
15452
15472
|
}
|
|
15453
15473
|
});
|
|
@@ -15495,21 +15515,21 @@ function formatProviderSelection(result) {
|
|
|
15495
15515
|
}
|
|
15496
15516
|
var DEFAULT_PROVIDER_PRECEDENCE;
|
|
15497
15517
|
var init_provider_precedence = __esm({
|
|
15498
|
-
"
|
|
15518
|
+
"module_52"() {
|
|
15499
15519
|
"use strict";
|
|
15500
15520
|
DEFAULT_PROVIDER_PRECEDENCE = ["codex", "claude", "gemini", "oss"];
|
|
15501
15521
|
}
|
|
15502
15522
|
});
|
|
15503
15523
|
|
|
15504
15524
|
var init_sdlc_enforcement = __esm({
|
|
15505
|
-
"
|
|
15525
|
+
"module_53"() {
|
|
15506
15526
|
"use strict";
|
|
15507
15527
|
}
|
|
15508
15528
|
});
|
|
15509
15529
|
|
|
15510
15530
|
var DEFAULT_DIRECTIVE_POLICY;
|
|
15511
15531
|
var init_supervisor_directive = __esm({
|
|
15512
|
-
"
|
|
15532
|
+
"module_54"() {
|
|
15513
15533
|
"use strict";
|
|
15514
15534
|
DEFAULT_DIRECTIVE_POLICY = {
|
|
15515
15535
|
maxCapacityPerOrg: 10,
|
|
@@ -15526,7 +15546,7 @@ var init_supervisor_directive = __esm({
|
|
|
15526
15546
|
|
|
15527
15547
|
var BROWSER_BACKEND_FALLBACK_ORDER, BROWSER_BACKEND_CONFIGS, FAILURE_REMEDIATIONS;
|
|
15528
15548
|
var init_browser_automation = __esm({
|
|
15529
|
-
"
|
|
15549
|
+
"module_55"() {
|
|
15530
15550
|
"use strict";
|
|
15531
15551
|
BROWSER_BACKEND_FALLBACK_ORDER = [
|
|
15532
15552
|
"chrome-devtools",
|
|
@@ -15567,7 +15587,7 @@ var init_browser_automation = __esm({
|
|
|
15567
15587
|
|
|
15568
15588
|
var DEFAULT_TEAM_ASSIGNMENT_CONFIG;
|
|
15569
15589
|
var init_team_assignment = __esm({
|
|
15570
|
-
"
|
|
15590
|
+
"module_56"() {
|
|
15571
15591
|
"use strict";
|
|
15572
15592
|
DEFAULT_TEAM_ASSIGNMENT_CONFIG = {
|
|
15573
15593
|
supervisorWorkerRatio: 3,
|
|
@@ -15581,157 +15601,157 @@ var init_team_assignment = __esm({
|
|
|
15581
15601
|
});
|
|
15582
15602
|
|
|
15583
15603
|
var init_feedback = __esm({
|
|
15584
|
-
"
|
|
15604
|
+
"module_57"() {
|
|
15585
15605
|
"use strict";
|
|
15586
15606
|
}
|
|
15587
15607
|
});
|
|
15588
15608
|
|
|
15589
15609
|
var init_autonomy = __esm({
|
|
15590
|
-
"
|
|
15610
|
+
"module_58"() {
|
|
15591
15611
|
"use strict";
|
|
15592
15612
|
}
|
|
15593
15613
|
});
|
|
15594
15614
|
|
|
15595
15615
|
var init_domain_audit = __esm({
|
|
15596
|
-
"
|
|
15616
|
+
"module_59"() {
|
|
15597
15617
|
"use strict";
|
|
15598
15618
|
}
|
|
15599
15619
|
});
|
|
15600
15620
|
|
|
15601
15621
|
var init_system_enforcement = __esm({
|
|
15602
|
-
"
|
|
15622
|
+
"module_60"() {
|
|
15603
15623
|
"use strict";
|
|
15604
15624
|
}
|
|
15605
15625
|
});
|
|
15606
15626
|
|
|
15607
15627
|
var init_tool_policy = __esm({
|
|
15608
|
-
"
|
|
15628
|
+
"module_61"() {
|
|
15609
15629
|
"use strict";
|
|
15610
15630
|
}
|
|
15611
15631
|
});
|
|
15612
15632
|
|
|
15613
15633
|
var init_governance_audit = __esm({
|
|
15614
|
-
"
|
|
15634
|
+
"module_62"() {
|
|
15615
15635
|
"use strict";
|
|
15616
15636
|
}
|
|
15617
15637
|
});
|
|
15618
15638
|
|
|
15619
15639
|
var init_autopilot = __esm({
|
|
15620
|
-
"
|
|
15640
|
+
"module_63"() {
|
|
15621
15641
|
"use strict";
|
|
15622
15642
|
}
|
|
15623
15643
|
});
|
|
15624
15644
|
|
|
15625
15645
|
var init_agent_security_policy = __esm({
|
|
15626
|
-
"
|
|
15646
|
+
"module_64"() {
|
|
15627
15647
|
"use strict";
|
|
15628
15648
|
}
|
|
15629
15649
|
});
|
|
15630
15650
|
|
|
15631
15651
|
var init_security_standards = __esm({
|
|
15632
|
-
"
|
|
15652
|
+
"module_65"() {
|
|
15633
15653
|
"use strict";
|
|
15634
15654
|
}
|
|
15635
15655
|
});
|
|
15636
15656
|
|
|
15637
15657
|
var init_mal = __esm({
|
|
15638
|
-
"
|
|
15658
|
+
"module_66"() {
|
|
15639
15659
|
"use strict";
|
|
15640
15660
|
}
|
|
15641
15661
|
});
|
|
15642
15662
|
|
|
15643
15663
|
var init_mal_maintain = __esm({
|
|
15644
|
-
"
|
|
15664
|
+
"module_67"() {
|
|
15645
15665
|
"use strict";
|
|
15646
15666
|
}
|
|
15647
15667
|
});
|
|
15648
15668
|
|
|
15649
15669
|
var init_mal_build = __esm({
|
|
15650
|
-
"
|
|
15670
|
+
"module_68"() {
|
|
15651
15671
|
"use strict";
|
|
15652
15672
|
}
|
|
15653
15673
|
});
|
|
15654
15674
|
|
|
15655
15675
|
var init_mal_evaluate = __esm({
|
|
15656
|
-
"
|
|
15676
|
+
"module_69"() {
|
|
15657
15677
|
"use strict";
|
|
15658
15678
|
}
|
|
15659
15679
|
});
|
|
15660
15680
|
|
|
15661
15681
|
var init_mal_evolve = __esm({
|
|
15662
|
-
"
|
|
15682
|
+
"module_70"() {
|
|
15663
15683
|
"use strict";
|
|
15664
15684
|
}
|
|
15665
15685
|
});
|
|
15666
15686
|
|
|
15667
15687
|
var init_mal_signals = __esm({
|
|
15668
|
-
"
|
|
15688
|
+
"module_71"() {
|
|
15669
15689
|
"use strict";
|
|
15670
15690
|
}
|
|
15671
15691
|
});
|
|
15672
15692
|
|
|
15673
15693
|
var init_mal_cli = __esm({
|
|
15674
|
-
"
|
|
15694
|
+
"module_72"() {
|
|
15675
15695
|
"use strict";
|
|
15676
15696
|
}
|
|
15677
15697
|
});
|
|
15678
15698
|
|
|
15679
15699
|
var init_mal_runner = __esm({
|
|
15680
|
-
"
|
|
15700
|
+
"module_73"() {
|
|
15681
15701
|
"use strict";
|
|
15682
15702
|
}
|
|
15683
15703
|
});
|
|
15684
15704
|
|
|
15685
15705
|
var init_mal_self_evolution = __esm({
|
|
15686
|
-
"
|
|
15706
|
+
"module_74"() {
|
|
15687
15707
|
"use strict";
|
|
15688
15708
|
}
|
|
15689
15709
|
});
|
|
15690
15710
|
|
|
15691
15711
|
var init_mal_knowledge = __esm({
|
|
15692
|
-
"
|
|
15712
|
+
"module_75"() {
|
|
15693
15713
|
"use strict";
|
|
15694
15714
|
}
|
|
15695
15715
|
});
|
|
15696
15716
|
|
|
15697
15717
|
var init_mal_cross_project = __esm({
|
|
15698
|
-
"
|
|
15718
|
+
"module_76"() {
|
|
15699
15719
|
"use strict";
|
|
15700
15720
|
}
|
|
15701
15721
|
});
|
|
15702
15722
|
|
|
15703
15723
|
var init_design_project = __esm({
|
|
15704
|
-
"
|
|
15724
|
+
"module_77"() {
|
|
15705
15725
|
"use strict";
|
|
15706
15726
|
}
|
|
15707
15727
|
});
|
|
15708
15728
|
|
|
15709
15729
|
var init_sso = __esm({
|
|
15710
|
-
"
|
|
15730
|
+
"module_78"() {
|
|
15711
15731
|
"use strict";
|
|
15712
15732
|
}
|
|
15713
15733
|
});
|
|
15714
15734
|
|
|
15715
15735
|
var init_memory = __esm({
|
|
15716
|
-
"
|
|
15736
|
+
"module_79"() {
|
|
15717
15737
|
"use strict";
|
|
15718
15738
|
}
|
|
15719
15739
|
});
|
|
15720
15740
|
|
|
15721
15741
|
var init_secrets = __esm({
|
|
15722
|
-
"
|
|
15742
|
+
"module_80"() {
|
|
15723
15743
|
"use strict";
|
|
15724
15744
|
}
|
|
15725
15745
|
});
|
|
15726
15746
|
|
|
15727
15747
|
var init_environments = __esm({
|
|
15728
|
-
"
|
|
15748
|
+
"module_81"() {
|
|
15729
15749
|
"use strict";
|
|
15730
15750
|
}
|
|
15731
15751
|
});
|
|
15732
15752
|
|
|
15733
15753
|
var init_learning = __esm({
|
|
15734
|
-
"
|
|
15754
|
+
"module_82"() {
|
|
15735
15755
|
"use strict";
|
|
15736
15756
|
}
|
|
15737
15757
|
});
|
|
@@ -15806,7 +15826,7 @@ function checkEnforcement(toolName, toolInput, settings, sessionRole, userLogin)
|
|
|
15806
15826
|
}
|
|
15807
15827
|
var DEFAULT_BLOCKED_TOOLS, BLOCKED_BASH_PATTERNS, ALWAYS_ALLOWED_TOOLS, DEFAULT_ENFORCEMENT_MODE_SETTINGS, DEFAULT_BLOCK_MESSAGE;
|
|
15808
15828
|
var init_enforcement_mode = __esm({
|
|
15809
|
-
"
|
|
15829
|
+
"module_83"() {
|
|
15810
15830
|
"use strict";
|
|
15811
15831
|
DEFAULT_BLOCKED_TOOLS = [
|
|
15812
15832
|
"Edit",
|
|
@@ -15850,14 +15870,14 @@ var init_enforcement_mode = __esm({
|
|
|
15850
15870
|
});
|
|
15851
15871
|
|
|
15852
15872
|
var init_sdlc_evaluation = __esm({
|
|
15853
|
-
"
|
|
15873
|
+
"module_84"() {
|
|
15854
15874
|
"use strict";
|
|
15855
15875
|
}
|
|
15856
15876
|
});
|
|
15857
15877
|
|
|
15858
15878
|
var OSS_EVAL_SCHEMA_VERSION, OSS_EVAL_DATASET_PATH, OSS_EVAL_TASK_SET_MODES, OSS_EVAL_CANONICAL_PROVIDERS, OSS_EVAL_METRIC_IDS, DEFAULT_OSS_EVAL_THRESHOLDS, DEFAULT_OSS_EVAL_WEIGHTS, DEFAULT_OSS_EVAL_WIN_CRITERIA, OSS_EVAL_METRICS, DEFAULT_OSS_EVAL_SPEC;
|
|
15859
15879
|
var init_oss_model_eval = __esm({
|
|
15860
|
-
"
|
|
15880
|
+
"module_85"() {
|
|
15861
15881
|
"use strict";
|
|
15862
15882
|
OSS_EVAL_SCHEMA_VERSION = "v1";
|
|
15863
15883
|
OSS_EVAL_DATASET_PATH = "/sessions";
|
|
@@ -15941,7 +15961,7 @@ function laneToEvalProvider(lane, vendorProvider) {
|
|
|
15941
15961
|
}
|
|
15942
15962
|
var DEFAULT_AB_ROUTING_CONFIG, AB_ROUTING_MODES;
|
|
15943
15963
|
var init_ab_routing = __esm({
|
|
15944
|
-
"
|
|
15964
|
+
"module_86"() {
|
|
15945
15965
|
"use strict";
|
|
15946
15966
|
DEFAULT_AB_ROUTING_CONFIG = {
|
|
15947
15967
|
enabled: false,
|
|
@@ -15958,7 +15978,7 @@ var init_ab_routing = __esm({
|
|
|
15958
15978
|
});
|
|
15959
15979
|
|
|
15960
15980
|
var init_meeting_transcript_pipeline = __esm({
|
|
15961
|
-
"
|
|
15981
|
+
"module_87"() {
|
|
15962
15982
|
"use strict";
|
|
15963
15983
|
}
|
|
15964
15984
|
});
|
|
@@ -16048,7 +16068,7 @@ __export(dist_exports, {
|
|
|
16048
16068
|
});
|
|
16049
16069
|
var GAL_TERMS_URL, GAL_PRIVACY_URL, PLATFORM_DIRECTORIES, PLATFORM_PATTERNS, DEFAULT_ENFORCEMENT_SETTINGS, DEFAULT_DISPATCH_CATEGORIES;
|
|
16050
16070
|
var init_dist2 = __esm({
|
|
16051
|
-
"
|
|
16071
|
+
"module_88"() {
|
|
16052
16072
|
"use strict";
|
|
16053
16073
|
init_platform_registry();
|
|
16054
16074
|
init_platform_registry();
|
|
@@ -16407,7 +16427,7 @@ async function checkTermsAcceptance() {
|
|
|
16407
16427
|
}
|
|
16408
16428
|
var import_fs9, import_path9, import_os9, readline3, GAL_DIR3, CONFIG_FILE, TERMS_URL, PRIVACY_URL, TERMS_VERSION;
|
|
16409
16429
|
var init_terms_acceptance = __esm({
|
|
16410
|
-
"
|
|
16430
|
+
"module_89"() {
|
|
16411
16431
|
"use strict";
|
|
16412
16432
|
import_fs9 = require("fs");
|
|
16413
16433
|
import_path9 = require("path");
|
|
@@ -16490,7 +16510,7 @@ function showPeriodicReminder() {
|
|
|
16490
16510
|
}
|
|
16491
16511
|
var import_fs10, import_path10, import_os10, GAL_DIR4, PREVIEW_STATE_FILE, ONE_DAY_MS, FEEDBACK_URL;
|
|
16492
16512
|
var init_research_preview = __esm({
|
|
16493
|
-
"
|
|
16513
|
+
"module_90"() {
|
|
16494
16514
|
"use strict";
|
|
16495
16515
|
import_fs10 = require("fs");
|
|
16496
16516
|
import_path10 = require("path");
|
|
@@ -16506,7 +16526,7 @@ var init_research_preview = __esm({
|
|
|
16506
16526
|
|
|
16507
16527
|
var Organization;
|
|
16508
16528
|
var init_organization = __esm({
|
|
16509
|
-
"
|
|
16529
|
+
"module_91"() {
|
|
16510
16530
|
"use strict";
|
|
16511
16531
|
Organization = class {
|
|
16512
16532
|
constructor(id, name, installationId2, accountType, totalRepos, totalConfigs, totalCommands, totalHooks, settings, commands, hooks, platforms, hookSettings, planTier, seatLimit, stripeCustomerId, stripeSubscriptionId, manualGrant, configRepoEnabled, configRepoUrl, configRepoCreatedAt, lastConfigSyncAt, lastScanAt, audienceTierRef, audienceTierSource, entitledFeatures, installedByGithubId, installedByLogin, createdAt = /* @__PURE__ */ new Date(), updatedAt = /* @__PURE__ */ new Date(), memberCount) {
|
|
@@ -16605,20 +16625,20 @@ var init_organization = __esm({
|
|
|
16605
16625
|
});
|
|
16606
16626
|
|
|
16607
16627
|
var init_user2 = __esm({
|
|
16608
|
-
"
|
|
16628
|
+
"module_92"() {
|
|
16609
16629
|
"use strict";
|
|
16610
16630
|
}
|
|
16611
16631
|
});
|
|
16612
16632
|
|
|
16613
16633
|
var init_scan_result = __esm({
|
|
16614
|
-
"
|
|
16634
|
+
"module_93"() {
|
|
16615
16635
|
"use strict";
|
|
16616
16636
|
}
|
|
16617
16637
|
});
|
|
16618
16638
|
|
|
16619
16639
|
var TeamMember;
|
|
16620
16640
|
var init_team_member = __esm({
|
|
16621
|
-
"
|
|
16641
|
+
"module_94"() {
|
|
16622
16642
|
"use strict";
|
|
16623
16643
|
TeamMember = class {
|
|
16624
16644
|
constructor(userId, githubLogin, githubId, name, email2, avatarUrl, githubOrgRole, galRole, roleAssignedBy, roleAssignedAt, lastActiveAt, createdAt = /* @__PURE__ */ new Date(), updatedAt = /* @__PURE__ */ new Date()) {
|
|
@@ -16715,146 +16735,146 @@ var init_team_member = __esm({
|
|
|
16715
16735
|
});
|
|
16716
16736
|
|
|
16717
16737
|
var init_subscription = __esm({
|
|
16718
|
-
"
|
|
16738
|
+
"module_95"() {
|
|
16719
16739
|
"use strict";
|
|
16720
16740
|
}
|
|
16721
16741
|
});
|
|
16722
16742
|
|
|
16723
16743
|
var init_workspace2 = __esm({
|
|
16724
|
-
"
|
|
16744
|
+
"module_96"() {
|
|
16725
16745
|
"use strict";
|
|
16726
16746
|
}
|
|
16727
16747
|
});
|
|
16728
16748
|
|
|
16729
16749
|
var init_workspace_membership = __esm({
|
|
16730
|
-
"
|
|
16750
|
+
"module_97"() {
|
|
16731
16751
|
"use strict";
|
|
16732
16752
|
}
|
|
16733
16753
|
});
|
|
16734
16754
|
|
|
16735
16755
|
var init_IOrganizationRepository = __esm({
|
|
16736
|
-
"
|
|
16756
|
+
"module_98"() {
|
|
16737
16757
|
"use strict";
|
|
16738
16758
|
}
|
|
16739
16759
|
});
|
|
16740
16760
|
|
|
16741
16761
|
var init_IUserRepository = __esm({
|
|
16742
|
-
"
|
|
16762
|
+
"module_99"() {
|
|
16743
16763
|
"use strict";
|
|
16744
16764
|
}
|
|
16745
16765
|
});
|
|
16746
16766
|
|
|
16747
16767
|
var init_IScanResultRepository = __esm({
|
|
16748
|
-
"
|
|
16768
|
+
"module_100"() {
|
|
16749
16769
|
"use strict";
|
|
16750
16770
|
}
|
|
16751
16771
|
});
|
|
16752
16772
|
|
|
16753
16773
|
var init_ISubscriptionRepository = __esm({
|
|
16754
|
-
"
|
|
16774
|
+
"module_101"() {
|
|
16755
16775
|
"use strict";
|
|
16756
16776
|
}
|
|
16757
16777
|
});
|
|
16758
16778
|
|
|
16759
16779
|
var init_IPersonalGitHubRepository = __esm({
|
|
16760
|
-
"
|
|
16780
|
+
"module_102"() {
|
|
16761
16781
|
"use strict";
|
|
16762
16782
|
}
|
|
16763
16783
|
});
|
|
16764
16784
|
|
|
16765
16785
|
var init_IWorkspacePreferenceRepository = __esm({
|
|
16766
|
-
"
|
|
16786
|
+
"module_103"() {
|
|
16767
16787
|
"use strict";
|
|
16768
16788
|
}
|
|
16769
16789
|
});
|
|
16770
16790
|
|
|
16771
16791
|
var init_IWorkItemRepository = __esm({
|
|
16772
|
-
"
|
|
16792
|
+
"module_104"() {
|
|
16773
16793
|
"use strict";
|
|
16774
16794
|
}
|
|
16775
16795
|
});
|
|
16776
16796
|
|
|
16777
16797
|
var init_IAuthRepository = __esm({
|
|
16778
|
-
"
|
|
16798
|
+
"module_105"() {
|
|
16779
16799
|
"use strict";
|
|
16780
16800
|
}
|
|
16781
16801
|
});
|
|
16782
16802
|
|
|
16783
16803
|
var init_IWorkspaceRepository = __esm({
|
|
16784
|
-
"
|
|
16804
|
+
"module_106"() {
|
|
16785
16805
|
"use strict";
|
|
16786
16806
|
}
|
|
16787
16807
|
});
|
|
16788
16808
|
|
|
16789
16809
|
var init_ISessionRepository = __esm({
|
|
16790
|
-
"
|
|
16810
|
+
"module_107"() {
|
|
16791
16811
|
"use strict";
|
|
16792
16812
|
}
|
|
16793
16813
|
});
|
|
16794
16814
|
|
|
16795
16815
|
var init_IConfigRepository = __esm({
|
|
16796
|
-
"
|
|
16816
|
+
"module_108"() {
|
|
16797
16817
|
"use strict";
|
|
16798
16818
|
}
|
|
16799
16819
|
});
|
|
16800
16820
|
|
|
16801
16821
|
var init_IProposalRepository = __esm({
|
|
16802
|
-
"
|
|
16822
|
+
"module_109"() {
|
|
16803
16823
|
"use strict";
|
|
16804
16824
|
}
|
|
16805
16825
|
});
|
|
16806
16826
|
|
|
16807
16827
|
var init_ITrackedRepoRepository = __esm({
|
|
16808
|
-
"
|
|
16828
|
+
"module_110"() {
|
|
16809
16829
|
"use strict";
|
|
16810
16830
|
}
|
|
16811
16831
|
});
|
|
16812
16832
|
|
|
16813
16833
|
var init_ISdlcRepository = __esm({
|
|
16814
|
-
"
|
|
16834
|
+
"module_111"() {
|
|
16815
16835
|
"use strict";
|
|
16816
16836
|
}
|
|
16817
16837
|
});
|
|
16818
16838
|
|
|
16819
16839
|
var init_ICredentialRepository = __esm({
|
|
16820
|
-
"
|
|
16840
|
+
"module_112"() {
|
|
16821
16841
|
"use strict";
|
|
16822
16842
|
}
|
|
16823
16843
|
});
|
|
16824
16844
|
|
|
16825
16845
|
var init_IInviteRepository = __esm({
|
|
16826
|
-
"
|
|
16846
|
+
"module_113"() {
|
|
16827
16847
|
"use strict";
|
|
16828
16848
|
}
|
|
16829
16849
|
});
|
|
16830
16850
|
|
|
16831
16851
|
var init_IBillingRepository = __esm({
|
|
16832
|
-
"
|
|
16852
|
+
"module_114"() {
|
|
16833
16853
|
"use strict";
|
|
16834
16854
|
}
|
|
16835
16855
|
});
|
|
16836
16856
|
|
|
16837
16857
|
var init_IFleetRepository = __esm({
|
|
16838
|
-
"
|
|
16858
|
+
"module_115"() {
|
|
16839
16859
|
"use strict";
|
|
16840
16860
|
}
|
|
16841
16861
|
});
|
|
16842
16862
|
|
|
16843
16863
|
var init_ITelemetryRepository = __esm({
|
|
16844
|
-
"
|
|
16864
|
+
"module_116"() {
|
|
16845
16865
|
"use strict";
|
|
16846
16866
|
}
|
|
16847
16867
|
});
|
|
16848
16868
|
|
|
16849
16869
|
var init_RedirectValidator = __esm({
|
|
16850
|
-
"
|
|
16870
|
+
"module_117"() {
|
|
16851
16871
|
"use strict";
|
|
16852
16872
|
}
|
|
16853
16873
|
});
|
|
16854
16874
|
|
|
16855
16875
|
var DomainError;
|
|
16856
16876
|
var init_DomainError = __esm({
|
|
16857
|
-
"
|
|
16877
|
+
"module_118"() {
|
|
16858
16878
|
"use strict";
|
|
16859
16879
|
DomainError = class _DomainError extends Error {
|
|
16860
16880
|
constructor(message, code) {
|
|
@@ -16869,7 +16889,7 @@ var init_DomainError = __esm({
|
|
|
16869
16889
|
|
|
16870
16890
|
var OrganizationService;
|
|
16871
16891
|
var init_OrganizationService = __esm({
|
|
16872
|
-
"
|
|
16892
|
+
"module_119"() {
|
|
16873
16893
|
"use strict";
|
|
16874
16894
|
init_organization();
|
|
16875
16895
|
init_DomainError();
|
|
@@ -17069,7 +17089,7 @@ var init_OrganizationService = __esm({
|
|
|
17069
17089
|
|
|
17070
17090
|
var ValidationError;
|
|
17071
17091
|
var init_ValidationError = __esm({
|
|
17072
|
-
"
|
|
17092
|
+
"module_120"() {
|
|
17073
17093
|
"use strict";
|
|
17074
17094
|
init_DomainError();
|
|
17075
17095
|
ValidationError = class _ValidationError extends DomainError {
|
|
@@ -17103,7 +17123,7 @@ var init_ValidationError = __esm({
|
|
|
17103
17123
|
|
|
17104
17124
|
var TeamService;
|
|
17105
17125
|
var init_TeamService = __esm({
|
|
17106
|
-
"
|
|
17126
|
+
"module_121"() {
|
|
17107
17127
|
"use strict";
|
|
17108
17128
|
init_team_member();
|
|
17109
17129
|
init_ValidationError();
|
|
@@ -17250,13 +17270,13 @@ var init_TeamService = __esm({
|
|
|
17250
17270
|
});
|
|
17251
17271
|
|
|
17252
17272
|
var init_TeamSyncService = __esm({
|
|
17253
|
-
"
|
|
17273
|
+
"module_122"() {
|
|
17254
17274
|
"use strict";
|
|
17255
17275
|
}
|
|
17256
17276
|
});
|
|
17257
17277
|
|
|
17258
17278
|
var init_organizations = __esm({
|
|
17259
|
-
"
|
|
17279
|
+
"module_123"() {
|
|
17260
17280
|
"use strict";
|
|
17261
17281
|
init_OrganizationService();
|
|
17262
17282
|
init_TeamService();
|
|
@@ -17266,7 +17286,7 @@ var init_organizations = __esm({
|
|
|
17266
17286
|
|
|
17267
17287
|
var SubscriptionService;
|
|
17268
17288
|
var init_SubscriptionService = __esm({
|
|
17269
|
-
"
|
|
17289
|
+
"module_124"() {
|
|
17270
17290
|
"use strict";
|
|
17271
17291
|
SubscriptionService = class {
|
|
17272
17292
|
constructor(subscriptionRepository) {
|
|
@@ -17289,14 +17309,14 @@ var init_SubscriptionService = __esm({
|
|
|
17289
17309
|
});
|
|
17290
17310
|
|
|
17291
17311
|
var init_subscriptions = __esm({
|
|
17292
|
-
"
|
|
17312
|
+
"module_125"() {
|
|
17293
17313
|
"use strict";
|
|
17294
17314
|
init_SubscriptionService();
|
|
17295
17315
|
}
|
|
17296
17316
|
});
|
|
17297
17317
|
|
|
17298
17318
|
var init_WorkspaceService = __esm({
|
|
17299
|
-
"
|
|
17319
|
+
"module_126"() {
|
|
17300
17320
|
"use strict";
|
|
17301
17321
|
init_workspace2();
|
|
17302
17322
|
init_workspace_membership();
|
|
@@ -17304,20 +17324,20 @@ var init_WorkspaceService = __esm({
|
|
|
17304
17324
|
});
|
|
17305
17325
|
|
|
17306
17326
|
var init_workspace3 = __esm({
|
|
17307
|
-
"
|
|
17327
|
+
"module_127"() {
|
|
17308
17328
|
"use strict";
|
|
17309
17329
|
init_WorkspaceService();
|
|
17310
17330
|
}
|
|
17311
17331
|
});
|
|
17312
17332
|
|
|
17313
17333
|
var init_IEnvironmentConfig = __esm({
|
|
17314
|
-
"
|
|
17334
|
+
"module_128"() {
|
|
17315
17335
|
"use strict";
|
|
17316
17336
|
}
|
|
17317
17337
|
});
|
|
17318
17338
|
|
|
17319
17339
|
var init_admin_orgs = __esm({
|
|
17320
|
-
"
|
|
17340
|
+
"module_129"() {
|
|
17321
17341
|
"use strict";
|
|
17322
17342
|
}
|
|
17323
17343
|
});
|
|
@@ -17327,7 +17347,7 @@ function meetsAudience(userTier, required2 = "public") {
|
|
|
17327
17347
|
}
|
|
17328
17348
|
var TIER_RANK;
|
|
17329
17349
|
var init_audience_tier = __esm({
|
|
17330
|
-
"
|
|
17350
|
+
"module_130"() {
|
|
17331
17351
|
"use strict";
|
|
17332
17352
|
TIER_RANK = {
|
|
17333
17353
|
public: 0,
|
|
@@ -17338,7 +17358,7 @@ var init_audience_tier = __esm({
|
|
|
17338
17358
|
});
|
|
17339
17359
|
|
|
17340
17360
|
var init_browser_profile_storage_state = __esm({
|
|
17341
|
-
"
|
|
17361
|
+
"module_131"() {
|
|
17342
17362
|
"use strict";
|
|
17343
17363
|
}
|
|
17344
17364
|
});
|
|
@@ -17523,28 +17543,28 @@ function compileApprovedConfigEnforcementManifest(config2) {
|
|
|
17523
17543
|
};
|
|
17524
17544
|
}
|
|
17525
17545
|
var init_approved_config_enforcement = __esm({
|
|
17526
|
-
"
|
|
17546
|
+
"module_132"() {
|
|
17527
17547
|
"use strict";
|
|
17528
17548
|
init_dist2();
|
|
17529
17549
|
}
|
|
17530
17550
|
});
|
|
17531
17551
|
|
|
17532
17552
|
var init_AuthError = __esm({
|
|
17533
|
-
"
|
|
17553
|
+
"module_133"() {
|
|
17534
17554
|
"use strict";
|
|
17535
17555
|
init_DomainError();
|
|
17536
17556
|
}
|
|
17537
17557
|
});
|
|
17538
17558
|
|
|
17539
17559
|
var init_convenience_model_telemetry = __esm({
|
|
17540
|
-
"
|
|
17560
|
+
"module_134"() {
|
|
17541
17561
|
"use strict";
|
|
17542
17562
|
}
|
|
17543
17563
|
});
|
|
17544
17564
|
|
|
17545
17565
|
var VALID_CONFIG_CLASSES, VALID_RISK_TAGS, VALID_SEVERITIES, VALID_COMPLEXITIES, VALID_SOURCES, CURRENT_SCHEMA_VERSION, MAX_BULLET_POINTS, MIN_BULLET_POINTS, MAX_ONE_LINER_LENGTH, MAX_RISK_DESCRIPTION_LENGTH, MAX_RISKS, DiscoveryInsightValidator, discoveryInsightValidator;
|
|
17546
17566
|
var init_DiscoveryInsightValidator = __esm({
|
|
17547
|
-
"
|
|
17567
|
+
"module_135"() {
|
|
17548
17568
|
"use strict";
|
|
17549
17569
|
VALID_CONFIG_CLASSES = [
|
|
17550
17570
|
"security",
|
|
@@ -17777,19 +17797,19 @@ var init_DiscoveryInsightValidator = __esm({
|
|
|
17777
17797
|
});
|
|
17778
17798
|
|
|
17779
17799
|
var init_MigrationRegistry = __esm({
|
|
17780
|
-
"
|
|
17800
|
+
"module_136"() {
|
|
17781
17801
|
"use strict";
|
|
17782
17802
|
}
|
|
17783
17803
|
});
|
|
17784
17804
|
|
|
17785
17805
|
var init_register_all_migrations = __esm({
|
|
17786
|
-
"
|
|
17806
|
+
"module_137"() {
|
|
17787
17807
|
"use strict";
|
|
17788
17808
|
}
|
|
17789
17809
|
});
|
|
17790
17810
|
|
|
17791
17811
|
var init_src = __esm({
|
|
17792
|
-
"
|
|
17812
|
+
"module_138"() {
|
|
17793
17813
|
"use strict";
|
|
17794
17814
|
init_organization();
|
|
17795
17815
|
init_user2();
|
|
@@ -18039,7 +18059,7 @@ function getAllInternalFlags() {
|
|
|
18039
18059
|
}
|
|
18040
18060
|
var COMMAND_CATEGORIES, PREVIEW_COMMANDS, COMMAND_FLAGS, INTERNAL_OPTIONS, INTERNAL_SUBCOMMANDS;
|
|
18041
18061
|
var init_feature_flags2 = __esm({
|
|
18042
|
-
"
|
|
18062
|
+
"module_139"() {
|
|
18043
18063
|
"use strict";
|
|
18044
18064
|
init_src();
|
|
18045
18065
|
init_gal_home();
|
|
@@ -18135,7 +18155,7 @@ function mimicFunction(to, from, { ignoreNonConfigurable = false } = {}) {
|
|
|
18135
18155
|
}
|
|
18136
18156
|
var copyProperty, canCopyProperty, changePrototype, wrappedToString, toStringDescriptor, toStringName, changeToString;
|
|
18137
18157
|
var init_mimic_function = __esm({
|
|
18138
|
-
"
|
|
18158
|
+
"module_140"() {
|
|
18139
18159
|
copyProperty = (to, from, property, ignoreNonConfigurable) => {
|
|
18140
18160
|
if (property === "length" || property === "prototype") {
|
|
18141
18161
|
return;
|
|
@@ -18176,7 +18196,7 @@ ${fromBody}`;
|
|
|
18176
18196
|
|
|
18177
18197
|
var calledFunctions, onetime, onetime_default;
|
|
18178
18198
|
var init_onetime = __esm({
|
|
18179
|
-
"
|
|
18199
|
+
"module_141"() {
|
|
18180
18200
|
init_mimic_function();
|
|
18181
18201
|
calledFunctions = /* @__PURE__ */ new WeakMap();
|
|
18182
18202
|
onetime = (function_, options = {}) => {
|
|
@@ -18212,7 +18232,7 @@ var init_onetime = __esm({
|
|
|
18212
18232
|
|
|
18213
18233
|
var signals;
|
|
18214
18234
|
var init_signals = __esm({
|
|
18215
|
-
"
|
|
18235
|
+
"module_142"() {
|
|
18216
18236
|
signals = [];
|
|
18217
18237
|
signals.push("SIGHUP", "SIGINT", "SIGTERM");
|
|
18218
18238
|
if (process.platform !== "win32") {
|
|
@@ -18240,7 +18260,7 @@ var init_signals = __esm({
|
|
|
18240
18260
|
|
|
18241
18261
|
var processOk, kExitEmitter, global2, ObjectDefineProperty, Emitter, SignalExitBase, signalExitWrap, SignalExitFallback, SignalExit, process3, onExit, load, unload;
|
|
18242
18262
|
var init_mjs = __esm({
|
|
18243
|
-
"
|
|
18263
|
+
"module_143"() {
|
|
18244
18264
|
init_signals();
|
|
18245
18265
|
processOk = (process10) => !!process10 && typeof process10 === "object" && typeof process10.removeListener === "function" && typeof process10.emit === "function" && typeof process10.reallyExit === "function" && typeof process10.listeners === "function" && typeof process10.kill === "function" && typeof process10.pid === "number" && typeof process10.on === "function";
|
|
18246
18266
|
kExitEmitter = /* @__PURE__ */ Symbol.for("signal-exit emitter");
|
|
@@ -18478,7 +18498,7 @@ var init_mjs = __esm({
|
|
|
18478
18498
|
|
|
18479
18499
|
var import_node_process2, terminal, restoreCursor, restore_cursor_default;
|
|
18480
18500
|
var init_restore_cursor = __esm({
|
|
18481
|
-
"
|
|
18501
|
+
"module_144"() {
|
|
18482
18502
|
import_node_process2 = __toESM(require("node:process"), 1);
|
|
18483
18503
|
init_onetime();
|
|
18484
18504
|
init_mjs();
|
|
@@ -18495,7 +18515,7 @@ var init_restore_cursor = __esm({
|
|
|
18495
18515
|
|
|
18496
18516
|
var import_node_process3, isHidden, cliCursor, cli_cursor_default;
|
|
18497
18517
|
var init_cli_cursor = __esm({
|
|
18498
|
-
"
|
|
18518
|
+
"module_145"() {
|
|
18499
18519
|
import_node_process3 = __toESM(require("node:process"), 1);
|
|
18500
18520
|
init_restore_cursor();
|
|
18501
18521
|
isHidden = false;
|
|
@@ -18531,7 +18551,7 @@ var init_cli_cursor = __esm({
|
|
|
18531
18551
|
|
|
18532
18552
|
var spinners_default;
|
|
18533
18553
|
var init_spinners = __esm({
|
|
18534
|
-
"
|
|
18554
|
+
"module_146"() {
|
|
18535
18555
|
spinners_default = {
|
|
18536
18556
|
dots: {
|
|
18537
18557
|
interval: 80,
|
|
@@ -20234,7 +20254,7 @@ var init_spinners = __esm({
|
|
|
20234
20254
|
|
|
20235
20255
|
var cli_spinners_default, spinnersList;
|
|
20236
20256
|
var init_cli_spinners = __esm({
|
|
20237
|
-
"
|
|
20257
|
+
"module_147"() {
|
|
20238
20258
|
init_spinners();
|
|
20239
20259
|
cli_spinners_default = spinners_default;
|
|
20240
20260
|
spinnersList = Object.keys(spinners_default);
|
|
@@ -20243,7 +20263,7 @@ var init_cli_spinners = __esm({
|
|
|
20243
20263
|
|
|
20244
20264
|
var import_node_tty2, hasColors, format, reset, bold, dim, italic, underline, overline, inverse, hidden, strikethrough, black, red, green, yellow, blue, magenta, cyan, white, gray, bgBlack, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite, bgGray, redBright, greenBright, yellowBright, blueBright, magentaBright, cyanBright, whiteBright, bgRedBright, bgGreenBright, bgYellowBright, bgBlueBright, bgMagentaBright, bgCyanBright, bgWhiteBright;
|
|
20245
20265
|
var init_base = __esm({
|
|
20246
|
-
"
|
|
20266
|
+
"module_148"() {
|
|
20247
20267
|
import_node_tty2 = __toESM(require("node:tty"), 1);
|
|
20248
20268
|
hasColors = import_node_tty2.default?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
20249
20269
|
format = (open, close) => {
|
|
@@ -20316,7 +20336,7 @@ var init_base = __esm({
|
|
|
20316
20336
|
});
|
|
20317
20337
|
|
|
20318
20338
|
var init_yoctocolors = __esm({
|
|
20319
|
-
"
|
|
20339
|
+
"module_149"() {
|
|
20320
20340
|
init_base();
|
|
20321
20341
|
init_base();
|
|
20322
20342
|
}
|
|
@@ -20332,7 +20352,7 @@ function isUnicodeSupported() {
|
|
|
20332
20352
|
}
|
|
20333
20353
|
var import_node_process4;
|
|
20334
20354
|
var init_is_unicode_supported = __esm({
|
|
20335
|
-
"
|
|
20355
|
+
"module_150"() {
|
|
20336
20356
|
import_node_process4 = __toESM(require("node:process"), 1);
|
|
20337
20357
|
}
|
|
20338
20358
|
});
|
|
@@ -20346,7 +20366,7 @@ __export(symbols_exports, {
|
|
|
20346
20366
|
});
|
|
20347
20367
|
var _isUnicodeSupported, info, success, warning, error;
|
|
20348
20368
|
var init_symbols = __esm({
|
|
20349
|
-
"
|
|
20369
|
+
"module_151"() {
|
|
20350
20370
|
init_yoctocolors();
|
|
20351
20371
|
init_is_unicode_supported();
|
|
20352
20372
|
_isUnicodeSupported = isUnicodeSupported();
|
|
@@ -20358,7 +20378,7 @@ var init_symbols = __esm({
|
|
|
20358
20378
|
});
|
|
20359
20379
|
|
|
20360
20380
|
var init_log_symbols = __esm({
|
|
20361
|
-
"
|
|
20381
|
+
"module_152"() {
|
|
20362
20382
|
init_symbols();
|
|
20363
20383
|
}
|
|
20364
20384
|
});
|
|
@@ -20371,7 +20391,7 @@ function ansiRegex({ onlyFirst = false } = {}) {
|
|
|
20371
20391
|
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
20372
20392
|
}
|
|
20373
20393
|
var init_ansi_regex = __esm({
|
|
20374
|
-
"
|
|
20394
|
+
"module_153"() {
|
|
20375
20395
|
}
|
|
20376
20396
|
});
|
|
20377
20397
|
|
|
@@ -20386,7 +20406,7 @@ function stripAnsi(string3) {
|
|
|
20386
20406
|
}
|
|
20387
20407
|
var regex;
|
|
20388
20408
|
var init_strip_ansi = __esm({
|
|
20389
|
-
"
|
|
20409
|
+
"module_154"() {
|
|
20390
20410
|
init_ansi_regex();
|
|
20391
20411
|
regex = ansiRegex();
|
|
20392
20412
|
}
|
|
@@ -20394,7 +20414,7 @@ var init_strip_ansi = __esm({
|
|
|
20394
20414
|
|
|
20395
20415
|
var ambiguousRanges, fullwidthRanges, halfwidthRanges, narrowRanges, wideRanges;
|
|
20396
20416
|
var init_lookup_data = __esm({
|
|
20397
|
-
"
|
|
20417
|
+
"module_155"() {
|
|
20398
20418
|
ambiguousRanges = [161, 161, 164, 164, 167, 168, 170, 170, 173, 174, 176, 180, 182, 186, 188, 191, 198, 198, 208, 208, 215, 216, 222, 225, 230, 230, 232, 234, 236, 237, 240, 240, 242, 243, 247, 250, 252, 252, 254, 254, 257, 257, 273, 273, 275, 275, 283, 283, 294, 295, 299, 299, 305, 307, 312, 312, 319, 322, 324, 324, 328, 331, 333, 333, 338, 339, 358, 359, 363, 363, 462, 462, 464, 464, 466, 466, 468, 468, 470, 470, 472, 472, 474, 474, 476, 476, 593, 593, 609, 609, 708, 708, 711, 711, 713, 715, 717, 717, 720, 720, 728, 731, 733, 733, 735, 735, 768, 879, 913, 929, 931, 937, 945, 961, 963, 969, 1025, 1025, 1040, 1103, 1105, 1105, 8208, 8208, 8211, 8214, 8216, 8217, 8220, 8221, 8224, 8226, 8228, 8231, 8240, 8240, 8242, 8243, 8245, 8245, 8251, 8251, 8254, 8254, 8308, 8308, 8319, 8319, 8321, 8324, 8364, 8364, 8451, 8451, 8453, 8453, 8457, 8457, 8467, 8467, 8470, 8470, 8481, 8482, 8486, 8486, 8491, 8491, 8531, 8532, 8539, 8542, 8544, 8555, 8560, 8569, 8585, 8585, 8592, 8601, 8632, 8633, 8658, 8658, 8660, 8660, 8679, 8679, 8704, 8704, 8706, 8707, 8711, 8712, 8715, 8715, 8719, 8719, 8721, 8721, 8725, 8725, 8730, 8730, 8733, 8736, 8739, 8739, 8741, 8741, 8743, 8748, 8750, 8750, 8756, 8759, 8764, 8765, 8776, 8776, 8780, 8780, 8786, 8786, 8800, 8801, 8804, 8807, 8810, 8811, 8814, 8815, 8834, 8835, 8838, 8839, 8853, 8853, 8857, 8857, 8869, 8869, 8895, 8895, 8978, 8978, 9312, 9449, 9451, 9547, 9552, 9587, 9600, 9615, 9618, 9621, 9632, 9633, 9635, 9641, 9650, 9651, 9654, 9655, 9660, 9661, 9664, 9665, 9670, 9672, 9675, 9675, 9678, 9681, 9698, 9701, 9711, 9711, 9733, 9734, 9737, 9737, 9742, 9743, 9756, 9756, 9758, 9758, 9792, 9792, 9794, 9794, 9824, 9825, 9827, 9829, 9831, 9834, 9836, 9837, 9839, 9839, 9886, 9887, 9919, 9919, 9926, 9933, 9935, 9939, 9941, 9953, 9955, 9955, 9960, 9961, 9963, 9969, 9972, 9972, 9974, 9977, 9979, 9980, 9982, 9983, 10045, 10045, 10102, 10111, 11094, 11097, 12872, 12879, 57344, 63743, 65024, 65039, 65533, 65533, 127232, 127242, 127248, 127277, 127280, 127337, 127344, 127373, 127375, 127376, 127387, 127404, 917760, 917999, 983040, 1048573, 1048576, 1114109];
|
|
20399
20419
|
fullwidthRanges = [12288, 12288, 65281, 65376, 65504, 65510];
|
|
20400
20420
|
halfwidthRanges = [8361, 8361, 65377, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500, 65512, 65518];
|
|
@@ -20405,7 +20425,7 @@ var init_lookup_data = __esm({
|
|
|
20405
20425
|
|
|
20406
20426
|
var isInRange;
|
|
20407
20427
|
var init_utilities2 = __esm({
|
|
20408
|
-
"
|
|
20428
|
+
"module_156"() {
|
|
20409
20429
|
isInRange = (ranges, codePoint) => {
|
|
20410
20430
|
let low = 0;
|
|
20411
20431
|
let high = Math.floor(ranges.length / 2) - 1;
|
|
@@ -20443,7 +20463,7 @@ function findWideFastPathRange(ranges) {
|
|
|
20443
20463
|
}
|
|
20444
20464
|
var minimumAmbiguousCodePoint, maximumAmbiguousCodePoint, minimumFullWidthCodePoint, maximumFullWidthCodePoint, minimumHalfWidthCodePoint, maximumHalfWidthCodePoint, minimumNarrowCodePoint, maximumNarrowCodePoint, minimumWideCodePoint, maximumWideCodePoint, commonCjkCodePoint, wideFastPathStart, wideFastPathEnd, isAmbiguous, isFullWidth, isWide;
|
|
20445
20465
|
var init_lookup = __esm({
|
|
20446
|
-
"
|
|
20466
|
+
"module_157"() {
|
|
20447
20467
|
init_lookup_data();
|
|
20448
20468
|
init_utilities2();
|
|
20449
20469
|
minimumAmbiguousCodePoint = ambiguousRanges[0];
|
|
@@ -20495,7 +20515,7 @@ function eastAsianWidth(codePoint, { ambiguousAsWide = false } = {}) {
|
|
|
20495
20515
|
return 1;
|
|
20496
20516
|
}
|
|
20497
20517
|
var init_get_east_asian_width = __esm({
|
|
20498
|
-
"
|
|
20518
|
+
"module_158"() {
|
|
20499
20519
|
init_lookup();
|
|
20500
20520
|
}
|
|
20501
20521
|
});
|
|
@@ -20566,7 +20586,7 @@ function stringWidth(input, options = {}) {
|
|
|
20566
20586
|
}
|
|
20567
20587
|
var segmenter, zeroWidthClusterRegex, leadingNonPrintingRegex, rgiEmojiRegex, unqualifiedKeycapRegex, extendedPictographicRegex;
|
|
20568
20588
|
var init_string_width = __esm({
|
|
20569
|
-
"
|
|
20589
|
+
"module_159"() {
|
|
20570
20590
|
init_strip_ansi();
|
|
20571
20591
|
init_get_east_asian_width();
|
|
20572
20592
|
segmenter = new Intl.Segmenter();
|
|
@@ -20584,13 +20604,13 @@ function isInteractive({ stream = process.stdout } = {}) {
|
|
|
20584
20604
|
);
|
|
20585
20605
|
}
|
|
20586
20606
|
var init_is_interactive = __esm({
|
|
20587
|
-
"
|
|
20607
|
+
"module_160"() {
|
|
20588
20608
|
}
|
|
20589
20609
|
});
|
|
20590
20610
|
|
|
20591
20611
|
var import_node_process5, ASCII_ETX_CODE, StdinDiscarder, stdinDiscarder, stdin_discarder_default;
|
|
20592
20612
|
var init_stdin_discarder = __esm({
|
|
20593
|
-
"
|
|
20613
|
+
"module_161"() {
|
|
20594
20614
|
import_node_process5 = __toESM(require("node:process"), 1);
|
|
20595
20615
|
ASCII_ETX_CODE = 3;
|
|
20596
20616
|
StdinDiscarder = class {
|
|
@@ -20667,7 +20687,7 @@ function ora(options) {
|
|
|
20667
20687
|
}
|
|
20668
20688
|
var import_node_process6, import_node_util, RENDER_DEFERRAL_TIMEOUT, SYNCHRONIZED_OUTPUT_ENABLE, SYNCHRONIZED_OUTPUT_DISABLE, activeHooksPerStream, Ora;
|
|
20669
20689
|
var init_ora = __esm({
|
|
20670
|
-
"
|
|
20690
|
+
"module_162"() {
|
|
20671
20691
|
import_node_process6 = __toESM(require("node:process"), 1);
|
|
20672
20692
|
import_node_util = require("node:util");
|
|
20673
20693
|
init_source();
|
|
@@ -21126,7 +21146,7 @@ var init_ora = __esm({
|
|
|
21126
21146
|
|
|
21127
21147
|
var DEFAULT_TIMEOUT_MS, DEFAULT_CREDENTIALS, normalizeHeaders, createHttpFetch;
|
|
21128
21148
|
var init_http_client = __esm({
|
|
21129
|
-
"
|
|
21149
|
+
"module_163"() {
|
|
21130
21150
|
"use strict";
|
|
21131
21151
|
DEFAULT_TIMEOUT_MS = 1e4;
|
|
21132
21152
|
DEFAULT_CREDENTIALS = "include";
|
|
@@ -21198,7 +21218,7 @@ var init_http_client = __esm({
|
|
|
21198
21218
|
|
|
21199
21219
|
var HttpClient;
|
|
21200
21220
|
var init_HttpClient = __esm({
|
|
21201
|
-
"
|
|
21221
|
+
"module_164"() {
|
|
21202
21222
|
"use strict";
|
|
21203
21223
|
HttpClient = class {
|
|
21204
21224
|
constructor(config2) {
|
|
@@ -21263,7 +21283,7 @@ var init_HttpClient = __esm({
|
|
|
21263
21283
|
|
|
21264
21284
|
var HttpConfigRepository;
|
|
21265
21285
|
var init_HttpConfigRepository = __esm({
|
|
21266
|
-
"
|
|
21286
|
+
"module_165"() {
|
|
21267
21287
|
"use strict";
|
|
21268
21288
|
init_HttpClient();
|
|
21269
21289
|
HttpConfigRepository = class extends HttpClient {
|
|
@@ -21516,7 +21536,7 @@ var init_HttpConfigRepository = __esm({
|
|
|
21516
21536
|
|
|
21517
21537
|
var HttpFleetRepository;
|
|
21518
21538
|
var init_HttpFleetRepository = __esm({
|
|
21519
|
-
"
|
|
21539
|
+
"module_166"() {
|
|
21520
21540
|
"use strict";
|
|
21521
21541
|
init_HttpClient();
|
|
21522
21542
|
HttpFleetRepository = class extends HttpClient {
|
|
@@ -21640,7 +21660,7 @@ var init_HttpFleetRepository = __esm({
|
|
|
21640
21660
|
|
|
21641
21661
|
var HttpInviteRepository;
|
|
21642
21662
|
var init_HttpInviteRepository = __esm({
|
|
21643
|
-
"
|
|
21663
|
+
"module_167"() {
|
|
21644
21664
|
"use strict";
|
|
21645
21665
|
init_HttpClient();
|
|
21646
21666
|
HttpInviteRepository = class extends HttpClient {
|
|
@@ -21700,7 +21720,7 @@ var init_HttpInviteRepository = __esm({
|
|
|
21700
21720
|
|
|
21701
21721
|
var HttpProposalRepository;
|
|
21702
21722
|
var init_HttpProposalRepository = __esm({
|
|
21703
|
-
"
|
|
21723
|
+
"module_168"() {
|
|
21704
21724
|
"use strict";
|
|
21705
21725
|
init_HttpClient();
|
|
21706
21726
|
HttpProposalRepository = class extends HttpClient {
|
|
@@ -21796,7 +21816,7 @@ var init_HttpProposalRepository = __esm({
|
|
|
21796
21816
|
|
|
21797
21817
|
var HttpAuthRepository;
|
|
21798
21818
|
var init_HttpAuthRepository = __esm({
|
|
21799
|
-
"
|
|
21819
|
+
"module_169"() {
|
|
21800
21820
|
"use strict";
|
|
21801
21821
|
init_HttpClient();
|
|
21802
21822
|
HttpAuthRepository = class extends HttpClient {
|
|
@@ -21949,7 +21969,7 @@ var init_HttpAuthRepository = __esm({
|
|
|
21949
21969
|
|
|
21950
21970
|
var HttpTelemetryRepository;
|
|
21951
21971
|
var init_HttpTelemetryRepository = __esm({
|
|
21952
|
-
"
|
|
21972
|
+
"module_170"() {
|
|
21953
21973
|
"use strict";
|
|
21954
21974
|
init_HttpClient();
|
|
21955
21975
|
HttpTelemetryRepository = class extends HttpClient {
|
|
@@ -22003,7 +22023,7 @@ var init_HttpTelemetryRepository = __esm({
|
|
|
22003
22023
|
|
|
22004
22024
|
var Organization2;
|
|
22005
22025
|
var init_organization2 = __esm({
|
|
22006
|
-
"
|
|
22026
|
+
"module_171"() {
|
|
22007
22027
|
"use strict";
|
|
22008
22028
|
Organization2 = class {
|
|
22009
22029
|
constructor(id, name, installationId2, accountType, totalRepos, totalConfigs, totalCommands, totalHooks, settings, commands, hooks, platforms, hookSettings, planTier, seatLimit, stripeCustomerId, stripeSubscriptionId, manualGrant, configRepoEnabled, configRepoUrl, configRepoCreatedAt, lastConfigSyncAt, lastScanAt, audienceTierRef, audienceTierSource, entitledFeatures, installedByGithubId, installedByLogin, createdAt = /* @__PURE__ */ new Date(), updatedAt = /* @__PURE__ */ new Date(), memberCount) {
|
|
@@ -22104,7 +22124,7 @@ var init_organization2 = __esm({
|
|
|
22104
22124
|
|
|
22105
22125
|
var User;
|
|
22106
22126
|
var init_user3 = __esm({
|
|
22107
|
-
"
|
|
22127
|
+
"module_172"() {
|
|
22108
22128
|
"use strict";
|
|
22109
22129
|
User = class {
|
|
22110
22130
|
constructor(githubId, login, email2, name, avatarUrl, organizations, adminOrganizations, createdAt = /* @__PURE__ */ new Date(), updatedAt = /* @__PURE__ */ new Date(), providers = []) {
|
|
@@ -22258,7 +22278,7 @@ var init_user3 = __esm({
|
|
|
22258
22278
|
|
|
22259
22279
|
var ScanResult;
|
|
22260
22280
|
var init_scan_result2 = __esm({
|
|
22261
|
-
"
|
|
22281
|
+
"module_173"() {
|
|
22262
22282
|
"use strict";
|
|
22263
22283
|
ScanResult = class {
|
|
22264
22284
|
constructor(platform5, owner, repo, scannedAt, settings, rules = [], commands = [], hooks = [], agents = [], instructions, cursorRules, agentsMd, geminiMd, windsurfRules, copilotInstructions, mcpConfig) {
|
|
@@ -22358,7 +22378,7 @@ var init_scan_result2 = __esm({
|
|
|
22358
22378
|
|
|
22359
22379
|
var TeamMember2;
|
|
22360
22380
|
var init_team_member2 = __esm({
|
|
22361
|
-
"
|
|
22381
|
+
"module_174"() {
|
|
22362
22382
|
"use strict";
|
|
22363
22383
|
TeamMember2 = class {
|
|
22364
22384
|
constructor(userId, githubLogin, githubId, name, email2, avatarUrl, githubOrgRole, galRole, roleAssignedBy, roleAssignedAt, lastActiveAt, createdAt = /* @__PURE__ */ new Date(), updatedAt = /* @__PURE__ */ new Date()) {
|
|
@@ -22457,7 +22477,7 @@ var init_team_member2 = __esm({
|
|
|
22457
22477
|
|
|
22458
22478
|
var Subscription, TIER_LEVELS, FEATURE_REQUIREMENTS;
|
|
22459
22479
|
var init_subscription2 = __esm({
|
|
22460
|
-
"
|
|
22480
|
+
"module_175"() {
|
|
22461
22481
|
"use strict";
|
|
22462
22482
|
Subscription = class {
|
|
22463
22483
|
constructor(organizationName, planTier, seatLimit, stripeCustomerId, stripeSubscriptionId, manualGrant, createdAt = /* @__PURE__ */ new Date(), updatedAt = /* @__PURE__ */ new Date()) {
|
|
@@ -22588,145 +22608,145 @@ var init_subscription2 = __esm({
|
|
|
22588
22608
|
});
|
|
22589
22609
|
|
|
22590
22610
|
var init_workspace4 = __esm({
|
|
22591
|
-
"
|
|
22611
|
+
"module_176"() {
|
|
22592
22612
|
"use strict";
|
|
22593
22613
|
}
|
|
22594
22614
|
});
|
|
22595
22615
|
|
|
22596
22616
|
var init_workspace_membership2 = __esm({
|
|
22597
|
-
"
|
|
22617
|
+
"module_177"() {
|
|
22598
22618
|
"use strict";
|
|
22599
22619
|
}
|
|
22600
22620
|
});
|
|
22601
22621
|
|
|
22602
22622
|
var init_IOrganizationRepository2 = __esm({
|
|
22603
|
-
"
|
|
22623
|
+
"module_178"() {
|
|
22604
22624
|
"use strict";
|
|
22605
22625
|
}
|
|
22606
22626
|
});
|
|
22607
22627
|
|
|
22608
22628
|
var init_IUserRepository2 = __esm({
|
|
22609
|
-
"
|
|
22629
|
+
"module_179"() {
|
|
22610
22630
|
"use strict";
|
|
22611
22631
|
}
|
|
22612
22632
|
});
|
|
22613
22633
|
|
|
22614
22634
|
var init_IScanResultRepository2 = __esm({
|
|
22615
|
-
"
|
|
22635
|
+
"module_180"() {
|
|
22616
22636
|
"use strict";
|
|
22617
22637
|
}
|
|
22618
22638
|
});
|
|
22619
22639
|
|
|
22620
22640
|
var init_ISubscriptionRepository2 = __esm({
|
|
22621
|
-
"
|
|
22641
|
+
"module_181"() {
|
|
22622
22642
|
"use strict";
|
|
22623
22643
|
}
|
|
22624
22644
|
});
|
|
22625
22645
|
|
|
22626
22646
|
var init_IPersonalGitHubRepository2 = __esm({
|
|
22627
|
-
"
|
|
22647
|
+
"module_182"() {
|
|
22628
22648
|
"use strict";
|
|
22629
22649
|
}
|
|
22630
22650
|
});
|
|
22631
22651
|
|
|
22632
22652
|
var init_IWorkspacePreferenceRepository2 = __esm({
|
|
22633
|
-
"
|
|
22653
|
+
"module_183"() {
|
|
22634
22654
|
"use strict";
|
|
22635
22655
|
}
|
|
22636
22656
|
});
|
|
22637
22657
|
|
|
22638
22658
|
var init_IWorkItemRepository2 = __esm({
|
|
22639
|
-
"
|
|
22659
|
+
"module_184"() {
|
|
22640
22660
|
"use strict";
|
|
22641
22661
|
}
|
|
22642
22662
|
});
|
|
22643
22663
|
|
|
22644
22664
|
var init_IAuthRepository2 = __esm({
|
|
22645
|
-
"
|
|
22665
|
+
"module_185"() {
|
|
22646
22666
|
"use strict";
|
|
22647
22667
|
}
|
|
22648
22668
|
});
|
|
22649
22669
|
|
|
22650
22670
|
var init_IWorkspaceRepository2 = __esm({
|
|
22651
|
-
"
|
|
22671
|
+
"module_186"() {
|
|
22652
22672
|
"use strict";
|
|
22653
22673
|
}
|
|
22654
22674
|
});
|
|
22655
22675
|
|
|
22656
22676
|
var init_ISessionRepository2 = __esm({
|
|
22657
|
-
"
|
|
22677
|
+
"module_187"() {
|
|
22658
22678
|
"use strict";
|
|
22659
22679
|
}
|
|
22660
22680
|
});
|
|
22661
22681
|
|
|
22662
22682
|
var init_IConfigRepository2 = __esm({
|
|
22663
|
-
"
|
|
22683
|
+
"module_188"() {
|
|
22664
22684
|
"use strict";
|
|
22665
22685
|
}
|
|
22666
22686
|
});
|
|
22667
22687
|
|
|
22668
22688
|
var init_IProposalRepository2 = __esm({
|
|
22669
|
-
"
|
|
22689
|
+
"module_189"() {
|
|
22670
22690
|
"use strict";
|
|
22671
22691
|
}
|
|
22672
22692
|
});
|
|
22673
22693
|
|
|
22674
22694
|
var init_ITrackedRepoRepository2 = __esm({
|
|
22675
|
-
"
|
|
22695
|
+
"module_190"() {
|
|
22676
22696
|
"use strict";
|
|
22677
22697
|
}
|
|
22678
22698
|
});
|
|
22679
22699
|
|
|
22680
22700
|
var init_ISdlcRepository2 = __esm({
|
|
22681
|
-
"
|
|
22701
|
+
"module_191"() {
|
|
22682
22702
|
"use strict";
|
|
22683
22703
|
}
|
|
22684
22704
|
});
|
|
22685
22705
|
|
|
22686
22706
|
var init_ICredentialRepository2 = __esm({
|
|
22687
|
-
"
|
|
22707
|
+
"module_192"() {
|
|
22688
22708
|
"use strict";
|
|
22689
22709
|
}
|
|
22690
22710
|
});
|
|
22691
22711
|
|
|
22692
22712
|
var init_IInviteRepository2 = __esm({
|
|
22693
|
-
"
|
|
22713
|
+
"module_193"() {
|
|
22694
22714
|
"use strict";
|
|
22695
22715
|
}
|
|
22696
22716
|
});
|
|
22697
22717
|
|
|
22698
22718
|
var init_IBillingRepository2 = __esm({
|
|
22699
|
-
"
|
|
22719
|
+
"module_194"() {
|
|
22700
22720
|
"use strict";
|
|
22701
22721
|
}
|
|
22702
22722
|
});
|
|
22703
22723
|
|
|
22704
22724
|
var init_IFleetRepository2 = __esm({
|
|
22705
|
-
"
|
|
22725
|
+
"module_195"() {
|
|
22706
22726
|
"use strict";
|
|
22707
22727
|
}
|
|
22708
22728
|
});
|
|
22709
22729
|
|
|
22710
22730
|
var init_ITelemetryRepository2 = __esm({
|
|
22711
|
-
"
|
|
22731
|
+
"module_196"() {
|
|
22712
22732
|
"use strict";
|
|
22713
22733
|
}
|
|
22714
22734
|
});
|
|
22715
22735
|
|
|
22716
22736
|
var init_RedirectValidator2 = __esm({
|
|
22717
|
-
"
|
|
22737
|
+
"module_197"() {
|
|
22718
22738
|
"use strict";
|
|
22719
22739
|
}
|
|
22720
22740
|
});
|
|
22721
22741
|
|
|
22722
22742
|
var init_DomainError2 = __esm({
|
|
22723
|
-
"
|
|
22743
|
+
"module_198"() {
|
|
22724
22744
|
"use strict";
|
|
22725
22745
|
}
|
|
22726
22746
|
});
|
|
22727
22747
|
|
|
22728
22748
|
var init_OrganizationService2 = __esm({
|
|
22729
|
-
"
|
|
22749
|
+
"module_199"() {
|
|
22730
22750
|
"use strict";
|
|
22731
22751
|
init_organization2();
|
|
22732
22752
|
init_DomainError2();
|
|
@@ -22734,14 +22754,14 @@ var init_OrganizationService2 = __esm({
|
|
|
22734
22754
|
});
|
|
22735
22755
|
|
|
22736
22756
|
var init_ValidationError2 = __esm({
|
|
22737
|
-
"
|
|
22757
|
+
"module_200"() {
|
|
22738
22758
|
"use strict";
|
|
22739
22759
|
init_DomainError2();
|
|
22740
22760
|
}
|
|
22741
22761
|
});
|
|
22742
22762
|
|
|
22743
22763
|
var init_TeamService2 = __esm({
|
|
22744
|
-
"
|
|
22764
|
+
"module_201"() {
|
|
22745
22765
|
"use strict";
|
|
22746
22766
|
init_team_member2();
|
|
22747
22767
|
init_ValidationError2();
|
|
@@ -22750,13 +22770,13 @@ var init_TeamService2 = __esm({
|
|
|
22750
22770
|
});
|
|
22751
22771
|
|
|
22752
22772
|
var init_TeamSyncService2 = __esm({
|
|
22753
|
-
"
|
|
22773
|
+
"module_202"() {
|
|
22754
22774
|
"use strict";
|
|
22755
22775
|
}
|
|
22756
22776
|
});
|
|
22757
22777
|
|
|
22758
22778
|
var init_organizations2 = __esm({
|
|
22759
|
-
"
|
|
22779
|
+
"module_203"() {
|
|
22760
22780
|
"use strict";
|
|
22761
22781
|
init_OrganizationService2();
|
|
22762
22782
|
init_TeamService2();
|
|
@@ -22765,20 +22785,20 @@ var init_organizations2 = __esm({
|
|
|
22765
22785
|
});
|
|
22766
22786
|
|
|
22767
22787
|
var init_SubscriptionService2 = __esm({
|
|
22768
|
-
"
|
|
22788
|
+
"module_204"() {
|
|
22769
22789
|
"use strict";
|
|
22770
22790
|
}
|
|
22771
22791
|
});
|
|
22772
22792
|
|
|
22773
22793
|
var init_subscriptions2 = __esm({
|
|
22774
|
-
"
|
|
22794
|
+
"module_205"() {
|
|
22775
22795
|
"use strict";
|
|
22776
22796
|
init_SubscriptionService2();
|
|
22777
22797
|
}
|
|
22778
22798
|
});
|
|
22779
22799
|
|
|
22780
22800
|
var init_WorkspaceService2 = __esm({
|
|
22781
|
-
"
|
|
22801
|
+
"module_206"() {
|
|
22782
22802
|
"use strict";
|
|
22783
22803
|
init_workspace4();
|
|
22784
22804
|
init_workspace_membership2();
|
|
@@ -22786,59 +22806,59 @@ var init_WorkspaceService2 = __esm({
|
|
|
22786
22806
|
});
|
|
22787
22807
|
|
|
22788
22808
|
var init_workspace5 = __esm({
|
|
22789
|
-
"
|
|
22809
|
+
"module_207"() {
|
|
22790
22810
|
"use strict";
|
|
22791
22811
|
init_WorkspaceService2();
|
|
22792
22812
|
}
|
|
22793
22813
|
});
|
|
22794
22814
|
|
|
22795
22815
|
var init_IEnvironmentConfig2 = __esm({
|
|
22796
|
-
"
|
|
22816
|
+
"module_208"() {
|
|
22797
22817
|
"use strict";
|
|
22798
22818
|
}
|
|
22799
22819
|
});
|
|
22800
22820
|
|
|
22801
22821
|
var init_admin_orgs2 = __esm({
|
|
22802
|
-
"
|
|
22822
|
+
"module_209"() {
|
|
22803
22823
|
"use strict";
|
|
22804
22824
|
}
|
|
22805
22825
|
});
|
|
22806
22826
|
|
|
22807
22827
|
var init_audience_tier2 = __esm({
|
|
22808
|
-
"
|
|
22828
|
+
"module_210"() {
|
|
22809
22829
|
"use strict";
|
|
22810
22830
|
}
|
|
22811
22831
|
});
|
|
22812
22832
|
|
|
22813
22833
|
var init_browser_profile_storage_state2 = __esm({
|
|
22814
|
-
"
|
|
22834
|
+
"module_211"() {
|
|
22815
22835
|
"use strict";
|
|
22816
22836
|
}
|
|
22817
22837
|
});
|
|
22818
22838
|
|
|
22819
22839
|
var init_approved_config_enforcement2 = __esm({
|
|
22820
|
-
"
|
|
22840
|
+
"module_212"() {
|
|
22821
22841
|
"use strict";
|
|
22822
22842
|
init_dist2();
|
|
22823
22843
|
}
|
|
22824
22844
|
});
|
|
22825
22845
|
|
|
22826
22846
|
var init_AuthError2 = __esm({
|
|
22827
|
-
"
|
|
22847
|
+
"module_213"() {
|
|
22828
22848
|
"use strict";
|
|
22829
22849
|
init_DomainError2();
|
|
22830
22850
|
}
|
|
22831
22851
|
});
|
|
22832
22852
|
|
|
22833
22853
|
var init_convenience_model_telemetry2 = __esm({
|
|
22834
|
-
"
|
|
22854
|
+
"module_214"() {
|
|
22835
22855
|
"use strict";
|
|
22836
22856
|
}
|
|
22837
22857
|
});
|
|
22838
22858
|
|
|
22839
22859
|
var VALID_CONFIG_CLASSES2, VALID_RISK_TAGS2, VALID_SEVERITIES2, VALID_COMPLEXITIES2, VALID_SOURCES2, CURRENT_SCHEMA_VERSION2, MAX_BULLET_POINTS2, MIN_BULLET_POINTS2, MAX_ONE_LINER_LENGTH2, MAX_RISK_DESCRIPTION_LENGTH2, MAX_RISKS2, DiscoveryInsightValidator2, discoveryInsightValidator2;
|
|
22840
22860
|
var init_DiscoveryInsightValidator2 = __esm({
|
|
22841
|
-
"
|
|
22861
|
+
"module_215"() {
|
|
22842
22862
|
"use strict";
|
|
22843
22863
|
VALID_CONFIG_CLASSES2 = [
|
|
22844
22864
|
"security",
|
|
@@ -23050,19 +23070,19 @@ var init_DiscoveryInsightValidator2 = __esm({
|
|
|
23050
23070
|
});
|
|
23051
23071
|
|
|
23052
23072
|
var init_MigrationRegistry2 = __esm({
|
|
23053
|
-
"
|
|
23073
|
+
"module_216"() {
|
|
23054
23074
|
"use strict";
|
|
23055
23075
|
}
|
|
23056
23076
|
});
|
|
23057
23077
|
|
|
23058
23078
|
var init_register_all_migrations2 = __esm({
|
|
23059
|
-
"
|
|
23079
|
+
"module_217"() {
|
|
23060
23080
|
"use strict";
|
|
23061
23081
|
}
|
|
23062
23082
|
});
|
|
23063
23083
|
|
|
23064
23084
|
var init_dist3 = __esm({
|
|
23065
|
-
"
|
|
23085
|
+
"module_218"() {
|
|
23066
23086
|
"use strict";
|
|
23067
23087
|
init_organization2();
|
|
23068
23088
|
init_user3();
|
|
@@ -23111,7 +23131,7 @@ var init_dist3 = __esm({
|
|
|
23111
23131
|
|
|
23112
23132
|
var HttpOrganizationRepository;
|
|
23113
23133
|
var init_HttpOrganizationRepository = __esm({
|
|
23114
|
-
"
|
|
23134
|
+
"module_219"() {
|
|
23115
23135
|
"use strict";
|
|
23116
23136
|
init_dist3();
|
|
23117
23137
|
init_HttpClient();
|
|
@@ -23397,7 +23417,7 @@ var init_HttpOrganizationRepository = __esm({
|
|
|
23397
23417
|
|
|
23398
23418
|
var HttpUserRepository;
|
|
23399
23419
|
var init_HttpUserRepository = __esm({
|
|
23400
|
-
"
|
|
23420
|
+
"module_220"() {
|
|
23401
23421
|
"use strict";
|
|
23402
23422
|
init_dist3();
|
|
23403
23423
|
init_HttpClient();
|
|
@@ -23525,7 +23545,7 @@ var init_HttpUserRepository = __esm({
|
|
|
23525
23545
|
|
|
23526
23546
|
var HttpScanResultRepository;
|
|
23527
23547
|
var init_HttpScanResultRepository = __esm({
|
|
23528
|
-
"
|
|
23548
|
+
"module_221"() {
|
|
23529
23549
|
"use strict";
|
|
23530
23550
|
init_dist3();
|
|
23531
23551
|
init_http_client();
|
|
@@ -23709,7 +23729,7 @@ var init_HttpScanResultRepository = __esm({
|
|
|
23709
23729
|
|
|
23710
23730
|
var HttpSubscriptionRepository;
|
|
23711
23731
|
var init_HttpSubscriptionRepository = __esm({
|
|
23712
|
-
"
|
|
23732
|
+
"module_222"() {
|
|
23713
23733
|
"use strict";
|
|
23714
23734
|
init_dist3();
|
|
23715
23735
|
init_HttpClient();
|
|
@@ -23882,7 +23902,7 @@ var init_HttpSubscriptionRepository = __esm({
|
|
|
23882
23902
|
|
|
23883
23903
|
var HttpWorkItemRepository;
|
|
23884
23904
|
var init_HttpWorkItemRepository = __esm({
|
|
23885
|
-
"
|
|
23905
|
+
"module_223"() {
|
|
23886
23906
|
"use strict";
|
|
23887
23907
|
init_HttpClient();
|
|
23888
23908
|
HttpWorkItemRepository = class extends HttpClient {
|
|
@@ -24045,7 +24065,7 @@ var init_HttpWorkItemRepository = __esm({
|
|
|
24045
24065
|
|
|
24046
24066
|
var HttpWorkflowTestRepository;
|
|
24047
24067
|
var init_HttpWorkflowTestRepository = __esm({
|
|
24048
|
-
"
|
|
24068
|
+
"module_224"() {
|
|
24049
24069
|
"use strict";
|
|
24050
24070
|
init_HttpClient();
|
|
24051
24071
|
HttpWorkflowTestRepository = class extends HttpClient {
|
|
@@ -24078,7 +24098,7 @@ var init_HttpWorkflowTestRepository = __esm({
|
|
|
24078
24098
|
|
|
24079
24099
|
var HttpAdminRepository;
|
|
24080
24100
|
var init_HttpAdminRepository = __esm({
|
|
24081
|
-
"
|
|
24101
|
+
"module_225"() {
|
|
24082
24102
|
"use strict";
|
|
24083
24103
|
init_HttpClient();
|
|
24084
24104
|
HttpAdminRepository = class extends HttpClient {
|
|
@@ -24103,7 +24123,7 @@ var init_HttpAdminRepository = __esm({
|
|
|
24103
24123
|
|
|
24104
24124
|
var HttpRunnerRepository;
|
|
24105
24125
|
var init_HttpRunnerRepository = __esm({
|
|
24106
|
-
"
|
|
24126
|
+
"module_226"() {
|
|
24107
24127
|
"use strict";
|
|
24108
24128
|
init_HttpClient();
|
|
24109
24129
|
HttpRunnerRepository = class extends HttpClient {
|
|
@@ -24121,7 +24141,7 @@ var init_HttpRunnerRepository = __esm({
|
|
|
24121
24141
|
|
|
24122
24142
|
var HttpSessionRepository;
|
|
24123
24143
|
var init_HttpSessionRepository = __esm({
|
|
24124
|
-
"
|
|
24144
|
+
"module_227"() {
|
|
24125
24145
|
"use strict";
|
|
24126
24146
|
init_HttpClient();
|
|
24127
24147
|
HttpSessionRepository = class extends HttpClient {
|
|
@@ -24204,7 +24224,7 @@ var init_HttpSessionRepository = __esm({
|
|
|
24204
24224
|
});
|
|
24205
24225
|
|
|
24206
24226
|
var init_client = __esm({
|
|
24207
|
-
"
|
|
24227
|
+
"module_228"() {
|
|
24208
24228
|
"use strict";
|
|
24209
24229
|
init_http_client();
|
|
24210
24230
|
init_HttpClient();
|
|
@@ -24317,7 +24337,7 @@ Organizations (${total}):
|
|
|
24317
24337
|
}
|
|
24318
24338
|
var defaultApiUrl2;
|
|
24319
24339
|
var init_admin = __esm({
|
|
24320
|
-
"
|
|
24340
|
+
"module_229"() {
|
|
24321
24341
|
"use strict";
|
|
24322
24342
|
init_esm();
|
|
24323
24343
|
init_source();
|
|
@@ -24375,7 +24395,7 @@ function buildSummary(warnings, capabilities) {
|
|
|
24375
24395
|
}
|
|
24376
24396
|
var RULES;
|
|
24377
24397
|
var init_capability_analyzer = __esm({
|
|
24378
|
-
"
|
|
24398
|
+
"module_230"() {
|
|
24379
24399
|
"use strict";
|
|
24380
24400
|
RULES = [
|
|
24381
24401
|
// 1. GitHub Actions / workflow files
|
|
@@ -24690,7 +24710,7 @@ async function fetchClaudeTokenExpiryStatus(params) {
|
|
|
24690
24710
|
}
|
|
24691
24711
|
var CLAUDE_TOKEN_WARNING_THRESHOLD_MS;
|
|
24692
24712
|
var init_claude_token_expiry = __esm({
|
|
24693
|
-
"
|
|
24713
|
+
"module_231"() {
|
|
24694
24714
|
"use strict";
|
|
24695
24715
|
CLAUDE_TOKEN_WARNING_THRESHOLD_MS = 2 * 60 * 60 * 1e3;
|
|
24696
24716
|
}
|
|
@@ -25228,7 +25248,7 @@ Examples:
|
|
|
25228
25248
|
}
|
|
25229
25249
|
var import_fs11, import_path11, SEVERITY_COLOR, SEVERITY_ICON;
|
|
25230
25250
|
var init_agent_session = __esm({
|
|
25231
|
-
"
|
|
25251
|
+
"module_232"() {
|
|
25232
25252
|
"use strict";
|
|
25233
25253
|
init_esm();
|
|
25234
25254
|
init_source();
|
|
@@ -25255,7 +25275,7 @@ var init_agent_session = __esm({
|
|
|
25255
25275
|
|
|
25256
25276
|
var import_fs12, import_os11, import_path12, DEFAULT_WORKFLOW_REPOSITORY, CONFIG_DIR, CONFIG_FILE2, PID_FILE, LEGACY_DIR, LEGACY_CONFIG_FILE, LEGACY_PID_FILE, AgentQueueConfigManager;
|
|
25257
25277
|
var init_AgentQueueConfigManager = __esm({
|
|
25258
|
-
"
|
|
25278
|
+
"module_233"() {
|
|
25259
25279
|
"use strict";
|
|
25260
25280
|
import_fs12 = require("fs");
|
|
25261
25281
|
import_os11 = require("os");
|
|
@@ -29770,7 +29790,7 @@ function detectSeaRuntime() {
|
|
|
29770
29790
|
}
|
|
29771
29791
|
var import_pino, import_fs13, isProduction, isSea, isBundledCli, baseLogger;
|
|
29772
29792
|
var init_agent_queue_logger = __esm({
|
|
29773
|
-
"
|
|
29793
|
+
"module_234"() {
|
|
29774
29794
|
"use strict";
|
|
29775
29795
|
import_pino = __toESM(require_pino(), 1);
|
|
29776
29796
|
import_fs13 = require("fs");
|
|
@@ -29835,7 +29855,7 @@ function isInsideWindow(currentMinutes, startMinutes, endMinutes) {
|
|
|
29835
29855
|
}
|
|
29836
29856
|
var logger, SteadyModeController;
|
|
29837
29857
|
var init_SteadyModeController = __esm({
|
|
29838
|
-
"
|
|
29858
|
+
"module_235"() {
|
|
29839
29859
|
"use strict";
|
|
29840
29860
|
init_agent_queue_logger();
|
|
29841
29861
|
logger = createLogger("steady-mode");
|
|
@@ -30060,7 +30080,7 @@ function createGalAgent(config2) {
|
|
|
30060
30080
|
}
|
|
30061
30081
|
var import_os12, import_child_process5, logger2, cliVersion3, DEFAULT_WORKFLOW_REPOSITORY2, GalAgent;
|
|
30062
30082
|
var init_AgentQueueService = __esm({
|
|
30063
|
-
"
|
|
30083
|
+
"module_236"() {
|
|
30064
30084
|
"use strict";
|
|
30065
30085
|
import_os12 = require("os");
|
|
30066
30086
|
import_child_process5 = require("child_process");
|
|
@@ -31222,7 +31242,7 @@ function createAgentQueueCommand() {
|
|
|
31222
31242
|
}
|
|
31223
31243
|
var import_os13, import_fs14, import_path13, import_os14;
|
|
31224
31244
|
var init_queue = __esm({
|
|
31225
|
-
"
|
|
31245
|
+
"module_237"() {
|
|
31226
31246
|
"use strict";
|
|
31227
31247
|
init_esm();
|
|
31228
31248
|
init_source();
|
|
@@ -31244,7 +31264,7 @@ function createAgentCommand() {
|
|
|
31244
31264
|
return cmd;
|
|
31245
31265
|
}
|
|
31246
31266
|
var init_agent = __esm({
|
|
31247
|
-
"
|
|
31267
|
+
"module_238"() {
|
|
31248
31268
|
"use strict";
|
|
31249
31269
|
init_esm();
|
|
31250
31270
|
init_agent_session();
|
|
@@ -31254,7 +31274,7 @@ var init_agent = __esm({
|
|
|
31254
31274
|
|
|
31255
31275
|
var util, objectUtil, ZodParsedType, getParsedType;
|
|
31256
31276
|
var init_util = __esm({
|
|
31257
|
-
"
|
|
31277
|
+
"module_239"() {
|
|
31258
31278
|
(function(util2) {
|
|
31259
31279
|
util2.assertEqual = (_) => {
|
|
31260
31280
|
};
|
|
@@ -31390,7 +31410,7 @@ var init_util = __esm({
|
|
|
31390
31410
|
|
|
31391
31411
|
var ZodIssueCode, quotelessJson, ZodError;
|
|
31392
31412
|
var init_ZodError = __esm({
|
|
31393
|
-
"
|
|
31413
|
+
"module_240"() {
|
|
31394
31414
|
init_util();
|
|
31395
31415
|
ZodIssueCode = util.arrayToEnum([
|
|
31396
31416
|
"invalid_type",
|
|
@@ -31513,7 +31533,7 @@ var init_ZodError = __esm({
|
|
|
31513
31533
|
|
|
31514
31534
|
var errorMap, en_default;
|
|
31515
31535
|
var init_en = __esm({
|
|
31516
|
-
"
|
|
31536
|
+
"module_241"() {
|
|
31517
31537
|
init_ZodError();
|
|
31518
31538
|
init_util();
|
|
31519
31539
|
errorMap = (issue2, _ctx) => {
|
|
@@ -31628,7 +31648,7 @@ function getErrorMap() {
|
|
|
31628
31648
|
}
|
|
31629
31649
|
var overrideErrorMap;
|
|
31630
31650
|
var init_errors = __esm({
|
|
31631
|
-
"
|
|
31651
|
+
"module_242"() {
|
|
31632
31652
|
init_en();
|
|
31633
31653
|
overrideErrorMap = en_default;
|
|
31634
31654
|
}
|
|
@@ -31655,7 +31675,7 @@ function addIssueToContext(ctx, issueData) {
|
|
|
31655
31675
|
}
|
|
31656
31676
|
var makeIssue, EMPTY_PATH, ParseStatus, INVALID, DIRTY, OK, isAborted, isDirty, isValid, isAsync;
|
|
31657
31677
|
var init_parseUtil = __esm({
|
|
31658
|
-
"
|
|
31678
|
+
"module_243"() {
|
|
31659
31679
|
init_errors();
|
|
31660
31680
|
init_en();
|
|
31661
31681
|
makeIssue = (params) => {
|
|
@@ -31751,13 +31771,13 @@ var init_parseUtil = __esm({
|
|
|
31751
31771
|
});
|
|
31752
31772
|
|
|
31753
31773
|
var init_typeAliases = __esm({
|
|
31754
|
-
"
|
|
31774
|
+
"module_244"() {
|
|
31755
31775
|
}
|
|
31756
31776
|
});
|
|
31757
31777
|
|
|
31758
31778
|
var errorUtil;
|
|
31759
31779
|
var init_errorUtil = __esm({
|
|
31760
|
-
"
|
|
31780
|
+
"module_245"() {
|
|
31761
31781
|
(function(errorUtil2) {
|
|
31762
31782
|
errorUtil2.errToObj = (message) => typeof message === "string" ? { message } : message || {};
|
|
31763
31783
|
errorUtil2.toString = (message) => typeof message === "string" ? message : message?.message;
|
|
@@ -31958,7 +31978,7 @@ function custom(check2, _params = {}, fatal) {
|
|
|
31958
31978
|
}
|
|
31959
31979
|
var ParseInputLazyPath, handleResult, ZodType, cuidRegex, cuid2Regex, ulidRegex, uuidRegex, nanoidRegex, jwtRegex, durationRegex, emailRegex, _emojiRegex, emojiRegex, ipv4Regex, ipv4CidrRegex, ipv6Regex, ipv6CidrRegex, base64Regex, base64urlRegex, dateRegexSource, dateRegex, ZodString, ZodNumber, ZodBigInt, ZodBoolean, ZodDate, ZodSymbol, ZodUndefined, ZodNull, ZodAny, ZodUnknown, ZodNever, ZodVoid, ZodArray, ZodObject, ZodUnion, getDiscriminator, ZodDiscriminatedUnion, ZodIntersection, ZodTuple, ZodRecord, ZodMap, ZodSet, ZodFunction, ZodLazy, ZodLiteral, ZodEnum, ZodNativeEnum, ZodPromise, ZodEffects, ZodOptional, ZodNullable, ZodDefault, ZodCatch, ZodNaN, BRAND, ZodBranded, ZodPipeline, ZodReadonly, late, ZodFirstPartyTypeKind, instanceOfType, stringType, numberType, nanType, bigIntType, booleanType, dateType, symbolType, undefinedType, nullType, anyType, unknownType, neverType, voidType, arrayType, objectType, strictObjectType, unionType, discriminatedUnionType, intersectionType, tupleType, recordType, mapType, setType, functionType, lazyType, literalType, enumType, nativeEnumType, promiseType, effectsType, optionalType, nullableType, preprocessType, pipelineType, ostring, onumber, oboolean, coerce, NEVER;
|
|
31960
31980
|
var init_types = __esm({
|
|
31961
|
-
"
|
|
31981
|
+
"module_246"() {
|
|
31962
31982
|
init_ZodError();
|
|
31963
31983
|
init_errors();
|
|
31964
31984
|
init_errorUtil();
|
|
@@ -35331,7 +35351,7 @@ __export(external_exports, {
|
|
|
35331
35351
|
void: () => voidType
|
|
35332
35352
|
});
|
|
35333
35353
|
var init_external = __esm({
|
|
35334
|
-
"
|
|
35354
|
+
"module_247"() {
|
|
35335
35355
|
init_errors();
|
|
35336
35356
|
init_parseUtil();
|
|
35337
35357
|
init_typeAliases();
|
|
@@ -35391,7 +35411,7 @@ function config(newConfig) {
|
|
|
35391
35411
|
}
|
|
35392
35412
|
var NEVER2, $ZodAsyncError, globalConfig;
|
|
35393
35413
|
var init_core = __esm({
|
|
35394
|
-
"
|
|
35414
|
+
"module_248"() {
|
|
35395
35415
|
NEVER2 = Object.freeze({
|
|
35396
35416
|
status: "aborted"
|
|
35397
35417
|
});
|
|
@@ -35850,7 +35870,7 @@ function cleanEnum(obj) {
|
|
|
35850
35870
|
}
|
|
35851
35871
|
var captureStackTrace, allowsEval, getParsedType2, propertyKeyTypes, primitiveTypes, NUMBER_FORMAT_RANGES, BIGINT_FORMAT_RANGES, Class;
|
|
35852
35872
|
var init_util2 = __esm({
|
|
35853
|
-
"
|
|
35873
|
+
"module_249"() {
|
|
35854
35874
|
captureStackTrace = Error.captureStackTrace ? Error.captureStackTrace : (..._args) => {
|
|
35855
35875
|
};
|
|
35856
35876
|
allowsEval = cached(() => {
|
|
@@ -35980,7 +36000,7 @@ function formatError(error3, _mapper) {
|
|
|
35980
36000
|
}
|
|
35981
36001
|
var initializer, $ZodError, $ZodRealError;
|
|
35982
36002
|
var init_errors2 = __esm({
|
|
35983
|
-
"
|
|
36003
|
+
"module_250"() {
|
|
35984
36004
|
init_core();
|
|
35985
36005
|
init_util2();
|
|
35986
36006
|
initializer = (inst, def) => {
|
|
@@ -36012,7 +36032,7 @@ var init_errors2 = __esm({
|
|
|
36012
36032
|
|
|
36013
36033
|
var _parse, _parseAsync, _safeParse, safeParse, _safeParseAsync, safeParseAsync;
|
|
36014
36034
|
var init_parse = __esm({
|
|
36015
|
-
"
|
|
36035
|
+
"module_251"() {
|
|
36016
36036
|
init_core();
|
|
36017
36037
|
init_errors2();
|
|
36018
36038
|
init_util2();
|
|
@@ -36090,7 +36110,7 @@ function datetime(args2) {
|
|
|
36090
36110
|
}
|
|
36091
36111
|
var cuid, cuid2, ulid, xid, ksuid, nanoid, duration, guid, uuid, email, _emoji, ipv4, ipv6, cidrv4, cidrv6, base64, base64url, hostname2, e164, dateSource, date, string, integer, number, boolean, _null, lowercase, uppercase;
|
|
36092
36112
|
var init_regexes = __esm({
|
|
36093
|
-
"
|
|
36113
|
+
"module_252"() {
|
|
36094
36114
|
cuid = /^[cC][^\s-]{8,}$/;
|
|
36095
36115
|
cuid2 = /^[0-9a-z]+$/;
|
|
36096
36116
|
ulid = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/;
|
|
@@ -36131,7 +36151,7 @@ var init_regexes = __esm({
|
|
|
36131
36151
|
|
|
36132
36152
|
var $ZodCheck, numericOriginMap, $ZodCheckLessThan, $ZodCheckGreaterThan, $ZodCheckMultipleOf, $ZodCheckNumberFormat, $ZodCheckMaxLength, $ZodCheckMinLength, $ZodCheckLengthEquals, $ZodCheckStringFormat, $ZodCheckRegex, $ZodCheckLowerCase, $ZodCheckUpperCase, $ZodCheckIncludes, $ZodCheckStartsWith, $ZodCheckEndsWith, $ZodCheckOverwrite;
|
|
36133
36153
|
var init_checks = __esm({
|
|
36134
|
-
"
|
|
36154
|
+
"module_253"() {
|
|
36135
36155
|
init_core();
|
|
36136
36156
|
init_regexes();
|
|
36137
36157
|
init_util2();
|
|
@@ -36523,7 +36543,7 @@ var init_checks = __esm({
|
|
|
36523
36543
|
|
|
36524
36544
|
var Doc;
|
|
36525
36545
|
var init_doc = __esm({
|
|
36526
|
-
"
|
|
36546
|
+
"module_254"() {
|
|
36527
36547
|
Doc = class {
|
|
36528
36548
|
constructor(args2 = []) {
|
|
36529
36549
|
this.content = [];
|
|
@@ -36563,7 +36583,7 @@ var init_doc = __esm({
|
|
|
36563
36583
|
|
|
36564
36584
|
var version;
|
|
36565
36585
|
var init_versions = __esm({
|
|
36566
|
-
"
|
|
36586
|
+
"module_255"() {
|
|
36567
36587
|
version = {
|
|
36568
36588
|
major: 4,
|
|
36569
36589
|
minor: 0,
|
|
@@ -36762,7 +36782,7 @@ function handleRefineResult(result, payload, input, inst) {
|
|
|
36762
36782
|
}
|
|
36763
36783
|
var $ZodType, $ZodString, $ZodStringFormat, $ZodGUID, $ZodUUID, $ZodEmail, $ZodURL, $ZodEmoji, $ZodNanoID, $ZodCUID, $ZodCUID2, $ZodULID, $ZodXID, $ZodKSUID, $ZodISODateTime, $ZodISODate, $ZodISOTime, $ZodISODuration, $ZodIPv4, $ZodIPv6, $ZodCIDRv4, $ZodCIDRv6, $ZodBase64, $ZodBase64URL, $ZodE164, $ZodJWT, $ZodNumber, $ZodNumberFormat, $ZodBoolean, $ZodNull, $ZodUnknown, $ZodNever, $ZodArray, $ZodObject, $ZodUnion, $ZodDiscriminatedUnion, $ZodIntersection, $ZodRecord, $ZodEnum, $ZodLiteral, $ZodTransform, $ZodOptional, $ZodNullable, $ZodDefault, $ZodPrefault, $ZodNonOptional, $ZodCatch, $ZodPipe, $ZodReadonly, $ZodCustom;
|
|
36764
36784
|
var init_schemas = __esm({
|
|
36765
|
-
"
|
|
36785
|
+
"module_256"() {
|
|
36766
36786
|
init_checks();
|
|
36767
36787
|
init_core();
|
|
36768
36788
|
init_doc();
|
|
@@ -37829,7 +37849,7 @@ function en_default2() {
|
|
|
37829
37849
|
}
|
|
37830
37850
|
var parsedType, error2;
|
|
37831
37851
|
var init_en2 = __esm({
|
|
37832
|
-
"
|
|
37852
|
+
"module_257"() {
|
|
37833
37853
|
init_util2();
|
|
37834
37854
|
parsedType = (data) => {
|
|
37835
37855
|
const t = typeof data;
|
|
@@ -37946,7 +37966,7 @@ var init_en2 = __esm({
|
|
|
37946
37966
|
});
|
|
37947
37967
|
|
|
37948
37968
|
var init_locales = __esm({
|
|
37949
|
-
"
|
|
37969
|
+
"module_258"() {
|
|
37950
37970
|
}
|
|
37951
37971
|
});
|
|
37952
37972
|
|
|
@@ -37955,7 +37975,7 @@ function registry() {
|
|
|
37955
37975
|
}
|
|
37956
37976
|
var $ZodRegistry, globalRegistry;
|
|
37957
37977
|
var init_registries = __esm({
|
|
37958
|
-
"
|
|
37978
|
+
"module_259"() {
|
|
37959
37979
|
$ZodRegistry = class {
|
|
37960
37980
|
constructor() {
|
|
37961
37981
|
this._map = /* @__PURE__ */ new Map();
|
|
@@ -38440,29 +38460,29 @@ function _refine(Class2, fn, _params) {
|
|
|
38440
38460
|
return schema;
|
|
38441
38461
|
}
|
|
38442
38462
|
var init_api2 = __esm({
|
|
38443
|
-
"
|
|
38463
|
+
"module_260"() {
|
|
38444
38464
|
init_checks();
|
|
38445
38465
|
init_util2();
|
|
38446
38466
|
}
|
|
38447
38467
|
});
|
|
38448
38468
|
|
|
38449
38469
|
var init_function = __esm({
|
|
38450
|
-
"
|
|
38470
|
+
"module_261"() {
|
|
38451
38471
|
}
|
|
38452
38472
|
});
|
|
38453
38473
|
|
|
38454
38474
|
var init_to_json_schema = __esm({
|
|
38455
|
-
"
|
|
38475
|
+
"module_262"() {
|
|
38456
38476
|
}
|
|
38457
38477
|
});
|
|
38458
38478
|
|
|
38459
38479
|
var init_json_schema = __esm({
|
|
38460
|
-
"
|
|
38480
|
+
"module_263"() {
|
|
38461
38481
|
}
|
|
38462
38482
|
});
|
|
38463
38483
|
|
|
38464
38484
|
var init_core2 = __esm({
|
|
38465
|
-
"
|
|
38485
|
+
"module_264"() {
|
|
38466
38486
|
init_core();
|
|
38467
38487
|
init_parse();
|
|
38468
38488
|
init_errors2();
|
|
@@ -38482,33 +38502,33 @@ var init_core2 = __esm({
|
|
|
38482
38502
|
});
|
|
38483
38503
|
|
|
38484
38504
|
var init_parse2 = __esm({
|
|
38485
|
-
"
|
|
38505
|
+
"module_265"() {
|
|
38486
38506
|
init_core2();
|
|
38487
38507
|
}
|
|
38488
38508
|
});
|
|
38489
38509
|
|
|
38490
38510
|
var init_schemas2 = __esm({
|
|
38491
|
-
"
|
|
38511
|
+
"module_266"() {
|
|
38492
38512
|
}
|
|
38493
38513
|
});
|
|
38494
38514
|
|
|
38495
38515
|
var init_checks2 = __esm({
|
|
38496
|
-
"
|
|
38516
|
+
"module_267"() {
|
|
38497
38517
|
}
|
|
38498
38518
|
});
|
|
38499
38519
|
|
|
38500
38520
|
var init_iso = __esm({
|
|
38501
|
-
"
|
|
38521
|
+
"module_268"() {
|
|
38502
38522
|
}
|
|
38503
38523
|
});
|
|
38504
38524
|
|
|
38505
38525
|
var init_coerce = __esm({
|
|
38506
|
-
"
|
|
38526
|
+
"module_269"() {
|
|
38507
38527
|
}
|
|
38508
38528
|
});
|
|
38509
38529
|
|
|
38510
38530
|
var init_external2 = __esm({
|
|
38511
|
-
"
|
|
38531
|
+
"module_270"() {
|
|
38512
38532
|
init_core2();
|
|
38513
38533
|
init_parse2();
|
|
38514
38534
|
init_schemas2();
|
|
@@ -38520,13 +38540,13 @@ var init_external2 = __esm({
|
|
|
38520
38540
|
});
|
|
38521
38541
|
|
|
38522
38542
|
var init_mini = __esm({
|
|
38523
|
-
"
|
|
38543
|
+
"module_271"() {
|
|
38524
38544
|
init_external2();
|
|
38525
38545
|
}
|
|
38526
38546
|
});
|
|
38527
38547
|
|
|
38528
38548
|
var init_v4_mini = __esm({
|
|
38529
|
-
"
|
|
38549
|
+
"module_272"() {
|
|
38530
38550
|
init_mini();
|
|
38531
38551
|
}
|
|
38532
38552
|
});
|
|
@@ -38593,13 +38613,13 @@ function getLiteralValue(schema) {
|
|
|
38593
38613
|
return void 0;
|
|
38594
38614
|
}
|
|
38595
38615
|
var init_zod_compat = __esm({
|
|
38596
|
-
"
|
|
38616
|
+
"module_273"() {
|
|
38597
38617
|
init_v4_mini();
|
|
38598
38618
|
}
|
|
38599
38619
|
});
|
|
38600
38620
|
|
|
38601
38621
|
var init_checks3 = __esm({
|
|
38602
|
-
"
|
|
38622
|
+
"module_274"() {
|
|
38603
38623
|
init_core2();
|
|
38604
38624
|
}
|
|
38605
38625
|
});
|
|
@@ -38629,7 +38649,7 @@ function duration2(params) {
|
|
|
38629
38649
|
}
|
|
38630
38650
|
var ZodISODateTime, ZodISODate, ZodISOTime, ZodISODuration;
|
|
38631
38651
|
var init_iso2 = __esm({
|
|
38632
|
-
"
|
|
38652
|
+
"module_275"() {
|
|
38633
38653
|
init_core2();
|
|
38634
38654
|
init_schemas3();
|
|
38635
38655
|
ZodISODateTime = /* @__PURE__ */ $constructor("ZodISODateTime", (inst, def) => {
|
|
@@ -38653,7 +38673,7 @@ var init_iso2 = __esm({
|
|
|
38653
38673
|
|
|
38654
38674
|
var initializer2, ZodError2, ZodRealError;
|
|
38655
38675
|
var init_errors3 = __esm({
|
|
38656
|
-
"
|
|
38676
|
+
"module_276"() {
|
|
38657
38677
|
init_core2();
|
|
38658
38678
|
init_core2();
|
|
38659
38679
|
initializer2 = (inst, issues) => {
|
|
@@ -38693,7 +38713,7 @@ var init_errors3 = __esm({
|
|
|
38693
38713
|
|
|
38694
38714
|
var parse2, parseAsync2, safeParse3, safeParseAsync2;
|
|
38695
38715
|
var init_parse3 = __esm({
|
|
38696
|
-
"
|
|
38716
|
+
"module_277"() {
|
|
38697
38717
|
init_core2();
|
|
38698
38718
|
init_errors3();
|
|
38699
38719
|
parse2 = /* @__PURE__ */ _parse(ZodRealError);
|
|
@@ -38897,7 +38917,7 @@ function preprocess(fn, schema) {
|
|
|
38897
38917
|
}
|
|
38898
38918
|
var ZodType2, _ZodString, ZodString2, ZodStringFormat, ZodEmail, ZodGUID, ZodUUID, ZodURL, ZodEmoji, ZodNanoID, ZodCUID, ZodCUID2, ZodULID, ZodXID, ZodKSUID, ZodIPv4, ZodIPv6, ZodCIDRv4, ZodCIDRv6, ZodBase64, ZodBase64URL, ZodE164, ZodJWT, ZodNumber2, ZodNumberFormat, ZodBoolean2, ZodNull2, ZodUnknown2, ZodNever2, ZodArray2, ZodObject2, ZodUnion2, ZodDiscriminatedUnion2, ZodIntersection2, ZodRecord2, ZodEnum2, ZodLiteral2, ZodTransform, ZodOptional2, ZodNullable2, ZodDefault2, ZodPrefault, ZodNonOptional, ZodCatch2, ZodPipe, ZodReadonly2, ZodCustom;
|
|
38899
38919
|
var init_schemas3 = __esm({
|
|
38900
|
-
"
|
|
38920
|
+
"module_278"() {
|
|
38901
38921
|
init_core2();
|
|
38902
38922
|
init_core2();
|
|
38903
38923
|
init_checks3();
|
|
@@ -39324,17 +39344,17 @@ var init_schemas3 = __esm({
|
|
|
39324
39344
|
});
|
|
39325
39345
|
|
|
39326
39346
|
var init_compat = __esm({
|
|
39327
|
-
"
|
|
39347
|
+
"module_279"() {
|
|
39328
39348
|
}
|
|
39329
39349
|
});
|
|
39330
39350
|
|
|
39331
39351
|
var init_coerce2 = __esm({
|
|
39332
|
-
"
|
|
39352
|
+
"module_280"() {
|
|
39333
39353
|
}
|
|
39334
39354
|
});
|
|
39335
39355
|
|
|
39336
39356
|
var init_external3 = __esm({
|
|
39337
|
-
"
|
|
39357
|
+
"module_281"() {
|
|
39338
39358
|
init_core2();
|
|
39339
39359
|
init_schemas3();
|
|
39340
39360
|
init_checks3();
|
|
@@ -39351,20 +39371,20 @@ var init_external3 = __esm({
|
|
|
39351
39371
|
});
|
|
39352
39372
|
|
|
39353
39373
|
var init_classic = __esm({
|
|
39354
|
-
"
|
|
39374
|
+
"module_282"() {
|
|
39355
39375
|
init_external3();
|
|
39356
39376
|
}
|
|
39357
39377
|
});
|
|
39358
39378
|
|
|
39359
39379
|
var init_v4 = __esm({
|
|
39360
|
-
"
|
|
39380
|
+
"module_283"() {
|
|
39361
39381
|
init_classic();
|
|
39362
39382
|
}
|
|
39363
39383
|
});
|
|
39364
39384
|
|
|
39365
39385
|
var LATEST_PROTOCOL_VERSION, SUPPORTED_PROTOCOL_VERSIONS, RELATED_TASK_META_KEY, JSONRPC_VERSION, AssertObjectSchema, ProgressTokenSchema, CursorSchema, TaskCreationParamsSchema, TaskMetadataSchema, RelatedTaskMetadataSchema, RequestMetaSchema, BaseRequestParamsSchema, TaskAugmentedRequestParamsSchema, isTaskAugmentedRequestParams, RequestSchema, NotificationsParamsSchema, NotificationSchema, ResultSchema, RequestIdSchema, JSONRPCRequestSchema, isJSONRPCRequest, JSONRPCNotificationSchema, isJSONRPCNotification, JSONRPCResultResponseSchema, isJSONRPCResultResponse, ErrorCode, JSONRPCErrorResponseSchema, isJSONRPCErrorResponse, JSONRPCMessageSchema, JSONRPCResponseSchema, EmptyResultSchema, CancelledNotificationParamsSchema, CancelledNotificationSchema, IconSchema, IconsSchema, BaseMetadataSchema, ImplementationSchema, FormElicitationCapabilitySchema, ElicitationCapabilitySchema, ClientTasksCapabilitySchema, ServerTasksCapabilitySchema, ClientCapabilitiesSchema, InitializeRequestParamsSchema, InitializeRequestSchema, ServerCapabilitiesSchema, InitializeResultSchema, InitializedNotificationSchema, PingRequestSchema, ProgressSchema, ProgressNotificationParamsSchema, ProgressNotificationSchema, PaginatedRequestParamsSchema, PaginatedRequestSchema, PaginatedResultSchema, TaskStatusSchema, TaskSchema, CreateTaskResultSchema, TaskStatusNotificationParamsSchema, TaskStatusNotificationSchema, GetTaskRequestSchema, GetTaskResultSchema, GetTaskPayloadRequestSchema, GetTaskPayloadResultSchema, ListTasksRequestSchema, ListTasksResultSchema, CancelTaskRequestSchema, CancelTaskResultSchema, ResourceContentsSchema, TextResourceContentsSchema, Base64Schema, BlobResourceContentsSchema, RoleSchema, AnnotationsSchema, ResourceSchema, ResourceTemplateSchema, ListResourcesRequestSchema, ListResourcesResultSchema, ListResourceTemplatesRequestSchema, ListResourceTemplatesResultSchema, ResourceRequestParamsSchema, ReadResourceRequestParamsSchema, ReadResourceRequestSchema, ReadResourceResultSchema, ResourceListChangedNotificationSchema, SubscribeRequestParamsSchema, SubscribeRequestSchema, UnsubscribeRequestParamsSchema, UnsubscribeRequestSchema, ResourceUpdatedNotificationParamsSchema, ResourceUpdatedNotificationSchema, PromptArgumentSchema, PromptSchema, ListPromptsRequestSchema, ListPromptsResultSchema, GetPromptRequestParamsSchema, GetPromptRequestSchema, TextContentSchema, ImageContentSchema, AudioContentSchema, ToolUseContentSchema, EmbeddedResourceSchema, ResourceLinkSchema, ContentBlockSchema, PromptMessageSchema, GetPromptResultSchema, PromptListChangedNotificationSchema, ToolAnnotationsSchema, ToolExecutionSchema, ToolSchema, ListToolsRequestSchema, ListToolsResultSchema, CallToolResultSchema, CompatibilityCallToolResultSchema, CallToolRequestParamsSchema, CallToolRequestSchema, ToolListChangedNotificationSchema, ListChangedOptionsBaseSchema, LoggingLevelSchema, SetLevelRequestParamsSchema, SetLevelRequestSchema, LoggingMessageNotificationParamsSchema, LoggingMessageNotificationSchema, ModelHintSchema, ModelPreferencesSchema, ToolChoiceSchema, ToolResultContentSchema, SamplingContentSchema, SamplingMessageContentBlockSchema, SamplingMessageSchema, CreateMessageRequestParamsSchema, CreateMessageRequestSchema, CreateMessageResultSchema, CreateMessageResultWithToolsSchema, BooleanSchemaSchema, StringSchemaSchema, NumberSchemaSchema, UntitledSingleSelectEnumSchemaSchema, TitledSingleSelectEnumSchemaSchema, LegacyTitledEnumSchemaSchema, SingleSelectEnumSchemaSchema, UntitledMultiSelectEnumSchemaSchema, TitledMultiSelectEnumSchemaSchema, MultiSelectEnumSchemaSchema, EnumSchemaSchema, PrimitiveSchemaDefinitionSchema, ElicitRequestFormParamsSchema, ElicitRequestURLParamsSchema, ElicitRequestParamsSchema, ElicitRequestSchema, ElicitationCompleteNotificationParamsSchema, ElicitationCompleteNotificationSchema, ElicitResultSchema, ResourceTemplateReferenceSchema, PromptReferenceSchema, CompleteRequestParamsSchema, CompleteRequestSchema, CompleteResultSchema, RootSchema, ListRootsRequestSchema, ListRootsResultSchema, RootsListChangedNotificationSchema, ClientRequestSchema, ClientNotificationSchema, ClientResultSchema, ServerRequestSchema, ServerNotificationSchema, ServerResultSchema, McpError, UrlElicitationRequiredError;
|
|
39366
39386
|
var init_types2 = __esm({
|
|
39367
|
-
"
|
|
39387
|
+
"module_284"() {
|
|
39368
39388
|
init_v4();
|
|
39369
39389
|
LATEST_PROTOCOL_VERSION = "2025-11-25";
|
|
39370
39390
|
SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, "2025-06-18", "2025-03-26", "2024-11-05", "2024-10-07"];
|
|
@@ -40876,112 +40896,112 @@ function isTerminal(status) {
|
|
|
40876
40896
|
return status === "completed" || status === "failed" || status === "cancelled";
|
|
40877
40897
|
}
|
|
40878
40898
|
var init_interfaces = __esm({
|
|
40879
|
-
"
|
|
40899
|
+
"module_285"() {
|
|
40880
40900
|
}
|
|
40881
40901
|
});
|
|
40882
40902
|
|
|
40883
40903
|
var init_Options = __esm({
|
|
40884
|
-
"
|
|
40904
|
+
"module_286"() {
|
|
40885
40905
|
}
|
|
40886
40906
|
});
|
|
40887
40907
|
|
|
40888
40908
|
var init_Refs = __esm({
|
|
40889
|
-
"
|
|
40909
|
+
"module_287"() {
|
|
40890
40910
|
init_Options();
|
|
40891
40911
|
}
|
|
40892
40912
|
});
|
|
40893
40913
|
|
|
40894
40914
|
var init_errorMessages = __esm({
|
|
40895
|
-
"
|
|
40915
|
+
"module_288"() {
|
|
40896
40916
|
}
|
|
40897
40917
|
});
|
|
40898
40918
|
|
|
40899
40919
|
var init_getRelativePath = __esm({
|
|
40900
|
-
"
|
|
40920
|
+
"module_289"() {
|
|
40901
40921
|
}
|
|
40902
40922
|
});
|
|
40903
40923
|
|
|
40904
40924
|
var init_any = __esm({
|
|
40905
|
-
"
|
|
40925
|
+
"module_290"() {
|
|
40906
40926
|
init_getRelativePath();
|
|
40907
40927
|
}
|
|
40908
40928
|
});
|
|
40909
40929
|
|
|
40910
40930
|
var init_array = __esm({
|
|
40911
|
-
"
|
|
40931
|
+
"module_291"() {
|
|
40912
40932
|
init_errorMessages();
|
|
40913
40933
|
init_parseDef();
|
|
40914
40934
|
}
|
|
40915
40935
|
});
|
|
40916
40936
|
|
|
40917
40937
|
var init_bigint = __esm({
|
|
40918
|
-
"
|
|
40938
|
+
"module_292"() {
|
|
40919
40939
|
init_errorMessages();
|
|
40920
40940
|
}
|
|
40921
40941
|
});
|
|
40922
40942
|
|
|
40923
40943
|
var init_boolean = __esm({
|
|
40924
|
-
"
|
|
40944
|
+
"module_293"() {
|
|
40925
40945
|
}
|
|
40926
40946
|
});
|
|
40927
40947
|
|
|
40928
40948
|
var init_branded = __esm({
|
|
40929
|
-
"
|
|
40949
|
+
"module_294"() {
|
|
40930
40950
|
init_parseDef();
|
|
40931
40951
|
}
|
|
40932
40952
|
});
|
|
40933
40953
|
|
|
40934
40954
|
var init_catch = __esm({
|
|
40935
|
-
"
|
|
40955
|
+
"module_295"() {
|
|
40936
40956
|
init_parseDef();
|
|
40937
40957
|
}
|
|
40938
40958
|
});
|
|
40939
40959
|
|
|
40940
40960
|
var init_date = __esm({
|
|
40941
|
-
"
|
|
40961
|
+
"module_296"() {
|
|
40942
40962
|
init_errorMessages();
|
|
40943
40963
|
}
|
|
40944
40964
|
});
|
|
40945
40965
|
|
|
40946
40966
|
var init_default = __esm({
|
|
40947
|
-
"
|
|
40967
|
+
"module_297"() {
|
|
40948
40968
|
init_parseDef();
|
|
40949
40969
|
}
|
|
40950
40970
|
});
|
|
40951
40971
|
|
|
40952
40972
|
var init_effects = __esm({
|
|
40953
|
-
"
|
|
40973
|
+
"module_298"() {
|
|
40954
40974
|
init_parseDef();
|
|
40955
40975
|
init_any();
|
|
40956
40976
|
}
|
|
40957
40977
|
});
|
|
40958
40978
|
|
|
40959
40979
|
var init_enum = __esm({
|
|
40960
|
-
"
|
|
40980
|
+
"module_299"() {
|
|
40961
40981
|
}
|
|
40962
40982
|
});
|
|
40963
40983
|
|
|
40964
40984
|
var init_intersection = __esm({
|
|
40965
|
-
"
|
|
40985
|
+
"module_300"() {
|
|
40966
40986
|
init_parseDef();
|
|
40967
40987
|
}
|
|
40968
40988
|
});
|
|
40969
40989
|
|
|
40970
40990
|
var init_literal = __esm({
|
|
40971
|
-
"
|
|
40991
|
+
"module_301"() {
|
|
40972
40992
|
}
|
|
40973
40993
|
});
|
|
40974
40994
|
|
|
40975
40995
|
var ALPHA_NUMERIC;
|
|
40976
40996
|
var init_string = __esm({
|
|
40977
|
-
"
|
|
40997
|
+
"module_302"() {
|
|
40978
40998
|
init_errorMessages();
|
|
40979
40999
|
ALPHA_NUMERIC = new Set("ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvxyz0123456789");
|
|
40980
41000
|
}
|
|
40981
41001
|
});
|
|
40982
41002
|
|
|
40983
41003
|
var init_record = __esm({
|
|
40984
|
-
"
|
|
41004
|
+
"module_303"() {
|
|
40985
41005
|
init_parseDef();
|
|
40986
41006
|
init_string();
|
|
40987
41007
|
init_branded();
|
|
@@ -40990,7 +41010,7 @@ var init_record = __esm({
|
|
|
40990
41010
|
});
|
|
40991
41011
|
|
|
40992
41012
|
var init_map = __esm({
|
|
40993
|
-
"
|
|
41013
|
+
"module_304"() {
|
|
40994
41014
|
init_parseDef();
|
|
40995
41015
|
init_record();
|
|
40996
41016
|
init_any();
|
|
@@ -40998,98 +41018,98 @@ var init_map = __esm({
|
|
|
40998
41018
|
});
|
|
40999
41019
|
|
|
41000
41020
|
var init_nativeEnum = __esm({
|
|
41001
|
-
"
|
|
41021
|
+
"module_305"() {
|
|
41002
41022
|
}
|
|
41003
41023
|
});
|
|
41004
41024
|
|
|
41005
41025
|
var init_never = __esm({
|
|
41006
|
-
"
|
|
41026
|
+
"module_306"() {
|
|
41007
41027
|
init_any();
|
|
41008
41028
|
}
|
|
41009
41029
|
});
|
|
41010
41030
|
|
|
41011
41031
|
var init_null = __esm({
|
|
41012
|
-
"
|
|
41032
|
+
"module_307"() {
|
|
41013
41033
|
}
|
|
41014
41034
|
});
|
|
41015
41035
|
|
|
41016
41036
|
var init_union = __esm({
|
|
41017
|
-
"
|
|
41037
|
+
"module_308"() {
|
|
41018
41038
|
init_parseDef();
|
|
41019
41039
|
}
|
|
41020
41040
|
});
|
|
41021
41041
|
|
|
41022
41042
|
var init_nullable = __esm({
|
|
41023
|
-
"
|
|
41043
|
+
"module_309"() {
|
|
41024
41044
|
init_parseDef();
|
|
41025
41045
|
init_union();
|
|
41026
41046
|
}
|
|
41027
41047
|
});
|
|
41028
41048
|
|
|
41029
41049
|
var init_number = __esm({
|
|
41030
|
-
"
|
|
41050
|
+
"module_310"() {
|
|
41031
41051
|
init_errorMessages();
|
|
41032
41052
|
}
|
|
41033
41053
|
});
|
|
41034
41054
|
|
|
41035
41055
|
var init_object = __esm({
|
|
41036
|
-
"
|
|
41056
|
+
"module_311"() {
|
|
41037
41057
|
init_parseDef();
|
|
41038
41058
|
}
|
|
41039
41059
|
});
|
|
41040
41060
|
|
|
41041
41061
|
var init_optional = __esm({
|
|
41042
|
-
"
|
|
41062
|
+
"module_312"() {
|
|
41043
41063
|
init_parseDef();
|
|
41044
41064
|
init_any();
|
|
41045
41065
|
}
|
|
41046
41066
|
});
|
|
41047
41067
|
|
|
41048
41068
|
var init_pipeline = __esm({
|
|
41049
|
-
"
|
|
41069
|
+
"module_313"() {
|
|
41050
41070
|
init_parseDef();
|
|
41051
41071
|
}
|
|
41052
41072
|
});
|
|
41053
41073
|
|
|
41054
41074
|
var init_promise = __esm({
|
|
41055
|
-
"
|
|
41075
|
+
"module_314"() {
|
|
41056
41076
|
init_parseDef();
|
|
41057
41077
|
}
|
|
41058
41078
|
});
|
|
41059
41079
|
|
|
41060
41080
|
var init_set = __esm({
|
|
41061
|
-
"
|
|
41081
|
+
"module_315"() {
|
|
41062
41082
|
init_errorMessages();
|
|
41063
41083
|
init_parseDef();
|
|
41064
41084
|
}
|
|
41065
41085
|
});
|
|
41066
41086
|
|
|
41067
41087
|
var init_tuple = __esm({
|
|
41068
|
-
"
|
|
41088
|
+
"module_316"() {
|
|
41069
41089
|
init_parseDef();
|
|
41070
41090
|
}
|
|
41071
41091
|
});
|
|
41072
41092
|
|
|
41073
41093
|
var init_undefined = __esm({
|
|
41074
|
-
"
|
|
41094
|
+
"module_317"() {
|
|
41075
41095
|
init_any();
|
|
41076
41096
|
}
|
|
41077
41097
|
});
|
|
41078
41098
|
|
|
41079
41099
|
var init_unknown = __esm({
|
|
41080
|
-
"
|
|
41100
|
+
"module_318"() {
|
|
41081
41101
|
init_any();
|
|
41082
41102
|
}
|
|
41083
41103
|
});
|
|
41084
41104
|
|
|
41085
41105
|
var init_readonly = __esm({
|
|
41086
|
-
"
|
|
41106
|
+
"module_319"() {
|
|
41087
41107
|
init_parseDef();
|
|
41088
41108
|
}
|
|
41089
41109
|
});
|
|
41090
41110
|
|
|
41091
41111
|
var init_selectParser = __esm({
|
|
41092
|
-
"
|
|
41112
|
+
"module_320"() {
|
|
41093
41113
|
init_any();
|
|
41094
41114
|
init_array();
|
|
41095
41115
|
init_bigint();
|
|
@@ -41124,7 +41144,7 @@ var init_selectParser = __esm({
|
|
|
41124
41144
|
});
|
|
41125
41145
|
|
|
41126
41146
|
var init_parseDef = __esm({
|
|
41127
|
-
"
|
|
41147
|
+
"module_321"() {
|
|
41128
41148
|
init_Options();
|
|
41129
41149
|
init_selectParser();
|
|
41130
41150
|
init_getRelativePath();
|
|
@@ -41133,12 +41153,12 @@ var init_parseDef = __esm({
|
|
|
41133
41153
|
});
|
|
41134
41154
|
|
|
41135
41155
|
var init_parseTypes = __esm({
|
|
41136
|
-
"
|
|
41156
|
+
"module_322"() {
|
|
41137
41157
|
}
|
|
41138
41158
|
});
|
|
41139
41159
|
|
|
41140
41160
|
var init_zodToJsonSchema = __esm({
|
|
41141
|
-
"
|
|
41161
|
+
"module_323"() {
|
|
41142
41162
|
init_parseDef();
|
|
41143
41163
|
init_Refs();
|
|
41144
41164
|
init_any();
|
|
@@ -41146,7 +41166,7 @@ var init_zodToJsonSchema = __esm({
|
|
|
41146
41166
|
});
|
|
41147
41167
|
|
|
41148
41168
|
var init_esm2 = __esm({
|
|
41149
|
-
"
|
|
41169
|
+
"module_324"() {
|
|
41150
41170
|
init_Options();
|
|
41151
41171
|
init_Refs();
|
|
41152
41172
|
init_errorMessages();
|
|
@@ -41209,7 +41229,7 @@ function parseWithCompat(schema, data) {
|
|
|
41209
41229
|
return result.data;
|
|
41210
41230
|
}
|
|
41211
41231
|
var init_zod_json_schema_compat = __esm({
|
|
41212
|
-
"
|
|
41232
|
+
"module_325"() {
|
|
41213
41233
|
init_zod_compat();
|
|
41214
41234
|
init_esm2();
|
|
41215
41235
|
}
|
|
@@ -41236,7 +41256,7 @@ function mergeCapabilities(base, additional) {
|
|
|
41236
41256
|
}
|
|
41237
41257
|
var DEFAULT_REQUEST_TIMEOUT_MSEC, Protocol;
|
|
41238
41258
|
var init_protocol = __esm({
|
|
41239
|
-
"
|
|
41259
|
+
"module_326"() {
|
|
41240
41260
|
init_zod_compat();
|
|
41241
41261
|
init_types2();
|
|
41242
41262
|
init_interfaces();
|
|
@@ -48882,7 +48902,7 @@ function createDefaultAjvInstance() {
|
|
|
48882
48902
|
}
|
|
48883
48903
|
var import_ajv, import_ajv_formats, AjvJsonSchemaValidator;
|
|
48884
48904
|
var init_ajv_provider = __esm({
|
|
48885
|
-
"
|
|
48905
|
+
"module_327"() {
|
|
48886
48906
|
import_ajv = __toESM(require_ajv(), 1);
|
|
48887
48907
|
import_ajv_formats = __toESM(require_dist2(), 1);
|
|
48888
48908
|
AjvJsonSchemaValidator = class {
|
|
@@ -48943,7 +48963,7 @@ var init_ajv_provider = __esm({
|
|
|
48943
48963
|
|
|
48944
48964
|
var ExperimentalServerTasks;
|
|
48945
48965
|
var init_server = __esm({
|
|
48946
|
-
"
|
|
48966
|
+
"module_328"() {
|
|
48947
48967
|
ExperimentalServerTasks = class {
|
|
48948
48968
|
constructor(_server) {
|
|
48949
48969
|
this._server = _server;
|
|
@@ -49051,13 +49071,13 @@ function assertClientRequestTaskCapability(requests, method, entityName) {
|
|
|
49051
49071
|
}
|
|
49052
49072
|
}
|
|
49053
49073
|
var init_helpers = __esm({
|
|
49054
|
-
"
|
|
49074
|
+
"module_329"() {
|
|
49055
49075
|
}
|
|
49056
49076
|
});
|
|
49057
49077
|
|
|
49058
49078
|
var Server;
|
|
49059
49079
|
var init_server2 = __esm({
|
|
49060
|
-
"
|
|
49080
|
+
"module_330"() {
|
|
49061
49081
|
init_protocol();
|
|
49062
49082
|
init_types2();
|
|
49063
49083
|
init_ajv_provider();
|
|
@@ -49453,7 +49473,7 @@ function serializeMessage(message) {
|
|
|
49453
49473
|
}
|
|
49454
49474
|
var ReadBuffer;
|
|
49455
49475
|
var init_stdio = __esm({
|
|
49456
|
-
"
|
|
49476
|
+
"module_331"() {
|
|
49457
49477
|
init_types2();
|
|
49458
49478
|
ReadBuffer = class {
|
|
49459
49479
|
append(chunk) {
|
|
@@ -49480,7 +49500,7 @@ var init_stdio = __esm({
|
|
|
49480
49500
|
|
|
49481
49501
|
var import_node_process7, StdioServerTransport;
|
|
49482
49502
|
var init_stdio2 = __esm({
|
|
49483
|
-
"
|
|
49503
|
+
"module_332"() {
|
|
49484
49504
|
import_node_process7 = __toESM(require("node:process"), 1);
|
|
49485
49505
|
init_stdio();
|
|
49486
49506
|
StdioServerTransport = class {
|
|
@@ -49816,7 +49836,7 @@ async function startBrowserGalServer(config2 = {}) {
|
|
|
49816
49836
|
}
|
|
49817
49837
|
var import_fs15, import_path14, MERGED_STORAGE_STATE_FILENAME, DEFAULT_FALLBACK_CHANNEL, DEFAULT_BROWSER_INIT_TIMEOUT_MS, BROWSER_GAL_TOOLS;
|
|
49818
49838
|
var init_browser_server = __esm({
|
|
49819
|
-
"
|
|
49839
|
+
"module_333"() {
|
|
49820
49840
|
"use strict";
|
|
49821
49841
|
init_server2();
|
|
49822
49842
|
init_stdio2();
|
|
@@ -49919,7 +49939,7 @@ var init_browser_server = __esm({
|
|
|
49919
49939
|
});
|
|
49920
49940
|
|
|
49921
49941
|
var init_dist4 = __esm({
|
|
49922
|
-
"
|
|
49942
|
+
"module_334"() {
|
|
49923
49943
|
"use strict";
|
|
49924
49944
|
init_browser_server();
|
|
49925
49945
|
}
|
|
@@ -50133,7 +50153,7 @@ function createBrowserCommand() {
|
|
|
50133
50153
|
}
|
|
50134
50154
|
var import_fs16, import_path15, import_child_process6, GAL_BINARY, BROWSER_SERVER_SUBCMD, PID_FILE_NAME;
|
|
50135
50155
|
var init_browser = __esm({
|
|
50136
|
-
"
|
|
50156
|
+
"module_335"() {
|
|
50137
50157
|
"use strict";
|
|
50138
50158
|
init_esm();
|
|
50139
50159
|
init_source();
|
|
@@ -50149,7 +50169,7 @@ var init_browser = __esm({
|
|
|
50149
50169
|
|
|
50150
50170
|
var CoreServiceProvider;
|
|
50151
50171
|
var init_CoreServiceProvider = __esm({
|
|
50152
|
-
"
|
|
50172
|
+
"module_336"() {
|
|
50153
50173
|
"use strict";
|
|
50154
50174
|
init_src();
|
|
50155
50175
|
init_client();
|
|
@@ -50680,7 +50700,7 @@ function createApprovedConfigCommand() {
|
|
|
50680
50700
|
return command;
|
|
50681
50701
|
}
|
|
50682
50702
|
var init_approved_config = __esm({
|
|
50683
|
-
"
|
|
50703
|
+
"module_337"() {
|
|
50684
50704
|
"use strict";
|
|
50685
50705
|
init_esm();
|
|
50686
50706
|
init_source();
|
|
@@ -50733,7 +50753,7 @@ Your role in ${orgName}: ${source_default.white(org.githubRole)}`));
|
|
|
50733
50753
|
}
|
|
50734
50754
|
}
|
|
50735
50755
|
var init_capability_checker = __esm({
|
|
50736
|
-
"
|
|
50756
|
+
"module_338"() {
|
|
50737
50757
|
"use strict";
|
|
50738
50758
|
init_source();
|
|
50739
50759
|
}
|
|
@@ -50741,7 +50761,7 @@ var init_capability_checker = __esm({
|
|
|
50741
50761
|
|
|
50742
50762
|
var import_fs17, import_path16, import_crypto3, import_os15, import_yaml2, PLATFORM_DIRS, PLATFORM_INSTRUCTION_FILES, GalConfigService;
|
|
50743
50763
|
var init_gal_config_service = __esm({
|
|
50744
|
-
"
|
|
50764
|
+
"module_339"() {
|
|
50745
50765
|
"use strict";
|
|
50746
50766
|
import_fs17 = require("fs");
|
|
50747
50767
|
import_path16 = require("path");
|
|
@@ -52163,7 +52183,7 @@ Content hash: ${hash}`));
|
|
|
52163
52183
|
}
|
|
52164
52184
|
var import_crypto4, import_fs18, import_path17;
|
|
52165
52185
|
var init_approve = __esm({
|
|
52166
|
-
"
|
|
52186
|
+
"module_340"() {
|
|
52167
52187
|
"use strict";
|
|
52168
52188
|
init_esm();
|
|
52169
52189
|
init_source();
|
|
@@ -52541,7 +52561,7 @@ Generated by GAL Token Security Audit
|
|
|
52541
52561
|
}
|
|
52542
52562
|
var import_child_process7, import_fs19, import_path18, import_readline2, defaultApiUrl3, TokenAuditor;
|
|
52543
52563
|
var init_audit = __esm({
|
|
52544
|
-
"
|
|
52564
|
+
"module_341"() {
|
|
52545
52565
|
"use strict";
|
|
52546
52566
|
init_esm();
|
|
52547
52567
|
init_source();
|
|
@@ -52907,7 +52927,7 @@ function findProjectRoot(startPath = process.cwd()) {
|
|
|
52907
52927
|
}
|
|
52908
52928
|
var import_fs20, import_path19, cachedProjectRoot, cachedStartPath, DEBUG;
|
|
52909
52929
|
var init_project_detection = __esm({
|
|
52910
|
-
"
|
|
52930
|
+
"module_342"() {
|
|
52911
52931
|
"use strict";
|
|
52912
52932
|
import_fs20 = require("fs");
|
|
52913
52933
|
import_path19 = require("path");
|
|
@@ -52919,7 +52939,7 @@ var init_project_detection = __esm({
|
|
|
52919
52939
|
|
|
52920
52940
|
var SYNC_STATE_SCHEMA_VERSION;
|
|
52921
52941
|
var init_types3 = __esm({
|
|
52922
|
-
"
|
|
52942
|
+
"module_343"() {
|
|
52923
52943
|
"use strict";
|
|
52924
52944
|
SYNC_STATE_SCHEMA_VERSION = 2;
|
|
52925
52945
|
}
|
|
@@ -53121,7 +53141,7 @@ function writeCopilotConfig(directory, configData, syncedFiles, syncedItems) {
|
|
|
53121
53141
|
}
|
|
53122
53142
|
var import_fs21, import_path20;
|
|
53123
53143
|
var init_copilot_writer = __esm({
|
|
53124
|
-
"
|
|
53144
|
+
"module_344"() {
|
|
53125
53145
|
"use strict";
|
|
53126
53146
|
import_fs21 = require("fs");
|
|
53127
53147
|
import_path20 = require("path");
|
|
@@ -53142,7 +53162,7 @@ function getValidDispatchCategories(categories) {
|
|
|
53142
53162
|
return categories.filter(isDispatchCategory);
|
|
53143
53163
|
}
|
|
53144
53164
|
var init_dispatch_categories = __esm({
|
|
53145
|
-
"
|
|
53165
|
+
"module_345"() {
|
|
53146
53166
|
"use strict";
|
|
53147
53167
|
}
|
|
53148
53168
|
});
|
|
@@ -53213,7 +53233,7 @@ function generateDispatchSection(config2) {
|
|
|
53213
53233
|
return lines.join("\n");
|
|
53214
53234
|
}
|
|
53215
53235
|
var init_agents_md_generator = __esm({
|
|
53216
|
-
"
|
|
53236
|
+
"module_346"() {
|
|
53217
53237
|
"use strict";
|
|
53218
53238
|
init_dispatch_categories();
|
|
53219
53239
|
}
|
|
@@ -53368,7 +53388,7 @@ function injectBrowserGalServer(directory, projectPath2) {
|
|
|
53368
53388
|
}
|
|
53369
53389
|
var import_fs22, import_path21, import_os16;
|
|
53370
53390
|
var init_mcp_config_writer = __esm({
|
|
53371
|
-
"
|
|
53391
|
+
"module_347"() {
|
|
53372
53392
|
"use strict";
|
|
53373
53393
|
import_fs22 = require("fs");
|
|
53374
53394
|
import_path21 = require("path");
|
|
@@ -53509,7 +53529,7 @@ function mergeStorageStateFiles2(filePaths, outputPath) {
|
|
|
53509
53529
|
}
|
|
53510
53530
|
var import_fs23, import_path22, MERGED_FILENAME;
|
|
53511
53531
|
var init_browser_profile_sync = __esm({
|
|
53512
|
-
"
|
|
53532
|
+
"module_348"() {
|
|
53513
53533
|
"use strict";
|
|
53514
53534
|
import_fs23 = require("fs");
|
|
53515
53535
|
import_path22 = require("path");
|
|
@@ -53544,7 +53564,7 @@ function getPatternsByCategory(category) {
|
|
|
53544
53564
|
}
|
|
53545
53565
|
var DANGEROUS_PATTERNS;
|
|
53546
53566
|
var init_dangerous_patterns = __esm({
|
|
53547
|
-
"
|
|
53567
|
+
"module_349"() {
|
|
53548
53568
|
"use strict";
|
|
53549
53569
|
DANGEROUS_PATTERNS = [
|
|
53550
53570
|
// Critical - Destructive file system operations
|
|
@@ -53764,7 +53784,7 @@ function seccompProfileToJson(profile) {
|
|
|
53764
53784
|
}
|
|
53765
53785
|
var DANGEROUS_SYSCALLS, ALLOWED_SYSCALLS;
|
|
53766
53786
|
var init_seccomp_generator = __esm({
|
|
53767
|
-
"
|
|
53787
|
+
"module_350"() {
|
|
53768
53788
|
"use strict";
|
|
53769
53789
|
DANGEROUS_SYSCALLS = [
|
|
53770
53790
|
"ptrace",
|
|
@@ -54000,13 +54020,13 @@ function macOSSandboxToSchemeLisp(profile) {
|
|
|
54000
54020
|
return lines.join("\n");
|
|
54001
54021
|
}
|
|
54002
54022
|
var init_macos_sandbox_generator = __esm({
|
|
54003
|
-
"
|
|
54023
|
+
"module_351"() {
|
|
54004
54024
|
"use strict";
|
|
54005
54025
|
}
|
|
54006
54026
|
});
|
|
54007
54027
|
|
|
54008
54028
|
var init_types4 = __esm({
|
|
54009
|
-
"
|
|
54029
|
+
"module_352"() {
|
|
54010
54030
|
"use strict";
|
|
54011
54031
|
}
|
|
54012
54032
|
});
|
|
@@ -54127,7 +54147,7 @@ function getDockerRunFlags(config2) {
|
|
|
54127
54147
|
}
|
|
54128
54148
|
var import_node_os2;
|
|
54129
54149
|
var init_kernel = __esm({
|
|
54130
|
-
"
|
|
54150
|
+
"module_353"() {
|
|
54131
54151
|
"use strict";
|
|
54132
54152
|
import_node_os2 = require("node:os");
|
|
54133
54153
|
init_seccomp_generator();
|
|
@@ -54781,7 +54801,7 @@ if __name__ == "__main__":
|
|
|
54781
54801
|
`;
|
|
54782
54802
|
}
|
|
54783
54803
|
var init_hook_generator = __esm({
|
|
54784
|
-
"
|
|
54804
|
+
"module_354"() {
|
|
54785
54805
|
"use strict";
|
|
54786
54806
|
init_dangerous_patterns();
|
|
54787
54807
|
init_kernel();
|
|
@@ -54900,7 +54920,7 @@ async function autoInstallSdlcHooksIfNeeded(basePath, apiUrl, orgName, policyNam
|
|
|
54900
54920
|
}
|
|
54901
54921
|
var import_node_fs, import_promises, import_node_path, BUILTIN_SDLC_POLICY_NAME, GAL_SDLC_PREPUSH_MARKER;
|
|
54902
54922
|
var init_sdlc_enforcement_install = __esm({
|
|
54903
|
-
"
|
|
54923
|
+
"module_355"() {
|
|
54904
54924
|
"use strict";
|
|
54905
54925
|
init_source();
|
|
54906
54926
|
init_ora();
|
|
@@ -55047,7 +55067,7 @@ function removeInitializedDirectory(directory) {
|
|
|
55047
55067
|
}
|
|
55048
55068
|
var import_fs24, import_os17, import_path23, REGISTRY_SCHEMA_VERSION, DEFAULT_REGISTRY_PATH;
|
|
55049
55069
|
var init_sync_initialization = __esm({
|
|
55050
|
-
"
|
|
55070
|
+
"module_356"() {
|
|
55051
55071
|
"use strict";
|
|
55052
55072
|
import_fs24 = require("fs");
|
|
55053
55073
|
import_os17 = require("os");
|
|
@@ -55110,7 +55130,7 @@ function checkGitConflict(filePath, repoRoot) {
|
|
|
55110
55130
|
}
|
|
55111
55131
|
var import_child_process8, import_fs25, import_path24, cachedGitInstalled;
|
|
55112
55132
|
var init_git_utils = __esm({
|
|
55113
|
-
"
|
|
55133
|
+
"module_357"() {
|
|
55114
55134
|
"use strict";
|
|
55115
55135
|
import_child_process8 = require("child_process");
|
|
55116
55136
|
import_fs25 = require("fs");
|
|
@@ -55231,7 +55251,7 @@ async function runSessionDriftCheck(projectRoot) {
|
|
|
55231
55251
|
}
|
|
55232
55252
|
var import_fs26, import_path25, import_os18, import_crypto5;
|
|
55233
55253
|
var init_drift_check = __esm({
|
|
55234
|
-
"
|
|
55254
|
+
"module_358"() {
|
|
55235
55255
|
"use strict";
|
|
55236
55256
|
import_fs26 = require("fs");
|
|
55237
55257
|
import_path25 = require("path");
|
|
@@ -57824,7 +57844,7 @@ async function checkApprovedConfig(configRepo, orgName, directory, platformFilte
|
|
|
57824
57844
|
}
|
|
57825
57845
|
var import_fs27, import_path26, import_os19, import_crypto6, cliVersion4, defaultApiUrl4, GAL_CLI_CURSOR_RULES_VERSION, GAL_CLI_CURSOR_RULES, CODEX_PROMPT_PREFIX, GEMINI_COMMANDS_DIR, GEMINI_SKILLS_DIR;
|
|
57826
57846
|
var init_sync = __esm({
|
|
57827
|
-
"
|
|
57847
|
+
"module_359"() {
|
|
57828
57848
|
"use strict";
|
|
57829
57849
|
init_esm();
|
|
57830
57850
|
init_source();
|
|
@@ -59327,7 +59347,7 @@ Source: ${credentialSource2}`));
|
|
|
59327
59347
|
}
|
|
59328
59348
|
var import_http, import_child_process9, import_os20, import_fs28, import_path27, import_readline3, CLI_CALLBACK_PORT, CLI_CALLBACK_PATH, cliVersion5, defaultApiUrl5;
|
|
59329
59349
|
var init_auth2 = __esm({
|
|
59330
|
-
"
|
|
59350
|
+
"module_360"() {
|
|
59331
59351
|
"use strict";
|
|
59332
59352
|
init_esm();
|
|
59333
59353
|
init_source();
|
|
@@ -59384,7 +59404,7 @@ Error: Path is not a directory: ${options.path}
|
|
|
59384
59404
|
}
|
|
59385
59405
|
var import_fs29, import_path28, import_child_process10, SECRET_PATTERNS, DANGEROUS_PATTERNS2, FORBIDDEN_FILES, PreEnforcementChecker;
|
|
59386
59406
|
var init_check = __esm({
|
|
59387
|
-
"
|
|
59407
|
+
"module_361"() {
|
|
59388
59408
|
"use strict";
|
|
59389
59409
|
init_esm();
|
|
59390
59410
|
init_source();
|
|
@@ -59993,7 +60013,7 @@ function resolveGalCodeInternalEndpointConfig(env2 = process.env, apiUrl = defau
|
|
|
59993
60013
|
const region = env2.GAL_CODE_VERTEX_REGION || env2.GAL_VERTEX_REGION || DEFAULT_GAL_CODE_REGION;
|
|
59994
60014
|
const endpointId = env2.GAL_CODE_VERTEX_ENDPOINT_ID || env2.GAL_VERTEX_ENDPOINT_ID || DEFAULT_GAL_CODE_ENDPOINT_ID;
|
|
59995
60015
|
const openAiEndpointBase = region === "global" ? "https://aiplatform.googleapis.com" : `https://${region}-aiplatform.googleapis.com`;
|
|
59996
|
-
const endpointUrl = env2.GAL_CODE_VERTEX_ENDPOINT_URL || env2.GAL_VERTEX_ENDPOINT_URL || `${openAiEndpointBase}/v1/projects/${projectId}/locations/${region}/endpoints/
|
|
60016
|
+
const endpointUrl = env2.GAL_CODE_VERTEX_ENDPOINT_URL || env2.GAL_VERTEX_ENDPOINT_URL || `${openAiEndpointBase}/v1/projects/${projectId}/locations/${region}/endpoints/${endpointId}/chat/completions`;
|
|
59997
60017
|
const gatewayBaseUrl = env2.GAL_CODE_GATEWAY_BASE_URL || `${apiUrl.replace(/\/$/, "")}${DEFAULT_GAL_CODE_GATEWAY_PATH}`;
|
|
59998
60018
|
return {
|
|
59999
60019
|
endpointId,
|
|
@@ -60075,7 +60095,11 @@ async function downloadGalCodeBinary(version2, target) {
|
|
|
60075
60095
|
if (process.env.GAL_CODE_DOWNLOAD_TOKEN) {
|
|
60076
60096
|
headers.Authorization = `Bearer ${process.env.GAL_CODE_DOWNLOAD_TOKEN}`;
|
|
60077
60097
|
}
|
|
60078
|
-
const response = await fetch(url, {
|
|
60098
|
+
const response = await fetch(url, {
|
|
60099
|
+
headers,
|
|
60100
|
+
redirect: "follow",
|
|
60101
|
+
signal: AbortSignal.timeout(GAL_CODE_DOWNLOAD_TIMEOUT_MS)
|
|
60102
|
+
});
|
|
60079
60103
|
if (!response.ok) {
|
|
60080
60104
|
throw new Error(`download failed (${response.status} ${response.statusText})`);
|
|
60081
60105
|
}
|
|
@@ -60097,6 +60121,11 @@ async function downloadGalCodeBinary(version2, target) {
|
|
|
60097
60121
|
(0, import_fs30.chmodSync)(cachePath, 493);
|
|
60098
60122
|
}
|
|
60099
60123
|
return cachePath;
|
|
60124
|
+
} catch (error3) {
|
|
60125
|
+
if (error3 instanceof Error && (error3.name === "AbortError" || error3.name === "TimeoutError")) {
|
|
60126
|
+
throw new Error(`download timed out after ${GAL_CODE_DOWNLOAD_TIMEOUT_MS}ms`);
|
|
60127
|
+
}
|
|
60128
|
+
throw error3;
|
|
60100
60129
|
} finally {
|
|
60101
60130
|
(0, import_fs30.rmSync)(tempDir, { recursive: true, force: true });
|
|
60102
60131
|
}
|
|
@@ -60374,9 +60403,9 @@ function createCodeCommand() {
|
|
|
60374
60403
|
}
|
|
60375
60404
|
});
|
|
60376
60405
|
}
|
|
60377
|
-
var import_child_process11, import_fs30, import_os21, import_path29, WORKSPACE_MARKER2, GAL_CODE_PACKAGE_PATH, GAL_CODE_PACKAGE_JSON, DEFAULT_RELEASE_BASE_URL, DEFAULT_GAL_CODE_PROJECT_ID, DEFAULT_GAL_CODE_REGION, DEFAULT_GAL_CODE_ENDPOINT_ID, DEFAULT_GAL_CODE_MODEL, DEFAULT_GAL_CODE_MODEL_ALIAS, DEFAULT_GAL_CODE_GATEWAY_PATH, GAL_CODE_BINARY_PATHS, cliVersion6, defaultApiUrl6;
|
|
60406
|
+
var import_child_process11, import_fs30, import_os21, import_path29, WORKSPACE_MARKER2, GAL_CODE_PACKAGE_PATH, GAL_CODE_PACKAGE_JSON, DEFAULT_RELEASE_BASE_URL, DEFAULT_GAL_CODE_PROJECT_ID, DEFAULT_GAL_CODE_REGION, DEFAULT_GAL_CODE_ENDPOINT_ID, DEFAULT_GAL_CODE_MODEL, DEFAULT_GAL_CODE_MODEL_ALIAS, DEFAULT_GAL_CODE_GATEWAY_PATH, GAL_CODE_DOWNLOAD_TIMEOUT_MS, GAL_CODE_BINARY_PATHS, cliVersion6, defaultApiUrl6;
|
|
60378
60407
|
var init_code = __esm({
|
|
60379
|
-
"
|
|
60408
|
+
"module_362"() {
|
|
60380
60409
|
"use strict";
|
|
60381
60410
|
import_child_process11 = require("child_process");
|
|
60382
60411
|
init_esm();
|
|
@@ -60398,6 +60427,7 @@ var init_code = __esm({
|
|
|
60398
60427
|
DEFAULT_GAL_CODE_MODEL = "glm-5";
|
|
60399
60428
|
DEFAULT_GAL_CODE_MODEL_ALIAS = "gal";
|
|
60400
60429
|
DEFAULT_GAL_CODE_GATEWAY_PATH = "/api/gal-code/v1";
|
|
60430
|
+
GAL_CODE_DOWNLOAD_TIMEOUT_MS = 12e4;
|
|
60401
60431
|
GAL_CODE_BINARY_PATHS = [
|
|
60402
60432
|
(0, import_path29.join)(GAL_CODE_PACKAGE_PATH, "target", "release", "gal-code"),
|
|
60403
60433
|
(0, import_path29.join)(GAL_CODE_PACKAGE_PATH, "target", "debug", "gal-code")
|
|
@@ -60408,7 +60438,7 @@ var init_code = __esm({
|
|
|
60408
60438
|
});
|
|
60409
60439
|
|
|
60410
60440
|
var init_types5 = __esm({
|
|
60411
|
-
"
|
|
60441
|
+
"module_363"() {
|
|
60412
60442
|
"use strict";
|
|
60413
60443
|
}
|
|
60414
60444
|
});
|
|
@@ -60418,7 +60448,7 @@ function getRequirementsByFramework(framework) {
|
|
|
60418
60448
|
}
|
|
60419
60449
|
var COMPLIANCE_REQUIREMENTS;
|
|
60420
60450
|
var init_requirements = __esm({
|
|
60421
|
-
"
|
|
60451
|
+
"module_364"() {
|
|
60422
60452
|
"use strict";
|
|
60423
60453
|
COMPLIANCE_REQUIREMENTS = [
|
|
60424
60454
|
// SOC 2 - Security
|
|
@@ -60647,7 +60677,7 @@ var init_requirements = __esm({
|
|
|
60647
60677
|
|
|
60648
60678
|
var ComplianceScoringEngine;
|
|
60649
60679
|
var init_scoring_engine = __esm({
|
|
60650
|
-
"
|
|
60680
|
+
"module_365"() {
|
|
60651
60681
|
"use strict";
|
|
60652
60682
|
init_requirements();
|
|
60653
60683
|
ComplianceScoringEngine = class {
|
|
@@ -61075,7 +61105,7 @@ var init_scoring_engine = __esm({
|
|
|
61075
61105
|
});
|
|
61076
61106
|
|
|
61077
61107
|
var init_compliance = __esm({
|
|
61078
|
-
"
|
|
61108
|
+
"module_366"() {
|
|
61079
61109
|
"use strict";
|
|
61080
61110
|
init_types5();
|
|
61081
61111
|
init_requirements();
|
|
@@ -61084,14 +61114,14 @@ var init_compliance = __esm({
|
|
|
61084
61114
|
});
|
|
61085
61115
|
|
|
61086
61116
|
var init_types6 = __esm({
|
|
61087
|
-
"
|
|
61117
|
+
"module_367"() {
|
|
61088
61118
|
"use strict";
|
|
61089
61119
|
}
|
|
61090
61120
|
});
|
|
61091
61121
|
|
|
61092
61122
|
var PolicyEngine, defaultPolicyEngine;
|
|
61093
61123
|
var init_policy_engine = __esm({
|
|
61094
|
-
"
|
|
61124
|
+
"module_368"() {
|
|
61095
61125
|
"use strict";
|
|
61096
61126
|
init_dangerous_patterns();
|
|
61097
61127
|
PolicyEngine = class {
|
|
@@ -61389,7 +61419,7 @@ async function validateLocalConfigs(basePath) {
|
|
|
61389
61419
|
}
|
|
61390
61420
|
var import_promises2, import_node_path2, PLATFORM_DIRS2, ConfigValidator;
|
|
61391
61421
|
var init_config_validator = __esm({
|
|
61392
|
-
"
|
|
61422
|
+
"module_369"() {
|
|
61393
61423
|
"use strict";
|
|
61394
61424
|
import_promises2 = require("node:fs/promises");
|
|
61395
61425
|
import_node_path2 = require("node:path");
|
|
@@ -61608,7 +61638,7 @@ async function createSystemEnforcer(config2 = {}) {
|
|
|
61608
61638
|
}
|
|
61609
61639
|
var import_node_fs2, import_promises3, import_node_path3, import_node_events, import_node_os3, ViolationBlockedError, SystemEnforcer;
|
|
61610
61640
|
var init_system_enforcer = __esm({
|
|
61611
|
-
"
|
|
61641
|
+
"module_370"() {
|
|
61612
61642
|
"use strict";
|
|
61613
61643
|
import_node_fs2 = require("node:fs");
|
|
61614
61644
|
import_promises3 = require("node:fs/promises");
|
|
@@ -62374,14 +62404,14 @@ rl.on('close', async () => {
|
|
|
62374
62404
|
};
|
|
62375
62405
|
}
|
|
62376
62406
|
var init_workflow_enforcement_hook = __esm({
|
|
62377
|
-
"
|
|
62407
|
+
"module_371"() {
|
|
62378
62408
|
"use strict";
|
|
62379
62409
|
init_dist2();
|
|
62380
62410
|
}
|
|
62381
62411
|
});
|
|
62382
62412
|
|
|
62383
62413
|
var init_enforcement = __esm({
|
|
62384
|
-
"
|
|
62414
|
+
"module_372"() {
|
|
62385
62415
|
"use strict";
|
|
62386
62416
|
init_types6();
|
|
62387
62417
|
init_dangerous_patterns();
|
|
@@ -62829,7 +62859,7 @@ function groupBy(array2, key) {
|
|
|
62829
62859
|
}
|
|
62830
62860
|
var import_promises4, defaultApiUrl7;
|
|
62831
62861
|
var init_compliance2 = __esm({
|
|
62832
|
-
"
|
|
62862
|
+
"module_373"() {
|
|
62833
62863
|
"use strict";
|
|
62834
62864
|
init_esm();
|
|
62835
62865
|
init_source();
|
|
@@ -62865,7 +62895,7 @@ function setTheme(theme) {
|
|
|
62865
62895
|
}
|
|
62866
62896
|
var subtleTheme, vividTheme, currentTheme, themeLoaded;
|
|
62867
62897
|
var init_theme = __esm({
|
|
62868
|
-
"
|
|
62898
|
+
"module_374"() {
|
|
62869
62899
|
"use strict";
|
|
62870
62900
|
init_source();
|
|
62871
62901
|
init_config_manager();
|
|
@@ -63041,7 +63071,7 @@ function createConfigCommand2() {
|
|
|
63041
63071
|
return command;
|
|
63042
63072
|
}
|
|
63043
63073
|
var init_config = __esm({
|
|
63044
|
-
"
|
|
63074
|
+
"module_375"() {
|
|
63045
63075
|
"use strict";
|
|
63046
63076
|
init_esm();
|
|
63047
63077
|
init_source();
|
|
@@ -63243,7 +63273,7 @@ Config: ${repo}/${path8}
|
|
|
63243
63273
|
}
|
|
63244
63274
|
var VALID_PLATFORMS, POLL_INTERVAL, SCAN_TIMEOUT;
|
|
63245
63275
|
var init_discover = __esm({
|
|
63246
|
-
"
|
|
63276
|
+
"module_376"() {
|
|
63247
63277
|
"use strict";
|
|
63248
63278
|
init_esm();
|
|
63249
63279
|
init_source();
|
|
@@ -63303,7 +63333,7 @@ function createSyncAllCommand() {
|
|
|
63303
63333
|
});
|
|
63304
63334
|
}
|
|
63305
63335
|
var init_distribute = __esm({
|
|
63306
|
-
"
|
|
63336
|
+
"module_377"() {
|
|
63307
63337
|
"use strict";
|
|
63308
63338
|
init_esm();
|
|
63309
63339
|
init_source();
|
|
@@ -64085,7 +64115,7 @@ function discoverEvalCases(evalsDir) {
|
|
|
64085
64115
|
}
|
|
64086
64116
|
var fs, path, DOCS_BASE_URL, DASHBOARD_URL;
|
|
64087
64117
|
var init_docs = __esm({
|
|
64088
|
-
"
|
|
64118
|
+
"module_378"() {
|
|
64089
64119
|
"use strict";
|
|
64090
64120
|
init_esm();
|
|
64091
64121
|
init_source();
|
|
@@ -65481,7 +65511,7 @@ async function removeGitPrecommitHook(basePath) {
|
|
|
65481
65511
|
}
|
|
65482
65512
|
var import_promises5, import_node_fs3, import_node_path4, import_node_crypto, defaultApiUrl8, PLATFORM_DIRS3, SCAN_PLATFORM_DIRS, ENFORCEMENT_HOOK_SUPPORT, GAL_PRECOMMIT_MARKER, GAL_PRECOMMIT_CONTENT;
|
|
65483
65513
|
var init_enforce = __esm({
|
|
65484
|
-
"
|
|
65514
|
+
"module_379"() {
|
|
65485
65515
|
"use strict";
|
|
65486
65516
|
init_esm();
|
|
65487
65517
|
init_source();
|
|
@@ -65691,7 +65721,7 @@ function createFeedbackCommand() {
|
|
|
65691
65721
|
}
|
|
65692
65722
|
var import_readline4, VALID_RATINGS, VALID_REASONS, REASON_LABELS;
|
|
65693
65723
|
var init_feedback2 = __esm({
|
|
65694
|
-
"
|
|
65724
|
+
"module_380"() {
|
|
65695
65725
|
"use strict";
|
|
65696
65726
|
init_esm();
|
|
65697
65727
|
init_source();
|
|
@@ -65865,7 +65895,7 @@ Files written to ${outputDir}`));
|
|
|
65865
65895
|
}
|
|
65866
65896
|
var import_fs31, import_path30, PLATFORM_DIRS4, CATEGORY_DIRS, FILE_EXTENSIONS;
|
|
65867
65897
|
var init_fetch = __esm({
|
|
65868
|
-
"
|
|
65898
|
+
"module_381"() {
|
|
65869
65899
|
"use strict";
|
|
65870
65900
|
init_esm();
|
|
65871
65901
|
init_source();
|
|
@@ -66001,7 +66031,7 @@ function createFlagsCommand() {
|
|
|
66001
66031
|
return cmd;
|
|
66002
66032
|
}
|
|
66003
66033
|
var init_flags = __esm({
|
|
66004
|
-
"
|
|
66034
|
+
"module_382"() {
|
|
66005
66035
|
"use strict";
|
|
66006
66036
|
init_esm();
|
|
66007
66037
|
init_source();
|
|
@@ -66093,7 +66123,7 @@ function createGovernanceCommand() {
|
|
|
66093
66123
|
}
|
|
66094
66124
|
var VALID_PROCESS_TYPES;
|
|
66095
66125
|
var init_governance = __esm({
|
|
66096
|
-
"
|
|
66126
|
+
"module_383"() {
|
|
66097
66127
|
"use strict";
|
|
66098
66128
|
init_esm();
|
|
66099
66129
|
init_source();
|
|
@@ -66502,7 +66532,7 @@ Fleet Status: ${orgName}
|
|
|
66502
66532
|
}
|
|
66503
66533
|
var import_node_os4, import_node_child_process, import_node_crypto2, import_promises6, import_meta2, defaultApiUrl9;
|
|
66504
66534
|
var init_fleet = __esm({
|
|
66505
|
-
"
|
|
66535
|
+
"module_384"() {
|
|
66506
66536
|
"use strict";
|
|
66507
66537
|
init_esm();
|
|
66508
66538
|
init_source();
|
|
@@ -66608,7 +66638,7 @@ Task not running: ${taskId}
|
|
|
66608
66638
|
}
|
|
66609
66639
|
var import_child_process12, import_fs32, import_path31, DEFAULT_CONFIG, TASK_TEMPLATES, HeadlessRunner;
|
|
66610
66640
|
var init_headless = __esm({
|
|
66611
|
-
"
|
|
66641
|
+
"module_385"() {
|
|
66612
66642
|
"use strict";
|
|
66613
66643
|
init_esm();
|
|
66614
66644
|
init_source();
|
|
@@ -67015,7 +67045,7 @@ function createInitCommand() {
|
|
|
67015
67045
|
}
|
|
67016
67046
|
var import_path32;
|
|
67017
67047
|
var init_init = __esm({
|
|
67018
|
-
"
|
|
67048
|
+
"module_386"() {
|
|
67019
67049
|
"use strict";
|
|
67020
67050
|
init_esm();
|
|
67021
67051
|
init_source();
|
|
@@ -67257,7 +67287,7 @@ function createInstallCommand() {
|
|
|
67257
67287
|
}
|
|
67258
67288
|
var import_fs33, import_path33, import_os22, INSTALL_METHODS, CLAUDE_DIR2, SETTINGS_PATH2, MEMORY_HOOK_VERSION, MEMORY_HOOK_MARKER, CLAUDE_MD_MARKER_START, CLAUDE_MD_MARKER_END, CLAUDE_MD_TEMPLATE;
|
|
67259
67289
|
var init_install2 = __esm({
|
|
67260
|
-
"
|
|
67290
|
+
"module_387"() {
|
|
67261
67291
|
"use strict";
|
|
67262
67292
|
init_esm();
|
|
67263
67293
|
init_source();
|
|
@@ -67574,7 +67604,7 @@ Error: ${useResult.error || "Unknown error"}`));
|
|
|
67574
67604
|
}
|
|
67575
67605
|
var import_node_os5, import_node_child_process2, import_node_crypto3, import_promises7, import_node_path5, defaultApiUrl10;
|
|
67576
67606
|
var init_join = __esm({
|
|
67577
|
-
"
|
|
67607
|
+
"module_388"() {
|
|
67578
67608
|
"use strict";
|
|
67579
67609
|
init_esm();
|
|
67580
67610
|
init_source();
|
|
@@ -67797,7 +67827,7 @@ function formatBytes(bytes) {
|
|
|
67797
67827
|
}
|
|
67798
67828
|
var MaintenanceHooks;
|
|
67799
67829
|
var init_maintain = __esm({
|
|
67800
|
-
"
|
|
67830
|
+
"module_389"() {
|
|
67801
67831
|
"use strict";
|
|
67802
67832
|
init_esm();
|
|
67803
67833
|
init_source();
|
|
@@ -68089,7 +68119,7 @@ function createSyncMemoryCommand() {
|
|
|
68089
68119
|
}
|
|
68090
68120
|
var import_fs34, import_path34, import_os23, SYNC_TIMEOUT_MS, GAL_SYNC_MARKER, SYNC_STATE_DIR, SYNC_STATE_FILE, defaultApiUrl11;
|
|
68091
68121
|
var init_sync_memory = __esm({
|
|
68092
|
-
"
|
|
68122
|
+
"module_390"() {
|
|
68093
68123
|
"use strict";
|
|
68094
68124
|
init_esm();
|
|
68095
68125
|
import_fs34 = require("fs");
|
|
@@ -68418,7 +68448,7 @@ function createMcpCommand() {
|
|
|
68418
68448
|
}
|
|
68419
68449
|
var import_fs35, import_path35, DEFAULT_SERVER_NAME, defaultApiUrl12;
|
|
68420
68450
|
var init_mcp = __esm({
|
|
68421
|
-
"
|
|
68451
|
+
"module_391"() {
|
|
68422
68452
|
"use strict";
|
|
68423
68453
|
init_esm();
|
|
68424
68454
|
init_source();
|
|
@@ -68717,7 +68747,7 @@ Notes:
|
|
|
68717
68747
|
}
|
|
68718
68748
|
var import_fs36, import_path36, import_os24;
|
|
68719
68749
|
var init_memory2 = __esm({
|
|
68720
|
-
"
|
|
68750
|
+
"module_392"() {
|
|
68721
68751
|
"use strict";
|
|
68722
68752
|
init_esm();
|
|
68723
68753
|
init_source();
|
|
@@ -68731,7 +68761,7 @@ var init_memory2 = __esm({
|
|
|
68731
68761
|
});
|
|
68732
68762
|
|
|
68733
68763
|
var init_zod = __esm({
|
|
68734
|
-
"
|
|
68764
|
+
"module_393"() {
|
|
68735
68765
|
init_external();
|
|
68736
68766
|
init_external();
|
|
68737
68767
|
}
|
|
@@ -68879,7 +68909,7 @@ function parseAgentOutput(output, options = {}) {
|
|
|
68879
68909
|
}
|
|
68880
68910
|
var draftIssueSchema, draftIssueArraySchema, DEFAULT_CHUNK_SIZE, DEFAULT_CHUNK_OVERLAP;
|
|
68881
68911
|
var init_transcript_processor = __esm({
|
|
68882
|
-
"
|
|
68912
|
+
"module_394"() {
|
|
68883
68913
|
"use strict";
|
|
68884
68914
|
init_zod();
|
|
68885
68915
|
draftIssueSchema = external_exports.object({
|
|
@@ -69026,7 +69056,7 @@ async function readLocalTranscriptFile(filePath) {
|
|
|
69026
69056
|
}
|
|
69027
69057
|
var import_promises8, import_node_os6, import_node_path6, GoogleDriveService;
|
|
69028
69058
|
var init_google_drive = __esm({
|
|
69029
|
-
"
|
|
69059
|
+
"module_395"() {
|
|
69030
69060
|
"use strict";
|
|
69031
69061
|
import_promises8 = require("node:fs/promises");
|
|
69032
69062
|
import_node_os6 = require("node:os");
|
|
@@ -69156,7 +69186,7 @@ async function collectSessionOutput(options) {
|
|
|
69156
69186
|
}
|
|
69157
69187
|
}
|
|
69158
69188
|
var init_session_output_stream = __esm({
|
|
69159
|
-
"
|
|
69189
|
+
"module_396"() {
|
|
69160
69190
|
"use strict";
|
|
69161
69191
|
}
|
|
69162
69192
|
});
|
|
@@ -69241,7 +69271,7 @@ async function createIssues(drafts, context, onProgress) {
|
|
|
69241
69271
|
}
|
|
69242
69272
|
var import_node_child_process3, import_promises9, import_node_os7, import_node_path7, import_node_util2, execFile;
|
|
69243
69273
|
var init_issue_creator = __esm({
|
|
69244
|
-
"
|
|
69274
|
+
"module_397"() {
|
|
69245
69275
|
"use strict";
|
|
69246
69276
|
import_node_child_process3 = require("node:child_process");
|
|
69247
69277
|
import_promises9 = require("node:fs/promises");
|
|
@@ -69335,7 +69365,7 @@ async function reviewDraftIssues(transcript, drafts, options = {}) {
|
|
|
69335
69365
|
}
|
|
69336
69366
|
var import_node_readline, import_node_child_process4, import_promises10, import_node_os8, import_node_path8;
|
|
69337
69367
|
var init_transcript_review = __esm({
|
|
69338
|
-
"
|
|
69368
|
+
"module_398"() {
|
|
69339
69369
|
"use strict";
|
|
69340
69370
|
import_node_readline = require("node:readline");
|
|
69341
69371
|
import_node_child_process4 = require("node:child_process");
|
|
@@ -69561,7 +69591,7 @@ function createOpsCommand() {
|
|
|
69561
69591
|
}
|
|
69562
69592
|
var import_node_child_process5, import_promises11, DEFAULT_TRANSCRIPT_REPO;
|
|
69563
69593
|
var init_ops = __esm({
|
|
69564
|
-
"
|
|
69594
|
+
"module_399"() {
|
|
69565
69595
|
"use strict";
|
|
69566
69596
|
import_node_child_process5 = require("node:child_process");
|
|
69567
69597
|
import_promises11 = require("node:fs/promises");
|
|
@@ -70082,7 +70112,7 @@ function createPolicyCommand() {
|
|
|
70082
70112
|
}
|
|
70083
70113
|
var defaultApiUrl13;
|
|
70084
70114
|
var init_policy = __esm({
|
|
70085
|
-
"
|
|
70115
|
+
"module_400"() {
|
|
70086
70116
|
"use strict";
|
|
70087
70117
|
init_esm();
|
|
70088
70118
|
init_source();
|
|
@@ -70247,7 +70277,7 @@ function readDirRecursive(dir, extension) {
|
|
|
70247
70277
|
}
|
|
70248
70278
|
var import_fs37, import_path37, import_os25, import_yaml3;
|
|
70249
70279
|
var init_config_reader = __esm({
|
|
70250
|
-
"
|
|
70280
|
+
"module_401"() {
|
|
70251
70281
|
"use strict";
|
|
70252
70282
|
import_fs37 = require("fs");
|
|
70253
70283
|
import_path37 = require("path");
|
|
@@ -70396,7 +70426,7 @@ function createProposeCommand() {
|
|
|
70396
70426
|
}
|
|
70397
70427
|
var import_fs38, import_path38, import_child_process13;
|
|
70398
70428
|
var init_propose = __esm({
|
|
70399
|
-
"
|
|
70429
|
+
"module_402"() {
|
|
70400
70430
|
"use strict";
|
|
70401
70431
|
init_esm();
|
|
70402
70432
|
init_source();
|
|
@@ -70586,7 +70616,7 @@ function formatWatchStatus(status) {
|
|
|
70586
70616
|
}
|
|
70587
70617
|
var RecursionGuard;
|
|
70588
70618
|
var init_protect = __esm({
|
|
70589
|
-
"
|
|
70619
|
+
"module_403"() {
|
|
70590
70620
|
"use strict";
|
|
70591
70621
|
init_esm();
|
|
70592
70622
|
init_source();
|
|
@@ -71022,7 +71052,7 @@ function formatMinutes(minutes) {
|
|
|
71022
71052
|
}
|
|
71023
71053
|
var fs2, path2, DEFAULT_CONFIG2;
|
|
71024
71054
|
var init_quality = __esm({
|
|
71025
|
-
"
|
|
71055
|
+
"module_404"() {
|
|
71026
71056
|
"use strict";
|
|
71027
71057
|
init_esm();
|
|
71028
71058
|
init_source();
|
|
@@ -71337,7 +71367,7 @@ function createCancelCommand() {
|
|
|
71337
71367
|
}
|
|
71338
71368
|
var import_fs39, defaultApiUrl14, PRIORITY_LABELS, PRIORITY_COLORS, STATUS_COLORS;
|
|
71339
71369
|
var init_queue_mgmt = __esm({
|
|
71340
|
-
"
|
|
71370
|
+
"module_405"() {
|
|
71341
71371
|
"use strict";
|
|
71342
71372
|
init_esm();
|
|
71343
71373
|
init_source();
|
|
@@ -71778,7 +71808,7 @@ function createQueueCommand() {
|
|
|
71778
71808
|
}
|
|
71779
71809
|
var import_fs40, defaultApiUrl15, GH_API_BASE, DEFAULT_TEMPLATE_BY_LABEL, DEFAULT_TEMPLATE;
|
|
71780
71810
|
var init_queue_seed = __esm({
|
|
71781
|
-
"
|
|
71811
|
+
"module_406"() {
|
|
71782
71812
|
"use strict";
|
|
71783
71813
|
init_esm();
|
|
71784
71814
|
init_source();
|
|
@@ -71922,7 +71952,7 @@ function createReportUsageCommand() {
|
|
|
71922
71952
|
}
|
|
71923
71953
|
var defaultApiUrl16, MAX_USAGE_CHUNK_SECONDS;
|
|
71924
71954
|
var init_report_usage = __esm({
|
|
71925
|
-
"
|
|
71955
|
+
"module_407"() {
|
|
71926
71956
|
"use strict";
|
|
71927
71957
|
init_esm();
|
|
71928
71958
|
init_source();
|
|
@@ -72068,7 +72098,7 @@ function substituteArguments(commandBody, args2) {
|
|
|
72068
72098
|
}
|
|
72069
72099
|
var import_fs41, import_path39;
|
|
72070
72100
|
var init_command_parser = __esm({
|
|
72071
|
-
"
|
|
72101
|
+
"module_408"() {
|
|
72072
72102
|
"use strict";
|
|
72073
72103
|
import_fs41 = require("fs");
|
|
72074
72104
|
import_path39 = require("path");
|
|
@@ -72303,7 +72333,7 @@ function parseCommandArguments(args2) {
|
|
|
72303
72333
|
return { positional, flags, combined };
|
|
72304
72334
|
}
|
|
72305
72335
|
var init_headless_executor = __esm({
|
|
72306
|
-
"
|
|
72336
|
+
"module_409"() {
|
|
72307
72337
|
"use strict";
|
|
72308
72338
|
init_command_parser();
|
|
72309
72339
|
}
|
|
@@ -72487,7 +72517,7 @@ Executing command: ${command.name}`));
|
|
|
72487
72517
|
}
|
|
72488
72518
|
var import_os26, import_path40, import_fs42;
|
|
72489
72519
|
var init_run = __esm({
|
|
72490
|
-
"
|
|
72520
|
+
"module_410"() {
|
|
72491
72521
|
"use strict";
|
|
72492
72522
|
init_esm();
|
|
72493
72523
|
init_source();
|
|
@@ -72833,7 +72863,7 @@ function createRunDesignCommand() {
|
|
|
72833
72863
|
}
|
|
72834
72864
|
var import_os27, import_path41, import_fs43, DESIGN_PROJECTS_DIR, ACTIVE_FILE, IMAGE_STATUS_ICON, VIDEO_STATUS_ICON;
|
|
72835
72865
|
var init_run_design = __esm({
|
|
72836
|
-
"
|
|
72866
|
+
"module_411"() {
|
|
72837
72867
|
"use strict";
|
|
72838
72868
|
init_esm();
|
|
72839
72869
|
init_source();
|
|
@@ -73182,7 +73212,7 @@ function createScanCommand() {
|
|
|
73182
73212
|
}
|
|
73183
73213
|
var import_fs44, import_path42, import_os28, GLOBAL_MEMORY_LOCATIONS, PLATFORM_LABELS, PLATFORM_COLORS;
|
|
73184
73214
|
var init_scan = __esm({
|
|
73185
|
-
"
|
|
73215
|
+
"module_412"() {
|
|
73186
73216
|
"use strict";
|
|
73187
73217
|
init_esm();
|
|
73188
73218
|
init_source();
|
|
@@ -73332,7 +73362,7 @@ function listApprovedConfigItems(config2, type) {
|
|
|
73332
73362
|
}
|
|
73333
73363
|
var import_node_os9, import_node_path9;
|
|
73334
73364
|
var init_approved_config_enforcement3 = __esm({
|
|
73335
|
-
"
|
|
73365
|
+
"module_413"() {
|
|
73336
73366
|
"use strict";
|
|
73337
73367
|
import_node_os9 = require("node:os");
|
|
73338
73368
|
import_node_path9 = require("node:path");
|
|
@@ -73450,7 +73480,7 @@ function createSandboxProfilesCommand() {
|
|
|
73450
73480
|
}
|
|
73451
73481
|
var import_promises12, import_node_path10;
|
|
73452
73482
|
var init_sandbox_profiles = __esm({
|
|
73453
|
-
"
|
|
73483
|
+
"module_414"() {
|
|
73454
73484
|
"use strict";
|
|
73455
73485
|
init_esm();
|
|
73456
73486
|
init_source();
|
|
@@ -73480,7 +73510,7 @@ function createSandboxService(config2) {
|
|
|
73480
73510
|
}
|
|
73481
73511
|
var import_node_module2, import_meta3, sandboxClass, E2BSandboxService;
|
|
73482
73512
|
var init_e2b_sandbox = __esm({
|
|
73483
|
-
"
|
|
73513
|
+
"module_415"() {
|
|
73484
73514
|
"use strict";
|
|
73485
73515
|
import_node_module2 = require("node:module");
|
|
73486
73516
|
init_source();
|
|
@@ -74145,7 +74175,7 @@ async function startInteractiveSession(sandbox) {
|
|
|
74145
74175
|
}
|
|
74146
74176
|
var import_promises13, import_path43;
|
|
74147
74177
|
var init_sandbox = __esm({
|
|
74148
|
-
"
|
|
74178
|
+
"module_416"() {
|
|
74149
74179
|
"use strict";
|
|
74150
74180
|
init_esm();
|
|
74151
74181
|
init_source();
|
|
@@ -74822,7 +74852,7 @@ function createSdlcCommand() {
|
|
|
74822
74852
|
}
|
|
74823
74853
|
var import_fs45, import_path44, import_child_process14, IMPL_EXTENSIONS, IGNORE_DIRS, IGNORE_FILES;
|
|
74824
74854
|
var init_sdlc = __esm({
|
|
74825
|
-
"
|
|
74855
|
+
"module_417"() {
|
|
74826
74856
|
"use strict";
|
|
74827
74857
|
init_esm();
|
|
74828
74858
|
init_source();
|
|
@@ -74933,7 +74963,7 @@ function createSecurityCommand() {
|
|
|
74933
74963
|
}
|
|
74934
74964
|
var defaultApiUrl17;
|
|
74935
74965
|
var init_security = __esm({
|
|
74936
|
-
"
|
|
74966
|
+
"module_418"() {
|
|
74937
74967
|
"use strict";
|
|
74938
74968
|
init_esm();
|
|
74939
74969
|
init_source();
|
|
@@ -75319,7 +75349,7 @@ function createStatusCommand3() {
|
|
|
75319
75349
|
}
|
|
75320
75350
|
var import_path45, import_os29, import_fs46, cliVersion7, defaultApiUrl18, PLATFORM_LABELS2, RATE_LIMIT_MS, DRIFT_REPORT_CACHE_PATH;
|
|
75321
75351
|
var init_status = __esm({
|
|
75322
|
-
"
|
|
75352
|
+
"module_419"() {
|
|
75323
75353
|
"use strict";
|
|
75324
75354
|
init_esm();
|
|
75325
75355
|
init_source();
|
|
@@ -75495,7 +75525,7 @@ Extracted ${files.length} configuration files.`);
|
|
|
75495
75525
|
}
|
|
75496
75526
|
var fs4, path4, DevEnvironmentTemplates;
|
|
75497
75527
|
var init_template = __esm({
|
|
75498
|
-
"
|
|
75528
|
+
"module_420"() {
|
|
75499
75529
|
"use strict";
|
|
75500
75530
|
init_esm();
|
|
75501
75531
|
init_source();
|
|
@@ -75850,7 +75880,7 @@ function formatTestResult(result) {
|
|
|
75850
75880
|
}
|
|
75851
75881
|
var GovernanceTestFramework;
|
|
75852
75882
|
var init_test = __esm({
|
|
75853
|
-
"
|
|
75883
|
+
"module_421"() {
|
|
75854
75884
|
"use strict";
|
|
75855
75885
|
init_esm();
|
|
75856
75886
|
init_source();
|
|
@@ -76181,7 +76211,7 @@ function parseDuration(input) {
|
|
|
76181
76211
|
}
|
|
76182
76212
|
var fs5, path5, os2, SESSION_FILE, TimeTracker, WorkflowRulesEngine, ComplianceTracker;
|
|
76183
76213
|
var init_time = __esm({
|
|
76184
|
-
"
|
|
76214
|
+
"module_422"() {
|
|
76185
76215
|
"use strict";
|
|
76186
76216
|
init_esm();
|
|
76187
76217
|
init_source();
|
|
@@ -76302,7 +76332,7 @@ var init_time = __esm({
|
|
|
76302
76332
|
});
|
|
76303
76333
|
|
|
76304
76334
|
var init_types7 = __esm({
|
|
76305
|
-
"
|
|
76335
|
+
"module_423"() {
|
|
76306
76336
|
"use strict";
|
|
76307
76337
|
}
|
|
76308
76338
|
});
|
|
@@ -76315,7 +76345,7 @@ function getDefaultRegistry() {
|
|
|
76315
76345
|
}
|
|
76316
76346
|
var import_events, import_crypto7, DEFAULT_CONFIG3, TriggerRegistry, defaultRegistry;
|
|
76317
76347
|
var init_triggers = __esm({
|
|
76318
|
-
"
|
|
76348
|
+
"module_424"() {
|
|
76319
76349
|
"use strict";
|
|
76320
76350
|
import_events = require("events");
|
|
76321
76351
|
import_crypto7 = require("crypto");
|
|
@@ -76667,7 +76697,7 @@ function getGitHookManager() {
|
|
|
76667
76697
|
}
|
|
76668
76698
|
var import_child_process15, import_fs47, import_path46, DEFAULT_GIT_HOOK_CONFIG, GitHookManager, defaultManager;
|
|
76669
76699
|
var init_git_hooks = __esm({
|
|
76670
|
-
"
|
|
76700
|
+
"module_425"() {
|
|
76671
76701
|
"use strict";
|
|
76672
76702
|
import_child_process15 = require("child_process");
|
|
76673
76703
|
import_fs47 = require("fs");
|
|
@@ -77039,7 +77069,7 @@ function getFileWatcher() {
|
|
|
77039
77069
|
}
|
|
77040
77070
|
var import_fs48, import_path47, DEFAULT_FILE_WATCHER_CONFIG, AGENT_CONFIG_PATTERNS, FileWatcher, defaultWatcher;
|
|
77041
77071
|
var init_file_watcher = __esm({
|
|
77042
|
-
"
|
|
77072
|
+
"module_426"() {
|
|
77043
77073
|
"use strict";
|
|
77044
77074
|
import_fs48 = require("fs");
|
|
77045
77075
|
import_path47 = require("path");
|
|
@@ -77641,7 +77671,7 @@ Recent Events (${events.length}):
|
|
|
77641
77671
|
return command;
|
|
77642
77672
|
}
|
|
77643
77673
|
var init_trigger = __esm({
|
|
77644
|
-
"
|
|
77674
|
+
"module_427"() {
|
|
77645
77675
|
"use strict";
|
|
77646
77676
|
init_esm();
|
|
77647
77677
|
init_source();
|
|
@@ -78104,7 +78134,7 @@ function createUninstallCommand() {
|
|
|
78104
78134
|
}
|
|
78105
78135
|
var import_fs49, import_path48, import_os30, import_readline5;
|
|
78106
78136
|
var init_uninstall = __esm({
|
|
78107
|
-
"
|
|
78137
|
+
"module_428"() {
|
|
78108
78138
|
"use strict";
|
|
78109
78139
|
init_esm();
|
|
78110
78140
|
init_source();
|
|
@@ -78329,7 +78359,7 @@ function detectPlatforms2(projectPath2) {
|
|
|
78329
78359
|
}
|
|
78330
78360
|
var fs6, path6, SUPPORTED_PLATFORMS, UNIVERSAL_COMMANDS;
|
|
78331
78361
|
var init_universal = __esm({
|
|
78332
|
-
"
|
|
78362
|
+
"module_429"() {
|
|
78333
78363
|
"use strict";
|
|
78334
78364
|
init_esm();
|
|
78335
78365
|
init_source();
|
|
@@ -78695,7 +78725,7 @@ Retry manually with: ${source_default.cyan(installCommand)}`);
|
|
|
78695
78725
|
}
|
|
78696
78726
|
var import_https, import_child_process16, import_fs50, import_path49, import_os31, UPDATE_LOCK_FILE, cliVersion8, REGISTRY_URL;
|
|
78697
78727
|
var init_update = __esm({
|
|
78698
|
-
"
|
|
78728
|
+
"module_430"() {
|
|
78699
78729
|
"use strict";
|
|
78700
78730
|
init_esm();
|
|
78701
78731
|
init_source();
|
|
@@ -79184,7 +79214,7 @@ ${source_default.dim(`Claim: gal work claim ${item.id.slice(0, 8)}`)}`);
|
|
|
79184
79214
|
}
|
|
79185
79215
|
var defaultApiUrl19, PRIORITY_COLORS2, STATUS_COLORS2;
|
|
79186
79216
|
var init_work = __esm({
|
|
79187
|
-
"
|
|
79217
|
+
"module_431"() {
|
|
79188
79218
|
"use strict";
|
|
79189
79219
|
init_esm();
|
|
79190
79220
|
init_source();
|
|
@@ -79385,7 +79415,7 @@ function displayTestResult(result) {
|
|
|
79385
79415
|
}
|
|
79386
79416
|
var import_promises14, import_path50, defaultApiUrl20;
|
|
79387
79417
|
var init_workflow2 = __esm({
|
|
79388
|
-
"
|
|
79418
|
+
"module_432"() {
|
|
79389
79419
|
"use strict";
|
|
79390
79420
|
init_esm();
|
|
79391
79421
|
init_source();
|
|
@@ -79572,7 +79602,7 @@ function createWorkspaceCommand() {
|
|
|
79572
79602
|
return command;
|
|
79573
79603
|
}
|
|
79574
79604
|
var init_workspace6 = __esm({
|
|
79575
|
-
"
|
|
79605
|
+
"module_433"() {
|
|
79576
79606
|
"use strict";
|
|
79577
79607
|
init_esm();
|
|
79578
79608
|
init_source();
|
|
@@ -79582,7 +79612,7 @@ var init_workspace6 = __esm({
|
|
|
79582
79612
|
|
|
79583
79613
|
var COMMAND_FACTORIES;
|
|
79584
79614
|
var init_command_registry = __esm({
|
|
79585
|
-
"
|
|
79615
|
+
"module_434"() {
|
|
79586
79616
|
"use strict";
|
|
79587
79617
|
init_admin();
|
|
79588
79618
|
init_agent();
|
|
@@ -79707,7 +79737,7 @@ function printBranding() {
|
|
|
79707
79737
|
}
|
|
79708
79738
|
var cliVersion9;
|
|
79709
79739
|
var init_branding = __esm({
|
|
79710
|
-
"
|
|
79740
|
+
"module_435"() {
|
|
79711
79741
|
"use strict";
|
|
79712
79742
|
init_source();
|
|
79713
79743
|
init_constants();
|
|
@@ -80079,9 +80109,9 @@ function getRequestedCommand(argv) {
|
|
|
80079
80109
|
}
|
|
80080
80110
|
return null;
|
|
80081
80111
|
}
|
|
80082
|
-
var import_dotenv, import_https2, import_readline6, import_child_process17, import_fs51, import_path51, import_os32, originalEmit,
|
|
80112
|
+
var import_dotenv, import_https2, import_readline6, import_child_process17, import_fs51, import_path51, import_os32, originalEmit, cliVersion10, UPDATE_CACHE_DIR, UPDATE_CACHE_FILE, ONE_DAY, REGISTRY_URL2, REGISTRY_HOST, sessionStartTime, isReadOnlyStatusCommand, isMachineMode, exitHooksRan, featureFlags, knownCommands, isKnownCommand, requestedCommandForTimeout, program2, allInternalFlags;
|
|
80083
80113
|
var init_index = __esm({
|
|
80084
|
-
"
|
|
80114
|
+
"module_436"() {
|
|
80085
80115
|
"use strict";
|
|
80086
80116
|
init_esm();
|
|
80087
80117
|
import_dotenv = __toESM(require_main(), 1);
|
|
@@ -80098,6 +80128,7 @@ var init_index = __esm({
|
|
|
80098
80128
|
init_install();
|
|
80099
80129
|
init_update_notification();
|
|
80100
80130
|
init_org_config_upgrade();
|
|
80131
|
+
init_global_timeout();
|
|
80101
80132
|
init_telemetry();
|
|
80102
80133
|
init_terms_acceptance();
|
|
80103
80134
|
init_research_preview();
|
|
@@ -80112,14 +80143,6 @@ var init_index = __esm({
|
|
|
80112
80143
|
}
|
|
80113
80144
|
return originalEmit.apply(process, arguments);
|
|
80114
80145
|
};
|
|
80115
|
-
GLOBAL_TIMEOUT_MS = 12e4;
|
|
80116
|
-
globalTimeout = setTimeout(() => {
|
|
80117
|
-
console.error("\n[GAL CLI] Command timed out after 2 minutes. Exiting.");
|
|
80118
|
-
console.error("If this keeps happening, please report at:");
|
|
80119
|
-
console.error("https://github.com/Scheduler-Systems/gal-run/issues\n");
|
|
80120
|
-
process.exit(124);
|
|
80121
|
-
}, GLOBAL_TIMEOUT_MS);
|
|
80122
|
-
globalTimeout.unref();
|
|
80123
80146
|
cliVersion10 = constants_default[0];
|
|
80124
80147
|
UPDATE_CACHE_DIR = (0, import_path51.join)((0, import_os32.homedir)(), ".gal");
|
|
80125
80148
|
UPDATE_CACHE_FILE = (0, import_path51.join)(UPDATE_CACHE_DIR, "update-cache.json");
|
|
@@ -80170,6 +80193,10 @@ var init_index = __esm({
|
|
|
80170
80193
|
...COMMAND_CATEGORIES.internal
|
|
80171
80194
|
]);
|
|
80172
80195
|
isKnownCommand = (name) => knownCommands.has(name);
|
|
80196
|
+
requestedCommandForTimeout = getRequestedCommand(process.argv);
|
|
80197
|
+
if (shouldEnableGlobalTimeout(requestedCommandForTimeout)) {
|
|
80198
|
+
installGlobalTimeout();
|
|
80199
|
+
}
|
|
80173
80200
|
try {
|
|
80174
80201
|
import_dotenv.default.config({ quiet: true });
|
|
80175
80202
|
} catch {
|
|
@@ -80279,7 +80306,7 @@ var init_index = __esm({
|
|
|
80279
80306
|
}
|
|
80280
80307
|
});
|
|
80281
80308
|
|
|
80282
|
-
var cliVersion11 = true ? "0.0.
|
|
80309
|
+
var cliVersion11 = true ? "0.0.556" : "0.0.0-dev";
|
|
80283
80310
|
var args = process.argv.slice(2);
|
|
80284
80311
|
var requestedGlobalHelp = args.length === 1 && (args[0] === "--help" || args[0] === "-h");
|
|
80285
80312
|
var requestedVersion = args.length === 1 && (args[0] === "--version" || args[0] === "-V");
|