@vantagesec/socc 0.1.8 → 0.1.10

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/cli.mjs CHANGED
@@ -51883,11 +51883,21 @@ var init_env = __esm(() => {
51883
51883
  init_fsOperations();
51884
51884
  init_which();
51885
51885
  getGlobalClaudeFile = memoize_default(() => {
51886
- if (getFsImplementation().existsSync(join19(getClaudeConfigHomeDir(), ".config.json"))) {
51887
- return join19(getClaudeConfigHomeDir(), ".config.json");
51886
+ const configHome = getClaudeConfigHomeDir();
51887
+ const suffix = fileSuffixForOauthConfig();
51888
+ const primaryConfig = join19(configHome, suffix ? `.config${suffix}.json` : ".config.json");
51889
+ if (getFsImplementation().existsSync(primaryConfig)) {
51890
+ return primaryConfig;
51888
51891
  }
51889
- const filename = `.claude${fileSuffixForOauthConfig()}.json`;
51890
- return join19(process.env.CLAUDE_CONFIG_DIR || homedir9(), filename);
51892
+ if (configHome === join19(homedir9(), ".socc")) {
51893
+ return primaryConfig;
51894
+ }
51895
+ const legacyFilename = `.claude${suffix}.json`;
51896
+ const legacyConfig = join19(process.env.CLAUDE_CONFIG_DIR || homedir9(), legacyFilename);
51897
+ if (getFsImplementation().existsSync(legacyConfig)) {
51898
+ return legacyConfig;
51899
+ }
51900
+ return primaryConfig;
51891
51901
  });
51892
51902
  hasInternetAccess = memoize_default(async () => {
51893
51903
  try {
@@ -110008,6 +110018,10 @@ function getContextWindowForModel(model, betas) {
110008
110018
  if (openaiWindow !== undefined) {
110009
110019
  return openaiWindow;
110010
110020
  }
110021
+ if (isLocalProviderUrl(process.env.OPENAI_BASE_URL)) {
110022
+ console.warn(`[context] Warning: local OpenAI-compatible model "${model}" not in context window table — using 128k fallback. ` + "Add it to src/utils/model/openaiContextWindows.ts for more accurate compaction.");
110023
+ return 128000;
110024
+ }
110011
110025
  console.error(`[context] Warning: model "${model}" not in context window table — using conservative 8k default. ` + "Add it to src/utils/model/openaiContextWindows.ts for accurate compaction.");
110012
110026
  return 8000;
110013
110027
  }
@@ -110072,6 +110086,9 @@ function getModelMaxOutputTokens(model) {
110072
110086
  if (openaiMax !== undefined) {
110073
110087
  return { default: openaiMax, upperLimit: openaiMax };
110074
110088
  }
110089
+ if (isLocalProviderUrl(process.env.OPENAI_BASE_URL)) {
110090
+ return { default: 8192, upperLimit: 8192 };
110091
+ }
110075
110092
  }
110076
110093
  const m = getCanonicalName(model);
110077
110094
  if (m.includes("opus-4-6")) {
@@ -110118,6 +110135,7 @@ function getMaxThinkingTokensForModel(model) {
110118
110135
  var MODEL_CONTEXT_WINDOW_DEFAULT = 200000, COMPACT_MAX_OUTPUT_TOKENS = 20000, MAX_OUTPUT_TOKENS_DEFAULT = 32000, MAX_OUTPUT_TOKENS_UPPER_LIMIT = 64000, CAPPED_DEFAULT_MAX_TOKENS = 8000, ESCALATED_MAX_TOKENS = 64000;
110119
110136
  var init_context = __esm(() => {
110120
110137
  init_betas();
110138
+ init_providerConfig();
110121
110139
  init_config();
110122
110140
  init_envUtils();
110123
110141
  init_model();
@@ -112870,7 +112888,7 @@ function printStartupScreen() {
112870
112888
  const sLen = ` ● ${sL} Ready — type /help to begin`.length;
112871
112889
  out.push(boxRow(sRow, W2, sLen));
112872
112890
  out.push(`${rgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET}`);
112873
- out.push(` ${DIM}${rgb(...DIMCOL)}socc ${RESET}${rgb(...ACCENT)}v${"0.1.8"}${RESET}`);
112891
+ out.push(` ${DIM}${rgb(...DIMCOL)}socc ${RESET}${rgb(...ACCENT)}v${"0.1.10"}${RESET}`);
112874
112892
  out.push("");
112875
112893
  process.stdout.write(out.join(`
112876
112894
  `) + `
@@ -112895,12 +112913,12 @@ var init_StartupScreen = __esm(() => {
112895
112913
  DIMCOL = [96, 118, 154];
112896
112914
  BORDER = [59, 89, 138];
112897
112915
  LOGO_SOCC = [
112898
- ` ██████╗ █████╗ █████╗ █████╗ `,
112899
- ` ██╔════╝ ██╔══██╗ ██╔══██╗ ██╔══██╗`,
112900
- ` ██║ ██║ ╚═╝ ██║ ╚═╝ ██║ ╚═╝`,
112901
- ` ██║ ██║ ██║ ██║ `,
112902
- ` ╚██████╗ ╚█████╔╝ ╚█████╔╝ ╚█████╔╝`,
112903
- ` ╚══════╝ ╚════╝ ╚════╝ ╚════╝ `
112916
+ ` ██████ ██████ ██████ ██████ `,
112917
+ ` ██ ██ ██ ██ ██ `,
112918
+ ` ╚█████ ██ ██ ██ ██ `,
112919
+ ` ██ ██ ██ ██ ██ `,
112920
+ ` ██████ ╚██████╝ ╚██████ ╚██████ `,
112921
+ ` ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ `
112904
112922
  ];
112905
112923
  });
112906
112924
 
@@ -373635,7 +373653,7 @@ function getAnthropicEnvMetadata() {
373635
373653
  function getBuildAgeMinutes() {
373636
373654
  if (false)
373637
373655
  ;
373638
- const buildTime = new Date("2026-04-11T19:00:48.600Z").getTime();
373656
+ const buildTime = new Date("2026-04-11T21:14:18.542Z").getTime();
373639
373657
  if (isNaN(buildTime))
373640
373658
  return;
373641
373659
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -376080,8 +376098,8 @@ var init_sessionMemoryCompact = __esm(() => {
376080
376098
 
376081
376099
  // src/services/compact/autoCompact.ts
376082
376100
  function getEffectiveContextWindowSize(model) {
376083
- const reservedTokensForSummary = Math.min(getMaxOutputTokensForModel(model), MAX_OUTPUT_TOKENS_FOR_SUMMARY);
376084
376101
  let contextWindow = getContextWindowForModel(model, getSdkBetas());
376102
+ const maxOutputTokens = Math.min(getMaxOutputTokensForModel(model), MAX_OUTPUT_TOKENS_FOR_SUMMARY);
376085
376103
  const autoCompactWindow = process.env.CLAUDE_CODE_AUTO_COMPACT_WINDOW;
376086
376104
  if (autoCompactWindow) {
376087
376105
  const parsed = parseInt(autoCompactWindow, 10);
@@ -376089,7 +376107,8 @@ function getEffectiveContextWindowSize(model) {
376089
376107
  contextWindow = Math.min(contextWindow, parsed);
376090
376108
  }
376091
376109
  }
376092
- return contextWindow - reservedTokensForSummary;
376110
+ const reservedTokensForSummary = Math.min(maxOutputTokens, Math.max(1024, Math.floor(contextWindow * 0.25)));
376111
+ return Math.max(1024, contextWindow - reservedTokensForSummary);
376093
376112
  }
376094
376113
  function getAutoCompactThreshold(model) {
376095
376114
  const effectiveContextWindow = getEffectiveContextWindowSize(model);
@@ -400550,7 +400569,7 @@ function buildPrimarySection() {
400550
400569
  }, undefined, false, undefined, this);
400551
400570
  return [{
400552
400571
  label: "Version",
400553
- value: "0.1.8"
400572
+ value: "0.1.10"
400554
400573
  }, {
400555
400574
  label: "Session name",
400556
400575
  value: nameValue
@@ -466820,7 +466839,7 @@ var init_bridge_kick = __esm(() => {
466820
466839
  var call59 = async () => {
466821
466840
  return {
466822
466841
  type: "text",
466823
- value: `${"99.0.0"} (built ${"2026-04-11T19:00:48.600Z"})`
466842
+ value: `${"99.0.0"} (built ${"2026-04-11T21:14:18.542Z"})`
466824
466843
  };
466825
466844
  }, version2, version_default;
466826
466845
  var init_version = __esm(() => {
@@ -541072,987 +541091,57 @@ var init_ApproveApiKey = __esm(() => {
541072
541091
 
541073
541092
  // src/components/LogoV2/WelcomeV2.tsx
541074
541093
  function WelcomeV2() {
541075
- const $2 = import_react_compiler_runtime360.c(35);
541076
- const [theme2] = useTheme();
541077
- if (env2.terminal === "Apple_Terminal") {
541078
- let t02;
541079
- if ($2[0] !== theme2) {
541080
- t02 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(AppleTerminalWelcomeV2, {
541081
- theme: theme2,
541082
- welcomeMessage: "Welcome to SOCC"
541083
- }, undefined, false, undefined, this);
541084
- $2[0] = theme2;
541085
- $2[1] = t02;
541086
- } else {
541087
- t02 = $2[1];
541088
- }
541089
- return t02;
541090
- }
541091
- if (["light", "light-daltonized", "light-ansi"].includes(theme2)) {
541092
- let t02;
541093
- let t17;
541094
- let t22;
541095
- let t32;
541096
- let t42;
541097
- let t52;
541098
- let t62;
541099
- let t72;
541100
- let t82;
541101
- if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
541102
- t02 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541103
- children: [
541104
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541105
- color: "claude",
541106
- children: [
541107
- "Welcome to SOCC",
541108
- " "
541109
- ]
541110
- }, undefined, true, undefined, this),
541111
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541112
- dimColor: true,
541113
- children: [
541114
- "v",
541115
- "0.1.8",
541116
- " "
541117
- ]
541118
- }, undefined, true, undefined, this)
541119
- ]
541120
- }, undefined, true, undefined, this);
541121
- t17 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541122
- children: "…………………………………………………………………………………………………………………………………………………………"
541123
- }, undefined, false, undefined, this);
541124
- t22 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541125
- children: " "
541126
- }, undefined, false, undefined, this);
541127
- t32 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541128
- children: " "
541129
- }, undefined, false, undefined, this);
541130
- t42 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541131
- children: " "
541132
- }, undefined, false, undefined, this);
541133
- t52 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541134
- children: " ░░░░░░ "
541135
- }, undefined, false, undefined, this);
541136
- t62 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541137
- children: " ░░░ ░░░░░░░░░░ "
541138
- }, undefined, false, undefined, this);
541139
- t72 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541140
- children: " ░░░░░░░░░░░░░░░░░░░ "
541141
- }, undefined, false, undefined, this);
541142
- t82 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541143
- children: " "
541144
- }, undefined, false, undefined, this);
541145
- $2[2] = t02;
541146
- $2[3] = t17;
541147
- $2[4] = t22;
541148
- $2[5] = t32;
541149
- $2[6] = t42;
541150
- $2[7] = t52;
541151
- $2[8] = t62;
541152
- $2[9] = t72;
541153
- $2[10] = t82;
541154
- } else {
541155
- t02 = $2[2];
541156
- t17 = $2[3];
541157
- t22 = $2[4];
541158
- t32 = $2[5];
541159
- t42 = $2[6];
541160
- t52 = $2[7];
541161
- t62 = $2[8];
541162
- t72 = $2[9];
541163
- t82 = $2[10];
541164
- }
541165
- let t92;
541166
- if ($2[11] === Symbol.for("react.memo_cache_sentinel")) {
541167
- t92 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541168
- children: [
541169
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541170
- dimColor: true,
541171
- children: " ░░░░"
541172
- }, undefined, false, undefined, this),
541173
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541174
- children: " ██ "
541175
- }, undefined, false, undefined, this)
541176
- ]
541177
- }, undefined, true, undefined, this);
541178
- $2[11] = t92;
541179
- } else {
541180
- t92 = $2[11];
541181
- }
541182
- let t102;
541183
- let t112;
541184
- if ($2[12] === Symbol.for("react.memo_cache_sentinel")) {
541185
- t102 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541186
- children: [
541187
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541188
- dimColor: true,
541189
- children: " ░░░░░░░░░░"
541190
- }, undefined, false, undefined, this),
541191
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541192
- children: " ██▒▒██ "
541193
- }, undefined, false, undefined, this)
541194
- ]
541195
- }, undefined, true, undefined, this);
541196
- t112 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541197
- children: " ▒▒ ██ ▒"
541198
- }, undefined, false, undefined, this);
541199
- $2[12] = t102;
541200
- $2[13] = t112;
541201
- } else {
541202
- t102 = $2[12];
541203
- t112 = $2[13];
541204
- }
541205
- let t122;
541206
- if ($2[14] === Symbol.for("react.memo_cache_sentinel")) {
541207
- t122 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541208
- children: [
541209
- " ",
541210
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541211
- color: "mascotBody",
541212
- children: " █████████ "
541213
- }, undefined, false, undefined, this),
541214
- " ▒▒░░▒▒ ▒ ▒▒"
541215
- ]
541216
- }, undefined, true, undefined, this);
541217
- $2[14] = t122;
541218
- } else {
541219
- t122 = $2[14];
541220
- }
541221
- let t132;
541222
- if ($2[15] === Symbol.for("react.memo_cache_sentinel")) {
541223
- t132 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541224
- children: [
541225
- " ",
541226
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541227
- color: "mascotBody",
541228
- backgroundColor: "mascotBackground",
541229
- children: "██▄█████▄██"
541230
- }, undefined, false, undefined, this),
541231
- " ▒▒ ▒▒ "
541232
- ]
541233
- }, undefined, true, undefined, this);
541234
- $2[15] = t132;
541235
- } else {
541236
- t132 = $2[15];
541237
- }
541238
- let t142;
541239
- if ($2[16] === Symbol.for("react.memo_cache_sentinel")) {
541240
- t142 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541241
- children: [
541242
- " ",
541243
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541244
- color: "mascotBody",
541245
- children: " █████████ "
541246
- }, undefined, false, undefined, this),
541247
- " ░ ▒ "
541248
- ]
541249
- }, undefined, true, undefined, this);
541250
- $2[16] = t142;
541251
- } else {
541252
- t142 = $2[16];
541253
- }
541254
- let t152;
541255
- if ($2[17] === Symbol.for("react.memo_cache_sentinel")) {
541256
- t152 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
541257
- width: WELCOME_V2_WIDTH,
541258
- children: /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541259
- children: [
541260
- t02,
541261
- t17,
541262
- t22,
541263
- t32,
541264
- t42,
541265
- t52,
541266
- t62,
541267
- t72,
541268
- t82,
541269
- t92,
541270
- t102,
541271
- t112,
541272
- t122,
541273
- t132,
541274
- t142,
541275
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541276
- children: [
541277
- "…………………",
541278
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541279
- color: "mascotBody",
541280
- children: "█ █ █ █"
541281
- }, undefined, false, undefined, this),
541282
- "……………………………………………………………………░…………………………▒…………"
541283
- ]
541284
- }, undefined, true, undefined, this)
541285
- ]
541286
- }, undefined, true, undefined, this)
541287
- }, undefined, false, undefined, this);
541288
- $2[17] = t152;
541289
- } else {
541290
- t152 = $2[17];
541291
- }
541292
- return t152;
541293
- }
541294
- let t0;
541295
- let t1;
541296
- let t2;
541297
- let t3;
541298
- let t4;
541299
- let t5;
541300
- let t6;
541301
- if ($2[18] === Symbol.for("react.memo_cache_sentinel")) {
541302
- t0 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541303
- children: [
541304
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541305
- color: "claude",
541306
- children: [
541307
- "Welcome to SOCC",
541308
- " "
541309
- ]
541310
- }, undefined, true, undefined, this),
541311
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541312
- dimColor: true,
541313
- children: [
541314
- "v",
541315
- "0.1.8",
541316
- " "
541317
- ]
541318
- }, undefined, true, undefined, this)
541319
- ]
541320
- }, undefined, true, undefined, this);
541321
- t1 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541322
- children: "…………………………………………………………………………………………………………………………………………………………"
541323
- }, undefined, false, undefined, this);
541324
- t2 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541325
- children: " "
541326
- }, undefined, false, undefined, this);
541327
- t3 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541328
- children: " * █████▓▓░ "
541329
- }, undefined, false, undefined, this);
541330
- t4 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541331
- children: " * ███▓░ ░░ "
541332
- }, undefined, false, undefined, this);
541333
- t5 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541334
- children: " ░░░░░░ ███▓░ "
541335
- }, undefined, false, undefined, this);
541336
- t6 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541337
- children: " ░░░ ░░░░░░░░░░ ███▓░ "
541338
- }, undefined, false, undefined, this);
541339
- $2[18] = t0;
541340
- $2[19] = t1;
541341
- $2[20] = t2;
541342
- $2[21] = t3;
541343
- $2[22] = t4;
541344
- $2[23] = t5;
541345
- $2[24] = t6;
541346
- } else {
541347
- t0 = $2[18];
541348
- t1 = $2[19];
541349
- t2 = $2[20];
541350
- t3 = $2[21];
541351
- t4 = $2[22];
541352
- t5 = $2[23];
541353
- t6 = $2[24];
541354
- }
541355
- let t10;
541356
- let t11;
541357
- let t7;
541358
- let t8;
541359
- let t9;
541360
- if ($2[25] === Symbol.for("react.memo_cache_sentinel")) {
541361
- t7 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541362
- children: [
541363
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541364
- children: " ░░░░░░░░░░░░░░░░░░░ "
541365
- }, undefined, false, undefined, this),
541366
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541367
- bold: true,
541368
- children: "*"
541369
- }, undefined, false, undefined, this),
541370
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541371
- children: " ██▓░░ ▓ "
541372
- }, undefined, false, undefined, this)
541373
- ]
541374
- }, undefined, true, undefined, this);
541375
- t8 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541376
- children: " ░▓▓███▓▓░ "
541377
- }, undefined, false, undefined, this);
541378
- t9 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541379
- dimColor: true,
541380
- children: " * ░░░░ "
541381
- }, undefined, false, undefined, this);
541382
- t10 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541383
- dimColor: true,
541384
- children: " ░░░░░░░░ "
541385
- }, undefined, false, undefined, this);
541386
- t11 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541387
- dimColor: true,
541388
- children: " ░░░░░░░░░░░░░░░░ "
541389
- }, undefined, false, undefined, this);
541390
- $2[25] = t10;
541391
- $2[26] = t11;
541392
- $2[27] = t7;
541393
- $2[28] = t8;
541394
- $2[29] = t9;
541395
- } else {
541396
- t10 = $2[25];
541397
- t11 = $2[26];
541398
- t7 = $2[27];
541399
- t8 = $2[28];
541400
- t9 = $2[29];
541401
- }
541402
- let t12;
541403
- if ($2[30] === Symbol.for("react.memo_cache_sentinel")) {
541404
- t12 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541405
- color: "mascotBody",
541406
- children: " █████████ "
541407
- }, undefined, false, undefined, this);
541408
- $2[30] = t12;
541409
- } else {
541410
- t12 = $2[30];
541411
- }
541412
- let t13;
541413
- if ($2[31] === Symbol.for("react.memo_cache_sentinel")) {
541414
- t13 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541415
- children: [
541416
- " ",
541417
- t12,
541418
- " ",
541419
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541420
- dimColor: true,
541421
- children: "*"
541422
- }, undefined, false, undefined, this),
541423
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541424
- children: " "
541425
- }, undefined, false, undefined, this)
541426
- ]
541427
- }, undefined, true, undefined, this);
541428
- $2[31] = t13;
541429
- } else {
541430
- t13 = $2[31];
541431
- }
541432
- let t14;
541433
- if ($2[32] === Symbol.for("react.memo_cache_sentinel")) {
541434
- t14 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541435
- children: [
541436
- " ",
541437
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541438
- color: "mascotBody",
541439
- children: "██▄█████▄██"
541440
- }, undefined, false, undefined, this),
541441
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541442
- children: " "
541443
- }, undefined, false, undefined, this),
541444
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541445
- bold: true,
541446
- children: "*"
541447
- }, undefined, false, undefined, this),
541448
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541449
- children: " "
541450
- }, undefined, false, undefined, this)
541451
- ]
541452
- }, undefined, true, undefined, this);
541453
- $2[32] = t14;
541454
- } else {
541455
- t14 = $2[32];
541456
- }
541457
- let t15;
541458
- if ($2[33] === Symbol.for("react.memo_cache_sentinel")) {
541459
- t15 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541460
- children: [
541461
- " ",
541462
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541463
- color: "mascotBody",
541464
- children: " █████████ "
541465
- }, undefined, false, undefined, this),
541466
- " * "
541467
- ]
541468
- }, undefined, true, undefined, this);
541469
- $2[33] = t15;
541470
- } else {
541471
- t15 = $2[33];
541472
- }
541473
- let t16;
541474
- if ($2[34] === Symbol.for("react.memo_cache_sentinel")) {
541475
- t16 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
541476
- width: WELCOME_V2_WIDTH,
541477
- children: /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541478
- children: [
541479
- t0,
541480
- t1,
541481
- t2,
541482
- t3,
541483
- t4,
541484
- t5,
541485
- t6,
541486
- t7,
541487
- t8,
541488
- t9,
541489
- t10,
541490
- t11,
541491
- t13,
541492
- t14,
541493
- t15,
541494
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541495
- children: [
541496
- "…………………",
541497
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541498
- color: "mascotBody",
541499
- children: "█ █ █ █"
541500
- }, undefined, false, undefined, this),
541501
- "………………………………………………………………………………………………………………"
541502
- ]
541503
- }, undefined, true, undefined, this)
541504
- ]
541505
- }, undefined, true, undefined, this)
541506
- }, undefined, false, undefined, this);
541507
- $2[34] = t16;
541508
- } else {
541509
- t16 = $2[34];
541510
- }
541511
- return t16;
541512
- }
541513
- function AppleTerminalWelcomeV2(t0) {
541514
- const $2 = import_react_compiler_runtime360.c(44);
541515
- const {
541516
- theme: theme2,
541517
- welcomeMessage
541518
- } = t0;
541519
- const isLightTheme = ["light", "light-daltonized", "light-ansi"].includes(theme2);
541520
- if (isLightTheme) {
541521
- let t110;
541522
- if ($2[0] !== welcomeMessage) {
541523
- t110 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541094
+ return /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
541095
+ flexDirection: "column",
541096
+ width: 58,
541097
+ children: [
541098
+ /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541524
541099
  color: "claude",
541100
+ bold: true,
541525
541101
  children: [
541526
- welcomeMessage,
541527
- " "
541528
- ]
541529
- }, undefined, true, undefined, this);
541530
- $2[0] = welcomeMessage;
541531
- $2[1] = t110;
541532
- } else {
541533
- t110 = $2[1];
541534
- }
541535
- let t22;
541536
- if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
541537
- t22 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541538
- dimColor: true,
541539
- children: [
541540
- "v",
541541
- "0.1.8",
541542
- " "
541543
- ]
541544
- }, undefined, true, undefined, this);
541545
- $2[2] = t22;
541546
- } else {
541547
- t22 = $2[2];
541548
- }
541549
- let t32;
541550
- if ($2[3] !== t110) {
541551
- t32 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541552
- children: [
541553
- t110,
541554
- t22
541555
- ]
541556
- }, undefined, true, undefined, this);
541557
- $2[3] = t110;
541558
- $2[4] = t32;
541559
- } else {
541560
- t32 = $2[4];
541561
- }
541562
- let t102;
541563
- let t112;
541564
- let t42;
541565
- let t52;
541566
- let t62;
541567
- let t72;
541568
- let t82;
541569
- let t92;
541570
- if ($2[5] === Symbol.for("react.memo_cache_sentinel")) {
541571
- t42 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541572
- children: "…………………………………………………………………………………………………………………………………………………………"
541573
- }, undefined, false, undefined, this);
541574
- t52 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541575
- children: " "
541576
- }, undefined, false, undefined, this);
541577
- t62 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541578
- children: " "
541579
- }, undefined, false, undefined, this);
541580
- t72 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541581
- children: " "
541582
- }, undefined, false, undefined, this);
541583
- t82 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541584
- children: " ░░░░░░ "
541585
- }, undefined, false, undefined, this);
541586
- t92 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541587
- children: " ░░░ ░░░░░░░░░░ "
541588
- }, undefined, false, undefined, this);
541589
- t102 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541590
- children: " ░░░░░░░░░░░░░░░░░░░ "
541591
- }, undefined, false, undefined, this);
541592
- t112 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541593
- children: " "
541594
- }, undefined, false, undefined, this);
541595
- $2[5] = t102;
541596
- $2[6] = t112;
541597
- $2[7] = t42;
541598
- $2[8] = t52;
541599
- $2[9] = t62;
541600
- $2[10] = t72;
541601
- $2[11] = t82;
541602
- $2[12] = t92;
541603
- } else {
541604
- t102 = $2[5];
541605
- t112 = $2[6];
541606
- t42 = $2[7];
541607
- t52 = $2[8];
541608
- t62 = $2[9];
541609
- t72 = $2[10];
541610
- t82 = $2[11];
541611
- t92 = $2[12];
541612
- }
541613
- let t122;
541614
- if ($2[13] === Symbol.for("react.memo_cache_sentinel")) {
541615
- t122 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541616
- children: [
541617
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541618
- dimColor: true,
541619
- children: " ░░░░"
541620
- }, undefined, false, undefined, this),
541621
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541622
- children: " ██ "
541623
- }, undefined, false, undefined, this)
541624
- ]
541625
- }, undefined, true, undefined, this);
541626
- $2[13] = t122;
541627
- } else {
541628
- t122 = $2[13];
541629
- }
541630
- let t132;
541631
- let t142;
541632
- let t152;
541633
- if ($2[14] === Symbol.for("react.memo_cache_sentinel")) {
541634
- t132 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541635
- children: [
541102
+ "Welcome to SOCC",
541103
+ " ",
541636
541104
  /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541637
541105
  dimColor: true,
541638
- children: " ░░░░░░░░░░"
541639
- }, undefined, false, undefined, this),
541640
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541641
- children: " ██▒▒██ "
541106
+ children: `v${"0.1.10"}`
541642
541107
  }, undefined, false, undefined, this)
541643
541108
  ]
541644
- }, undefined, true, undefined, this);
541645
- t142 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541646
- children: " ▒▒ ██ ▒"
541647
- }, undefined, false, undefined, this);
541648
- t152 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541649
- children: " ▒▒░░▒▒ ▒ ▒▒"
541650
- }, undefined, false, undefined, this);
541651
- $2[14] = t132;
541652
- $2[15] = t142;
541653
- $2[16] = t152;
541654
- } else {
541655
- t132 = $2[14];
541656
- t142 = $2[15];
541657
- t152 = $2[16];
541658
- }
541659
- let t162;
541660
- if ($2[17] === Symbol.for("react.memo_cache_sentinel")) {
541661
- t162 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541662
- children: [
541663
- " ",
541664
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541665
- color: "mascotBody",
541666
- children: "▗"
541667
- }, undefined, false, undefined, this),
541668
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541669
- color: "mascotBackground",
541670
- backgroundColor: "mascotBody",
541671
- children: [
541672
- " ",
541673
- "▗",
541674
- " ",
541675
- "▖",
541676
- " "
541677
- ]
541678
- }, undefined, true, undefined, this),
541679
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541680
- color: "mascotBody",
541681
- children: "▖"
541682
- }, undefined, false, undefined, this),
541683
- " ▒▒ ▒▒ "
541684
- ]
541685
- }, undefined, true, undefined, this);
541686
- $2[17] = t162;
541687
- } else {
541688
- t162 = $2[17];
541689
- }
541690
- let t172;
541691
- if ($2[18] === Symbol.for("react.memo_cache_sentinel")) {
541692
- t172 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541693
- children: [
541694
- " ",
541695
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541696
- backgroundColor: "mascotBody",
541697
- children: " ".repeat(9)
541698
- }, undefined, false, undefined, this),
541699
- " ░ ▒ "
541700
- ]
541701
- }, undefined, true, undefined, this);
541702
- $2[18] = t172;
541703
- } else {
541704
- t172 = $2[18];
541705
- }
541706
- let t182;
541707
- if ($2[19] === Symbol.for("react.memo_cache_sentinel")) {
541708
- t182 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541709
- children: [
541710
- "…………………",
541711
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541712
- backgroundColor: "mascotBody",
541713
- children: " "
541714
- }, undefined, false, undefined, this),
541715
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541716
- children: " "
541717
- }, undefined, false, undefined, this),
541718
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541719
- backgroundColor: "mascotBody",
541720
- children: " "
541721
- }, undefined, false, undefined, this),
541722
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541723
- children: " "
541724
- }, undefined, false, undefined, this),
541725
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541726
- backgroundColor: "mascotBody",
541727
- children: " "
541728
- }, undefined, false, undefined, this),
541729
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541730
- children: " "
541731
- }, undefined, false, undefined, this),
541732
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541733
- backgroundColor: "mascotBody",
541734
- children: " "
541735
- }, undefined, false, undefined, this),
541736
- "……………………………………………………………………░…………………………▒…………"
541737
- ]
541738
- }, undefined, true, undefined, this);
541739
- $2[19] = t182;
541740
- } else {
541741
- t182 = $2[19];
541742
- }
541743
- let t192;
541744
- if ($2[20] !== t32) {
541745
- t192 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
541746
- width: WELCOME_V2_WIDTH,
541109
+ }, undefined, true, undefined, this),
541110
+ /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
541111
+ marginTop: 1,
541112
+ flexDirection: "column",
541113
+ children: WORDMARK_LINES.map((line, index) => /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541114
+ color: "claude",
541115
+ children: line
541116
+ }, index, false, undefined, this))
541117
+ }, undefined, false, undefined, this),
541118
+ /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
541119
+ marginTop: 1,
541747
541120
  children: /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541748
- children: [
541749
- t32,
541750
- t42,
541751
- t52,
541752
- t62,
541753
- t72,
541754
- t82,
541755
- t92,
541756
- t102,
541757
- t112,
541758
- t122,
541759
- t132,
541760
- t142,
541761
- t152,
541762
- t162,
541763
- t172,
541764
- t182
541765
- ]
541766
- }, undefined, true, undefined, this)
541767
- }, undefined, false, undefined, this);
541768
- $2[20] = t32;
541769
- $2[21] = t192;
541770
- } else {
541771
- t192 = $2[21];
541772
- }
541773
- return t192;
541774
- }
541775
- let t1;
541776
- if ($2[22] !== welcomeMessage) {
541777
- t1 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541778
- color: "claude",
541779
- children: [
541780
- welcomeMessage,
541781
- " "
541782
- ]
541783
- }, undefined, true, undefined, this);
541784
- $2[22] = welcomeMessage;
541785
- $2[23] = t1;
541786
- } else {
541787
- t1 = $2[23];
541788
- }
541789
- let t2;
541790
- if ($2[24] === Symbol.for("react.memo_cache_sentinel")) {
541791
- t2 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541792
- dimColor: true,
541793
- children: [
541794
- "v",
541795
- "0.1.8",
541796
- " "
541797
- ]
541798
- }, undefined, true, undefined, this);
541799
- $2[24] = t2;
541800
- } else {
541801
- t2 = $2[24];
541802
- }
541803
- let t3;
541804
- if ($2[25] !== t1) {
541805
- t3 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541806
- children: [
541807
- t1,
541808
- t2
541809
- ]
541810
- }, undefined, true, undefined, this);
541811
- $2[25] = t1;
541812
- $2[26] = t3;
541813
- } else {
541814
- t3 = $2[26];
541815
- }
541816
- let t4;
541817
- let t5;
541818
- let t6;
541819
- let t7;
541820
- let t8;
541821
- let t9;
541822
- if ($2[27] === Symbol.for("react.memo_cache_sentinel")) {
541823
- t4 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541824
- children: "…………………………………………………………………………………………………………………………………………………………"
541825
- }, undefined, false, undefined, this);
541826
- t5 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541827
- children: " "
541828
- }, undefined, false, undefined, this);
541829
- t6 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541830
- children: " * █████▓▓░ "
541831
- }, undefined, false, undefined, this);
541832
- t7 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541833
- children: " * ███▓░ ░░ "
541834
- }, undefined, false, undefined, this);
541835
- t8 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541836
- children: " ░░░░░░ ███▓░ "
541837
- }, undefined, false, undefined, this);
541838
- t9 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541839
- children: " ░░░ ░░░░░░░░░░ ███▓░ "
541840
- }, undefined, false, undefined, this);
541841
- $2[27] = t4;
541842
- $2[28] = t5;
541843
- $2[29] = t6;
541844
- $2[30] = t7;
541845
- $2[31] = t8;
541846
- $2[32] = t9;
541847
- } else {
541848
- t4 = $2[27];
541849
- t5 = $2[28];
541850
- t6 = $2[29];
541851
- t7 = $2[30];
541852
- t8 = $2[31];
541853
- t9 = $2[32];
541854
- }
541855
- let t10;
541856
- let t11;
541857
- let t12;
541858
- let t13;
541859
- let t14;
541860
- if ($2[33] === Symbol.for("react.memo_cache_sentinel")) {
541861
- t10 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541862
- children: [
541863
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541864
- children: " ░░░░░░░░░░░░░░░░░░░ "
541865
- }, undefined, false, undefined, this),
541866
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541867
- bold: true,
541868
- children: "*"
541869
- }, undefined, false, undefined, this),
541870
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541871
- children: " ██▓░░ ▓ "
541872
- }, undefined, false, undefined, this)
541873
- ]
541874
- }, undefined, true, undefined, this);
541875
- t11 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541876
- children: " ░▓▓███▓▓░ "
541877
- }, undefined, false, undefined, this);
541878
- t12 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541879
- dimColor: true,
541880
- children: " * ░░░░ "
541881
- }, undefined, false, undefined, this);
541882
- t13 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541883
- dimColor: true,
541884
- children: " ░░░░░░░░ "
541885
- }, undefined, false, undefined, this);
541886
- t14 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541887
- dimColor: true,
541888
- children: " ░░░░░░░░░░░░░░░░ "
541889
- }, undefined, false, undefined, this);
541890
- $2[33] = t10;
541891
- $2[34] = t11;
541892
- $2[35] = t12;
541893
- $2[36] = t13;
541894
- $2[37] = t14;
541895
- } else {
541896
- t10 = $2[33];
541897
- t11 = $2[34];
541898
- t12 = $2[35];
541899
- t13 = $2[36];
541900
- t14 = $2[37];
541901
- }
541902
- let t15;
541903
- if ($2[38] === Symbol.for("react.memo_cache_sentinel")) {
541904
- t15 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541905
- children: [
541906
- " ",
541907
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541908
541121
  dimColor: true,
541909
- children: "*"
541910
- }, undefined, false, undefined, this),
541911
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541912
- children: " "
541913
- }, undefined, false, undefined, this)
541914
- ]
541915
- }, undefined, true, undefined, this);
541916
- $2[38] = t15;
541917
- } else {
541918
- t15 = $2[38];
541919
- }
541920
- let t16;
541921
- if ($2[39] === Symbol.for("react.memo_cache_sentinel")) {
541922
- t16 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541923
- children: [
541924
- " ",
541925
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541926
- color: "mascotBody",
541927
- children: "▗"
541928
- }, undefined, false, undefined, this),
541929
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541930
- color: "mascotBackground",
541931
- backgroundColor: "mascotBody",
541932
- children: [
541933
- " ",
541934
- "▗",
541935
- " ",
541936
- "▖",
541937
- " "
541938
- ]
541939
- }, undefined, true, undefined, this),
541940
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541941
- color: "mascotBody",
541942
- children: "▖"
541943
- }, undefined, false, undefined, this),
541944
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541945
- children: " "
541946
- }, undefined, false, undefined, this),
541947
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541948
- bold: true,
541949
- children: "*"
541950
- }, undefined, false, undefined, this),
541951
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541952
- children: " "
541122
+ children: "Security operations copiloto"
541953
541123
  }, undefined, false, undefined, this)
541954
- ]
541955
- }, undefined, true, undefined, this);
541956
- $2[39] = t16;
541957
- } else {
541958
- t16 = $2[39];
541959
- }
541960
- let t17;
541961
- if ($2[40] === Symbol.for("react.memo_cache_sentinel")) {
541962
- t17 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541963
- children: [
541964
- " ",
541965
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541966
- backgroundColor: "mascotBody",
541967
- children: " ".repeat(9)
541968
- }, undefined, false, undefined, this),
541969
- " * "
541970
- ]
541971
- }, undefined, true, undefined, this);
541972
- $2[40] = t17;
541973
- } else {
541974
- t17 = $2[40];
541975
- }
541976
- let t18;
541977
- if ($2[41] === Symbol.for("react.memo_cache_sentinel")) {
541978
- t18 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541979
- children: [
541980
- "…………………",
541981
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541982
- backgroundColor: "mascotBody",
541983
- children: " "
541984
- }, undefined, false, undefined, this),
541985
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541986
- children: " "
541987
- }, undefined, false, undefined, this),
541988
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541989
- backgroundColor: "mascotBody",
541990
- children: " "
541991
- }, undefined, false, undefined, this),
541992
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541993
- children: " "
541994
- }, undefined, false, undefined, this),
541995
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
541996
- backgroundColor: "mascotBody",
541997
- children: " "
541998
- }, undefined, false, undefined, this),
541999
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
542000
- children: " "
542001
- }, undefined, false, undefined, this),
542002
- /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
542003
- backgroundColor: "mascotBody",
542004
- children: " "
542005
- }, undefined, false, undefined, this),
542006
- "………………………………………………………………………………………………………………"
542007
- ]
542008
- }, undefined, true, undefined, this);
542009
- $2[41] = t18;
542010
- } else {
542011
- t18 = $2[41];
542012
- }
542013
- let t19;
542014
- if ($2[42] !== t3) {
542015
- t19 = /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedBox_default, {
542016
- width: WELCOME_V2_WIDTH,
542017
- children: /* @__PURE__ */ jsx_dev_runtime469.jsxDEV(ThemedText, {
542018
- children: [
542019
- t3,
542020
- t4,
542021
- t5,
542022
- t6,
542023
- t7,
542024
- t8,
542025
- t9,
542026
- t10,
542027
- t11,
542028
- t12,
542029
- t13,
542030
- t14,
542031
- t15,
542032
- t16,
542033
- t17,
542034
- t18
542035
- ]
542036
- }, undefined, true, undefined, this)
542037
- }, undefined, false, undefined, this);
542038
- $2[42] = t3;
542039
- $2[43] = t19;
542040
- } else {
542041
- t19 = $2[43];
542042
- }
542043
- return t19;
541124
+ }, undefined, false, undefined, this)
541125
+ ]
541126
+ }, undefined, true, undefined, this);
542044
541127
  }
542045
- var import_react_compiler_runtime360, jsx_dev_runtime469, WELCOME_V2_WIDTH = 58;
541128
+ var jsx_dev_runtime469, WORDMARK_LINES;
542046
541129
  var init_WelcomeV2 = __esm(() => {
542047
541130
  init_ink2();
542048
- init_env();
542049
- import_react_compiler_runtime360 = __toESM(require_dist3(), 1);
542050
541131
  jsx_dev_runtime469 = __toESM(require_jsx_dev_runtime(), 1);
541132
+ WORDMARK_LINES = [
541133
+ "╔███████╗ ██████═╗ ╔███████╗ ╔███████╗",
541134
+ "██╔═════╝ ██╔═══██║ ██╔═════╝ ██╔═════╝",
541135
+ "║██████═╗ ██║ ██║ ██║ ██║ ",
541136
+ "╚════╗██║ ██║ ██║ ██║ ██║ ",
541137
+ "███████ ║ ║██████ ║ ║███████╗ ║███████╗",
541138
+ "╚═══════╝ ╚═══════╝ ╚═══════╝ ╚═══════╝"
541139
+ ];
542051
541140
  });
542052
541141
 
542053
541142
  // src/components/ui/OrderedListItem.tsx
542054
541143
  function OrderedListItem(t0) {
542055
- const $2 = import_react_compiler_runtime361.c(7);
541144
+ const $2 = import_react_compiler_runtime360.c(7);
542056
541145
  const {
542057
541146
  children
542058
541147
  } = t0;
@@ -542098,10 +541187,10 @@ function OrderedListItem(t0) {
542098
541187
  }
542099
541188
  return t3;
542100
541189
  }
542101
- var import_react_compiler_runtime361, import_react318, jsx_dev_runtime470, OrderedListItemContext;
541190
+ var import_react_compiler_runtime360, import_react318, jsx_dev_runtime470, OrderedListItemContext;
542102
541191
  var init_OrderedListItem = __esm(() => {
542103
541192
  init_ink2();
542104
- import_react_compiler_runtime361 = __toESM(require_dist3(), 1);
541193
+ import_react_compiler_runtime360 = __toESM(require_dist3(), 1);
542105
541194
  import_react318 = __toESM(require_react(), 1);
542106
541195
  jsx_dev_runtime470 = __toESM(require_jsx_dev_runtime(), 1);
542107
541196
  OrderedListItemContext = import_react318.createContext({
@@ -542111,7 +541200,7 @@ var init_OrderedListItem = __esm(() => {
542111
541200
 
542112
541201
  // src/components/ui/OrderedList.tsx
542113
541202
  function OrderedListComponent(t0) {
542114
- const $2 = import_react_compiler_runtime362.c(9);
541203
+ const $2 = import_react_compiler_runtime361.c(9);
542115
541204
  const {
542116
541205
  children
542117
541206
  } = t0;
@@ -542175,11 +541264,11 @@ function OrderedListComponent(t0) {
542175
541264
  }
542176
541265
  return t2;
542177
541266
  }
542178
- var import_react_compiler_runtime362, import_react319, jsx_dev_runtime471, OrderedListContext, OrderedList;
541267
+ var import_react_compiler_runtime361, import_react319, jsx_dev_runtime471, OrderedListContext, OrderedList;
542179
541268
  var init_OrderedList = __esm(() => {
542180
541269
  init_ink2();
542181
541270
  init_OrderedListItem();
542182
- import_react_compiler_runtime362 = __toESM(require_dist3(), 1);
541271
+ import_react_compiler_runtime361 = __toESM(require_dist3(), 1);
542183
541272
  import_react319 = __toESM(require_react(), 1);
542184
541273
  jsx_dev_runtime471 = __toESM(require_jsx_dev_runtime(), 1);
542185
541274
  OrderedListContext = import_react319.createContext({
@@ -542453,7 +541542,7 @@ function Onboarding({
542453
541542
  }, undefined, true, undefined, this);
542454
541543
  }
542455
541544
  function SkippableStep(t0) {
542456
- const $2 = import_react_compiler_runtime363.c(4);
541545
+ const $2 = import_react_compiler_runtime362.c(4);
542457
541546
  const {
542458
541547
  skip,
542459
541548
  onSkip,
@@ -542482,7 +541571,7 @@ function SkippableStep(t0) {
542482
541571
  }
542483
541572
  return children;
542484
541573
  }
542485
- var import_react_compiler_runtime363, import_react320, jsx_dev_runtime472;
541574
+ var import_react_compiler_runtime362, import_react320, jsx_dev_runtime472;
542486
541575
  var init_Onboarding = __esm(() => {
542487
541576
  init_terminalSetup();
542488
541577
  init_useExitOnCtrlCDWithKeybindings();
@@ -542501,7 +541590,7 @@ var init_Onboarding = __esm(() => {
542501
541590
  init_PressEnterToContinue();
542502
541591
  init_ThemePicker();
542503
541592
  init_OrderedList();
542504
- import_react_compiler_runtime363 = __toESM(require_dist3(), 1);
541593
+ import_react_compiler_runtime362 = __toESM(require_dist3(), 1);
542505
541594
  import_react320 = __toESM(require_react(), 1);
542506
541595
  jsx_dev_runtime472 = __toESM(require_jsx_dev_runtime(), 1);
542507
541596
  });
@@ -542645,7 +541734,7 @@ __export(exports_TrustDialog, {
542645
541734
  });
542646
541735
  import { homedir as homedir37 } from "os";
542647
541736
  function TrustDialog(t0) {
542648
- const $2 = import_react_compiler_runtime364.c(33);
541737
+ const $2 = import_react_compiler_runtime363.c(33);
542649
541738
  const {
542650
541739
  onDone,
542651
541740
  commands
@@ -542964,7 +542053,7 @@ function _temp294(command10) {
542964
542053
  function _temp296(tool) {
542965
542054
  return tool === BASH_TOOL_NAME || tool.startsWith(BASH_TOOL_NAME + "(");
542966
542055
  }
542967
- var import_react_compiler_runtime364, import_react321, jsx_dev_runtime473;
542056
+ var import_react_compiler_runtime363, import_react321, jsx_dev_runtime473;
542968
542057
  var init_TrustDialog = __esm(() => {
542969
542058
  init_state();
542970
542059
  init_useExitOnCtrlCDWithKeybindings();
@@ -542978,7 +542067,7 @@ var init_TrustDialog = __esm(() => {
542978
542067
  init_CustomSelect();
542979
542068
  init_PermissionDialog();
542980
542069
  init_utils13();
542981
- import_react_compiler_runtime364 = __toESM(require_dist3(), 1);
542070
+ import_react_compiler_runtime363 = __toESM(require_dist3(), 1);
542982
542071
  import_react321 = __toESM(require_react(), 1);
542983
542072
  jsx_dev_runtime473 = __toESM(require_jsx_dev_runtime(), 1);
542984
542073
  });
@@ -542989,7 +542078,7 @@ __export(exports_BypassPermissionsModeDialog, {
542989
542078
  BypassPermissionsModeDialog: () => BypassPermissionsModeDialog
542990
542079
  });
542991
542080
  function BypassPermissionsModeDialog(t0) {
542992
- const $2 = import_react_compiler_runtime365.c(7);
542081
+ const $2 = import_react_compiler_runtime364.c(7);
542993
542082
  const {
542994
542083
  onAccept
542995
542084
  } = t0;
@@ -543091,14 +542180,14 @@ function _temp297() {
543091
542180
  function _temp298() {
543092
542181
  logEvent("tengu_bypass_permissions_mode_dialog_shown", {});
543093
542182
  }
543094
- var import_react_compiler_runtime365, import_react322, jsx_dev_runtime474;
542183
+ var import_react_compiler_runtime364, import_react322, jsx_dev_runtime474;
543095
542184
  var init_BypassPermissionsModeDialog = __esm(() => {
543096
542185
  init_ink2();
543097
542186
  init_gracefulShutdown();
543098
542187
  init_settings2();
543099
542188
  init_CustomSelect();
543100
542189
  init_Dialog();
543101
- import_react_compiler_runtime365 = __toESM(require_dist3(), 1);
542190
+ import_react_compiler_runtime364 = __toESM(require_dist3(), 1);
543102
542191
  import_react322 = __toESM(require_react(), 1);
543103
542192
  jsx_dev_runtime474 = __toESM(require_jsx_dev_runtime(), 1);
543104
542193
  });
@@ -543109,7 +542198,7 @@ __export(exports_ClaudeInChromeOnboarding, {
543109
542198
  ClaudeInChromeOnboarding: () => ClaudeInChromeOnboarding
543110
542199
  });
543111
542200
  function ClaudeInChromeOnboarding(t0) {
543112
- const $2 = import_react_compiler_runtime366.c(20);
542201
+ const $2 = import_react_compiler_runtime365.c(20);
543113
542202
  const {
543114
542203
  onDone
543115
542204
  } = t0;
@@ -543275,13 +542364,13 @@ function _temp300(current) {
543275
542364
  hasCompletedClaudeInChromeOnboarding: true
543276
542365
  };
543277
542366
  }
543278
- var import_react_compiler_runtime366, import_react323, jsx_dev_runtime475, CHROME_EXTENSION_URL2 = "https://claude.ai/chrome", CHROME_PERMISSIONS_URL2 = "https://clau.de/chrome/permissions";
542367
+ var import_react_compiler_runtime365, import_react323, jsx_dev_runtime475, CHROME_EXTENSION_URL2 = "https://claude.ai/chrome", CHROME_PERMISSIONS_URL2 = "https://clau.de/chrome/permissions";
543279
542368
  var init_ClaudeInChromeOnboarding = __esm(() => {
543280
542369
  init_ink2();
543281
542370
  init_setup2();
543282
542371
  init_config();
543283
542372
  init_Dialog();
543284
- import_react_compiler_runtime366 = __toESM(require_dist3(), 1);
542373
+ import_react_compiler_runtime365 = __toESM(require_dist3(), 1);
543285
542374
  import_react323 = __toESM(require_react(), 1);
543286
542375
  jsx_dev_runtime475 = __toESM(require_jsx_dev_runtime(), 1);
543287
542376
  });
@@ -543529,7 +542618,7 @@ __export(exports_InvalidSettingsDialog, {
543529
542618
  InvalidSettingsDialog: () => InvalidSettingsDialog
543530
542619
  });
543531
542620
  function InvalidSettingsDialog(t0) {
543532
- const $2 = import_react_compiler_runtime367.c(13);
542621
+ const $2 = import_react_compiler_runtime366.c(13);
543533
542622
  const {
543534
542623
  settingsErrors,
543535
542624
  onContinue,
@@ -543616,19 +542705,19 @@ function InvalidSettingsDialog(t0) {
543616
542705
  }
543617
542706
  return t6;
543618
542707
  }
543619
- var import_react_compiler_runtime367, jsx_dev_runtime477;
542708
+ var import_react_compiler_runtime366, jsx_dev_runtime477;
543620
542709
  var init_InvalidSettingsDialog = __esm(() => {
543621
542710
  init_ink2();
543622
542711
  init_CustomSelect();
543623
542712
  init_Dialog();
543624
542713
  init_ValidationErrorsList();
543625
- import_react_compiler_runtime367 = __toESM(require_dist3(), 1);
542714
+ import_react_compiler_runtime366 = __toESM(require_dist3(), 1);
543626
542715
  jsx_dev_runtime477 = __toESM(require_jsx_dev_runtime(), 1);
543627
542716
  });
543628
542717
 
543629
542718
  // src/hooks/useTeleportResume.tsx
543630
542719
  function useTeleportResume(source) {
543631
- const $2 = import_react_compiler_runtime368.c(8);
542720
+ const $2 = import_react_compiler_runtime367.c(8);
543632
542721
  const [isResuming, setIsResuming] = import_react324.useState(false);
543633
542722
  const [error42, setError] = import_react324.useState(null);
543634
542723
  const [selectedSession, setSelectedSession] = import_react324.useState(null);
@@ -543696,12 +542785,12 @@ function useTeleportResume(source) {
543696
542785
  }
543697
542786
  return t2;
543698
542787
  }
543699
- var import_react_compiler_runtime368, import_react324;
542788
+ var import_react_compiler_runtime367, import_react324;
543700
542789
  var init_useTeleportResume = __esm(() => {
543701
542790
  init_state();
543702
542791
  init_errors();
543703
542792
  init_teleport();
543704
- import_react_compiler_runtime368 = __toESM(require_dist3(), 1);
542793
+ import_react_compiler_runtime367 = __toESM(require_dist3(), 1);
543705
542794
  import_react324 = __toESM(require_react(), 1);
543706
542795
  });
543707
542796
 
@@ -544076,7 +543165,7 @@ __export(exports_TeleportResumeWrapper, {
544076
543165
  TeleportResumeWrapper: () => TeleportResumeWrapper
544077
543166
  });
544078
543167
  function TeleportResumeWrapper(t0) {
544079
- const $2 = import_react_compiler_runtime369.c(25);
543168
+ const $2 = import_react_compiler_runtime368.c(25);
544080
543169
  const {
544081
543170
  onComplete,
544082
543171
  onCancel,
@@ -544274,14 +543363,14 @@ function TeleportResumeWrapper(t0) {
544274
543363
  }
544275
543364
  return t8;
544276
543365
  }
544277
- var import_react_compiler_runtime369, import_react326, jsx_dev_runtime479;
543366
+ var import_react_compiler_runtime368, import_react326, jsx_dev_runtime479;
544278
543367
  var init_TeleportResumeWrapper = __esm(() => {
544279
543368
  init_useTeleportResume();
544280
543369
  init_ink2();
544281
543370
  init_useKeybinding();
544282
543371
  init_ResumeTask();
544283
543372
  init_Spinner2();
544284
- import_react_compiler_runtime369 = __toESM(require_dist3(), 1);
543373
+ import_react_compiler_runtime368 = __toESM(require_dist3(), 1);
544285
543374
  import_react326 = __toESM(require_react(), 1);
544286
543375
  jsx_dev_runtime479 = __toESM(require_jsx_dev_runtime(), 1);
544287
543376
  });
@@ -544292,7 +543381,7 @@ __export(exports_TeleportRepoMismatchDialog, {
544292
543381
  TeleportRepoMismatchDialog: () => TeleportRepoMismatchDialog
544293
543382
  });
544294
543383
  function TeleportRepoMismatchDialog(t0) {
544295
- const $2 = import_react_compiler_runtime370.c(18);
543384
+ const $2 = import_react_compiler_runtime369.c(18);
544296
543385
  const {
544297
543386
  targetRepo,
544298
543387
  initialPaths,
@@ -544443,7 +543532,7 @@ function _temp301(path23) {
544443
543532
  value: path23
544444
543533
  };
544445
543534
  }
544446
- var import_react_compiler_runtime370, import_react327, jsx_dev_runtime480;
543535
+ var import_react_compiler_runtime369, import_react327, jsx_dev_runtime480;
544447
543536
  var init_TeleportRepoMismatchDialog = __esm(() => {
544448
543537
  init_ink2();
544449
543538
  init_file();
@@ -544451,7 +543540,7 @@ var init_TeleportRepoMismatchDialog = __esm(() => {
544451
543540
  init_CustomSelect();
544452
543541
  init_Dialog();
544453
543542
  init_Spinner2();
544454
- import_react_compiler_runtime370 = __toESM(require_dist3(), 1);
543543
+ import_react_compiler_runtime369 = __toESM(require_dist3(), 1);
544455
543544
  import_react327 = __toESM(require_react(), 1);
544456
543545
  jsx_dev_runtime480 = __toESM(require_jsx_dev_runtime(), 1);
544457
543546
  });
@@ -544741,7 +543830,7 @@ function ResumeConversation({
544741
543830
  }, undefined, true, undefined, this);
544742
543831
  }
544743
543832
  function NoConversationsMessage() {
544744
- const $2 = import_react_compiler_runtime371.c(2);
543833
+ const $2 = import_react_compiler_runtime370.c(2);
544745
543834
  let t0;
544746
543835
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
544747
543836
  t0 = {
@@ -544776,7 +543865,7 @@ function _temp302() {
544776
543865
  process.exit(1);
544777
543866
  }
544778
543867
  function CrossProjectMessage(t0) {
544779
- const $2 = import_react_compiler_runtime371.c(8);
543868
+ const $2 = import_react_compiler_runtime370.c(8);
544780
543869
  const {
544781
543870
  command: command10
544782
543871
  } = t0;
@@ -544860,7 +543949,7 @@ function _temp359() {
544860
543949
  function _temp299() {
544861
543950
  process.exit(0);
544862
543951
  }
544863
- var import_react_compiler_runtime371, import_react328, jsx_dev_runtime481;
543952
+ var import_react_compiler_runtime370, import_react328, jsx_dev_runtime481;
544864
543953
  var init_ResumeConversation = __esm(() => {
544865
543954
  init_useTerminalSize();
544866
543955
  init_state();
@@ -544882,7 +543971,7 @@ var init_ResumeConversation = __esm(() => {
544882
543971
  init_sessionRestore();
544883
543972
  init_sessionStorage();
544884
543973
  init_REPL();
544885
- import_react_compiler_runtime371 = __toESM(require_dist3(), 1);
543974
+ import_react_compiler_runtime370 = __toESM(require_dist3(), 1);
544886
543975
  import_react328 = __toESM(require_react(), 1);
544887
543976
  jsx_dev_runtime481 = __toESM(require_jsx_dev_runtime(), 1);
544888
543977
  });
@@ -546590,7 +545679,7 @@ var init_addCommand = __esm(() => {
546590
545679
 
546591
545680
  // src/components/MCPServerDesktopImportDialog.tsx
546592
545681
  function MCPServerDesktopImportDialog(t0) {
546593
- const $2 = import_react_compiler_runtime372.c(36);
545682
+ const $2 = import_react_compiler_runtime371.c(36);
546594
545683
  const {
546595
545684
  servers,
546596
545685
  scope,
@@ -546826,7 +545915,7 @@ No servers were imported.`);
546826
545915
  }
546827
545916
  return t18;
546828
545917
  }
546829
- var import_react_compiler_runtime372, import_react329, jsx_dev_runtime483;
545918
+ var import_react_compiler_runtime371, import_react329, jsx_dev_runtime483;
546830
545919
  var init_MCPServerDesktopImportDialog = __esm(() => {
546831
545920
  init_gracefulShutdown();
546832
545921
  init_ink2();
@@ -546837,7 +545926,7 @@ var init_MCPServerDesktopImportDialog = __esm(() => {
546837
545926
  init_Byline();
546838
545927
  init_Dialog();
546839
545928
  init_KeyboardShortcutHint();
546840
- import_react_compiler_runtime372 = __toESM(require_dist3(), 1);
545929
+ import_react_compiler_runtime371 = __toESM(require_dist3(), 1);
546841
545930
  import_react329 = __toESM(require_react(), 1);
546842
545931
  jsx_dev_runtime483 = __toESM(require_jsx_dev_runtime(), 1);
546843
545932
  });
@@ -558114,7 +557203,7 @@ __export(exports_TeleportProgress, {
558114
557203
  TeleportProgress: () => TeleportProgress
558115
557204
  });
558116
557205
  function TeleportProgress(t0) {
558117
- const $2 = import_react_compiler_runtime373.c(16);
557206
+ const $2 = import_react_compiler_runtime372.c(16);
558118
557207
  const {
558119
557208
  currentStep,
558120
557209
  sessionId
@@ -558267,13 +557356,13 @@ async function teleportWithProgress(root2, sessionId) {
558267
557356
  branchName
558268
557357
  };
558269
557358
  }
558270
- var import_react_compiler_runtime373, import_react330, jsx_dev_runtime485, SPINNER_FRAMES3, STEPS;
557359
+ var import_react_compiler_runtime372, import_react330, jsx_dev_runtime485, SPINNER_FRAMES3, STEPS;
558271
557360
  var init_TeleportProgress = __esm(() => {
558272
557361
  init_figures();
558273
557362
  init_ink2();
558274
557363
  init_AppState();
558275
557364
  init_teleport();
558276
- import_react_compiler_runtime373 = __toESM(require_dist3(), 1);
557365
+ import_react_compiler_runtime372 = __toESM(require_dist3(), 1);
558277
557366
  import_react330 = __toESM(require_react(), 1);
558278
557367
  jsx_dev_runtime485 = __toESM(require_jsx_dev_runtime(), 1);
558279
557368
  SPINNER_FRAMES3 = ["◐", "◓", "◑", "◒"];
@@ -558834,7 +557923,7 @@ function getInstallationPath2() {
558834
557923
  return "~/.local/bin/socc";
558835
557924
  }
558836
557925
  function SetupNotes(t0) {
558837
- const $2 = import_react_compiler_runtime374.c(5);
557926
+ const $2 = import_react_compiler_runtime373.c(5);
558838
557927
  const {
558839
557928
  messages
558840
557929
  } = t0;
@@ -559139,7 +558228,7 @@ function Install({
559139
558228
  ]
559140
558229
  }, undefined, true, undefined, this);
559141
558230
  }
559142
- var import_react_compiler_runtime374, import_react331, jsx_dev_runtime486, install;
558231
+ var import_react_compiler_runtime373, import_react331, jsx_dev_runtime486, install;
559143
558232
  var init_install = __esm(() => {
559144
558233
  init_StatusIcon();
559145
558234
  init_ink2();
@@ -559148,7 +558237,7 @@ var init_install = __esm(() => {
559148
558237
  init_errors();
559149
558238
  init_nativeInstaller();
559150
558239
  init_settings2();
559151
- import_react_compiler_runtime374 = __toESM(require_dist3(), 1);
558240
+ import_react_compiler_runtime373 = __toESM(require_dist3(), 1);
559152
558241
  import_react331 = __toESM(require_react(), 1);
559153
558242
  jsx_dev_runtime486 = __toESM(require_jsx_dev_runtime(), 1);
559154
558243
  install = {
@@ -559226,7 +558315,7 @@ async function setupTokenHandler(root2) {
559226
558315
  process.exit(0);
559227
558316
  }
559228
558317
  function DoctorWithPlugins(t0) {
559229
- const $2 = import_react_compiler_runtime375.c(2);
558318
+ const $2 = import_react_compiler_runtime374.c(2);
559230
558319
  const {
559231
558320
  onDone
559232
558321
  } = t0;
@@ -559286,7 +558375,7 @@ async function installHandler(target, options2) {
559286
558375
  }, {}, args);
559287
558376
  });
559288
558377
  }
559289
- var import_react_compiler_runtime375, import_react332, jsx_dev_runtime487, DoctorLazy;
558378
+ var import_react_compiler_runtime374, import_react332, jsx_dev_runtime487, DoctorLazy;
559290
558379
  var init_util3 = __esm(() => {
559291
558380
  init_WelcomeV2();
559292
558381
  init_useManagePlugins();
@@ -559296,7 +558385,7 @@ var init_util3 = __esm(() => {
559296
558385
  init_AppState();
559297
558386
  init_onChangeAppState();
559298
558387
  init_auth();
559299
- import_react_compiler_runtime375 = __toESM(require_dist3(), 1);
558388
+ import_react_compiler_runtime374 = __toESM(require_dist3(), 1);
559300
558389
  import_react332 = __toESM(require_react(), 1);
559301
558390
  jsx_dev_runtime487 = __toESM(require_jsx_dev_runtime(), 1);
559302
558391
  DoctorLazy = import_react332.default.lazy(() => Promise.resolve().then(() => (init_Doctor(), exports_Doctor)).then((m) => ({
@@ -561681,7 +560770,7 @@ Usage: socc --remote "your task description"`, () => gracefulShutdown(1));
561681
560770
  pendingHookMessages
561682
560771
  }, renderAndRun);
561683
560772
  }
561684
- }).version("0.1.8 (SOCC)", "-v, --version", "Output the version number");
560773
+ }).version("0.1.10 (SOCC)", "-v, --version", "Output the version number");
561685
560774
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
561686
560775
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
561687
560776
  if (canUserConfigureAdvisor()) {
@@ -562318,7 +561407,7 @@ if (false) {}
562318
561407
  async function main2() {
562319
561408
  const args = process.argv.slice(2);
562320
561409
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
562321
- console.log(`${"0.1.8"} (SOCC)`);
561410
+ console.log(`${"0.1.10"} (SOCC)`);
562322
561411
  return;
562323
561412
  }
562324
561413
  if (args.includes("--provider")) {
@@ -562442,4 +561531,4 @@ async function main2() {
562442
561531
  }
562443
561532
  main2();
562444
561533
 
562445
- //# debugId=9ABBA0B6F69DB35B64756E2164756E21
561534
+ //# debugId=F8C966C5D04F8A0B64756E2164756E21