pointcode 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.mjs +551 -512
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -109163,6 +109163,10 @@ function isModelFamilyAlias(model) {
109163
109163
  var MODEL_ALIASES, MODEL_FAMILY_ALIASES;
109164
109164
  var init_aliases = __esm(() => {
109165
109165
  MODEL_ALIASES = [
109166
+ "qwen",
109167
+ "deepseek",
109168
+ "glm",
109169
+ "mimo",
109166
109170
  "sonnet",
109167
109171
  "opus",
109168
109172
  "haiku",
@@ -109173,7 +109177,15 @@ var init_aliases = __esm(() => {
109173
109177
  "codexplan",
109174
109178
  "codexspark"
109175
109179
  ];
109176
- MODEL_FAMILY_ALIASES = ["sonnet", "opus", "haiku"];
109180
+ MODEL_FAMILY_ALIASES = [
109181
+ "qwen",
109182
+ "deepseek",
109183
+ "glm",
109184
+ "mimo",
109185
+ "sonnet",
109186
+ "opus",
109187
+ "haiku"
109188
+ ];
109177
109189
  });
109178
109190
 
109179
109191
  // src/utils/model/modelAllowlist.ts
@@ -109427,7 +109439,7 @@ function getDefaultMainLoopModelSetting() {
109427
109439
  return process.env.GEMINI_MODEL || "gemini-2.0-flash";
109428
109440
  }
109429
109441
  if (getAPIProvider() === "openai") {
109430
- return process.env.OPENAI_MODEL || "gpt-4o";
109442
+ return process.env.OPENAI_MODEL || "qwen3.5-plus";
109431
109443
  }
109432
109444
  if (process.env.USER_TYPE === "ant") {
109433
109445
  return getAntModelOverrideConfig()?.defaultModel ?? getDefaultOpusModel() + "[1m]";
@@ -109438,7 +109450,7 @@ function getDefaultMainLoopModelSetting() {
109438
109450
  if (isTeamPremiumSubscriber()) {
109439
109451
  return getDefaultOpusModel() + (isOpus1mMergeEnabled() ? "[1m]" : "");
109440
109452
  }
109441
- return getDefaultSonnetModel();
109453
+ return "qwen3.5-plus";
109442
109454
  }
109443
109455
  function getDefaultMainLoopModel() {
109444
109456
  return parseUserSpecifiedModel(getDefaultMainLoopModelSetting());
@@ -109497,13 +109509,10 @@ function getCanonicalName(fullModelName) {
109497
109509
  return firstPartyNameToCanonical(resolveOverriddenModel(fullModelName));
109498
109510
  }
109499
109511
  function getClaudeAiUserDefaultModelDescription(fastMode = false) {
109500
- if (isMaxSubscriber() || isTeamPremiumSubscriber()) {
109501
- if (isOpus1mMergeEnabled()) {
109502
- return `Opus 4.6 with 1M context · Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ""}`;
109503
- }
109504
- return `Opus 4.6 · Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ""}`;
109512
+ if (fastMode) {
109513
+ return "Qwen 3.5 Plus · Recommended default";
109505
109514
  }
109506
- return "Sonnet 4.6 · Best for everyday tasks";
109515
+ return "Qwen 3.5 Plus · Recommended default";
109507
109516
  }
109508
109517
  function renderDefaultModelSetting(setting) {
109509
109518
  if (setting === "opusplan") {
@@ -109631,6 +109640,14 @@ function parseUserSpecifiedModel(modelInput) {
109631
109640
  const modelString = has1mTag ? normalizedModel.replace(/\[1m]$/i, "").trim() : normalizedModel;
109632
109641
  if (isModelAlias(modelString)) {
109633
109642
  switch (modelString) {
109643
+ case "qwen":
109644
+ return "qwen3.5-plus" + (has1mTag ? "[1m]" : "");
109645
+ case "deepseek":
109646
+ return "deepseek-chat" + (has1mTag ? "[1m]" : "");
109647
+ case "glm":
109648
+ return "glm-5" + (has1mTag ? "[1m]" : "");
109649
+ case "mimo":
109650
+ return "mimo-v2-pro" + (has1mTag ? "[1m]" : "");
109634
109651
  case "codexplan":
109635
109652
  return modelInputTrimmed;
109636
109653
  case "codexspark":
@@ -123088,7 +123105,7 @@ var init_metadata = __esm(() => {
123088
123105
  isClaudeAiAuth: isClaudeAISubscriber(),
123089
123106
  version: "99.0.0",
123090
123107
  versionBase: getVersionBase(),
123091
- buildTime: "2026-04-02T16:04:55.637Z",
123108
+ buildTime: "2026-04-02T16:31:04.646Z",
123092
123109
  deploymentEnvironment: env3.detectDeploymentEnvironment(),
123093
123110
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
123094
123111
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -349972,6 +349989,59 @@ function getKnownModelOption(model) {
349972
349989
  };
349973
349990
  }
349974
349991
  function getModelOptions(fastMode = false) {
349992
+ const pointCodeOptions = [
349993
+ {
349994
+ value: null,
349995
+ label: "Default (recommended)",
349996
+ description: "Use the default model (currently qwen3.5-plus)"
349997
+ },
349998
+ {
349999
+ value: "qwen3.5-plus",
350000
+ label: "Qwen 3.5 Plus",
350001
+ description: "Tongyi Qwen · balanced quality and speed"
350002
+ },
350003
+ {
350004
+ value: "qwen3.5-flash",
350005
+ label: "Qwen 3.5 Flash",
350006
+ description: "Tongyi Qwen · fastest for quick tasks"
350007
+ },
350008
+ {
350009
+ value: "deepseek-chat",
350010
+ label: "DeepSeek Chat",
350011
+ description: "DeepSeek general model"
350012
+ },
350013
+ {
350014
+ value: "deepseek-reasoner",
350015
+ label: "DeepSeek Reasoner",
350016
+ description: "DeepSeek reasoning-focused model"
350017
+ },
350018
+ {
350019
+ value: "glm-5",
350020
+ label: "GLM-5",
350021
+ description: "Zhipu GLM flagship model"
350022
+ },
350023
+ {
350024
+ value: "glm-5-turbo",
350025
+ label: "GLM-5 Turbo",
350026
+ description: "Zhipu GLM fast model"
350027
+ },
350028
+ {
350029
+ value: "mimo-v2-pro",
350030
+ label: "MiMo V2 Pro",
350031
+ description: "Xiaomi MiMo high capability model"
350032
+ },
350033
+ {
350034
+ value: "mimo-v2-flash",
350035
+ label: "MiMo V2 Flash",
350036
+ description: "Xiaomi MiMo fast model"
350037
+ },
350038
+ {
350039
+ value: "opus",
350040
+ label: "Opus",
350041
+ description: "Anthropic Opus for complex reasoning"
350042
+ }
350043
+ ];
350044
+ return filterModelOptionsByAllowlist(pointCodeOptions);
349975
350045
  if (getAPIProvider() === "openai") {
349976
350046
  const presetOptions = getOpenAIPresetOptions();
349977
350047
  const remoteOptions = getCachedOpenAIModelOptions(presetOptions);
@@ -364117,7 +364187,7 @@ function getAnthropicEnvMetadata() {
364117
364187
  function getBuildAgeMinutes() {
364118
364188
  if (false)
364119
364189
  ;
364120
- const buildTime = new Date("2026-04-02T16:04:55.637Z").getTime();
364190
+ const buildTime = new Date("2026-04-02T16:31:04.646Z").getTime();
364121
364191
  if (isNaN(buildTime))
364122
364192
  return;
364123
364193
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -392204,7 +392274,7 @@ function ModelPicker(t0) {
392204
392274
  } else {
392205
392275
  t15 = $2[41];
392206
392276
  }
392207
- const t16 = headerText ?? "Switch between Claude models. Applies to this session and future PointCode sessions. For other/previous model names, specify with --model.";
392277
+ const t16 = headerText ?? "Switch between PointCode models. Applies to this session and future PointCode sessions. For other/previous model names, specify with --model.";
392208
392278
  let t17;
392209
392279
  if ($2[42] !== t16) {
392210
392280
  t17 = /* @__PURE__ */ jsx_dev_runtime172.jsxDEV(ThemedText, {
@@ -428413,7 +428483,7 @@ function getRecentActivitySync() {
428413
428483
  return cachedActivity;
428414
428484
  }
428415
428485
  function getLogoDisplayData() {
428416
- const version2 = process.env.DEMO_VERSION ?? "0.1.3" ?? "99.0.0";
428486
+ const version2 = process.env.DEMO_VERSION ?? "0.1.4" ?? "99.0.0";
428417
428487
  const serverUrl = getDirectConnectServerUrl();
428418
428488
  const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
428419
428489
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -458213,7 +458283,7 @@ var init_bridge_kick = __esm(() => {
458213
458283
  var call54 = async () => {
458214
458284
  return {
458215
458285
  type: "text",
458216
- value: `${"99.0.0"} (built ${"2026-04-02T16:04:55.637Z"})`
458286
+ value: `${"99.0.0"} (built ${"2026-04-02T16:31:04.646Z"})`
458217
458287
  };
458218
458288
  }, version2, version_default;
458219
458289
  var init_version = __esm(() => {
@@ -461324,7 +461394,6 @@ function EnterApiKeyAndSave({
461324
461394
  }, undefined, true, undefined, this);
461325
461395
  }
461326
461396
  function ModelPickerWrapper(t0) {
461327
- const $2 = import_react_compiler_runtime272.c(18);
461328
461397
  const {
461329
461398
  onDone
461330
461399
  } = t0;
@@ -461332,120 +461401,91 @@ function ModelPickerWrapper(t0) {
461332
461401
  const mainLoopModelForSession = useAppState(_temp272);
461333
461402
  const isFastMode = useAppState(_temp346);
461334
461403
  const setAppState = useSetAppState();
461335
- let t1;
461336
- if ($2[0] !== mainLoopModel || $2[1] !== onDone) {
461337
- t1 = function handleCancel2() {
461338
- logEvent("tengu_model_command_menu", {
461339
- action: "cancel"
461340
- });
461341
- const displayModel = renderModelLabel(mainLoopModel);
461342
- onDone(`Kept model as ${source_default.bold(displayModel)}`, {
461404
+ const [pendingSelection, setPendingSelection] = import_react194.useState(null);
461405
+ function applyModelAndClose(model, effort, includeKeySavedPrefix = false) {
461406
+ setAppState((prev) => ({
461407
+ ...prev,
461408
+ mainLoopModel: model,
461409
+ mainLoopModelForSession: null
461410
+ }));
461411
+ let message = `${includeKeySavedPrefix ? "API key saved. " : ""}Set model to ${source_default.bold(renderModelLabel(model))}`;
461412
+ if (effort !== undefined) {
461413
+ message = message + ` with ${source_default.bold(effort)} effort`;
461414
+ }
461415
+ let wasFastModeToggledOn = undefined;
461416
+ if (isFastModeEnabled()) {
461417
+ clearFastModeCooldown();
461418
+ if (!isFastModeSupportedByModel(model) && isFastMode) {
461419
+ setAppState(_temp435);
461420
+ wasFastModeToggledOn = false;
461421
+ } else if (isFastModeSupportedByModel(model) && isFastModeAvailable() && isFastMode) {
461422
+ message = message + " · Fast mode ON";
461423
+ wasFastModeToggledOn = true;
461424
+ }
461425
+ }
461426
+ if (isBilledAsExtraUsage(model, wasFastModeToggledOn === true, isOpus1mMergeEnabled())) {
461427
+ message = message + " · Billed as extra usage";
461428
+ }
461429
+ if (wasFastModeToggledOn === false) {
461430
+ message = message + " · Fast mode OFF";
461431
+ }
461432
+ onDone(message);
461433
+ }
461434
+ function handleCancel() {
461435
+ logEvent("tengu_model_command_menu", {
461436
+ action: "cancel"
461437
+ });
461438
+ const displayModel = renderModelLabel(mainLoopModel);
461439
+ onDone(`Kept model as ${source_default.bold(displayModel)}`, {
461440
+ display: "system"
461441
+ });
461442
+ }
461443
+ function handleSelect(model, effort) {
461444
+ logEvent("tengu_model_command_menu", {
461445
+ action: model,
461446
+ from_model: mainLoopModel,
461447
+ to_model: model
461448
+ });
461449
+ if (model === "__custom__") {
461450
+ onDone("Custom model placeholder selected. Run /model <model-name> (for example: /model qwen3.5-plus).", {
461343
461451
  display: "system"
461344
461452
  });
461345
- };
461346
- $2[0] = mainLoopModel;
461347
- $2[1] = onDone;
461348
- $2[2] = t1;
461349
- } else {
461350
- t1 = $2[2];
461351
- }
461352
- const handleCancel = t1;
461353
- let t2;
461354
- if ($2[3] !== isFastMode || $2[4] !== mainLoopModel || $2[5] !== onDone || $2[6] !== setAppState) {
461355
- t2 = function handleSelect2(model, effort) {
461356
- logEvent("tengu_model_command_menu", {
461357
- action: model,
461358
- from_model: mainLoopModel,
461359
- to_model: model
461453
+ return;
461454
+ }
461455
+ let selectedModel = model;
461456
+ if (selectedModel !== null && getAPIProvider() === "openai") {
461457
+ selectedModel = switchOpenAIModel(selectedModel);
461458
+ }
461459
+ if (selectedModel !== null) {
461460
+ setPendingSelection({
461461
+ model: selectedModel,
461462
+ effort
461360
461463
  });
461361
- const missingOpenAIKeyTip = getMissingOpenAIKeyTip();
461362
- if (missingOpenAIKeyTip && model !== null) {
461363
- onDone(missingOpenAIKeyTip, {
461364
- display: "system"
461365
- });
461366
- return;
461367
- }
461368
- if (model === "__custom__") {
461369
- onDone("Custom model placeholder selected. Run /model <model-name> (for example: /model qwen3.5-plus).", {
461370
- display: "system"
461371
- });
461372
- return;
461373
- }
461374
- if (model !== null && getAPIProvider() === "openai") {
461375
- const actualModel = switchOpenAIModel(model);
461376
- model = actualModel;
461377
- }
461378
- setAppState((prev) => ({
461379
- ...prev,
461380
- mainLoopModel: model,
461381
- mainLoopModelForSession: null
461382
- }));
461383
- let message = `Set model to ${source_default.bold(renderModelLabel(model))}`;
461384
- if (effort !== undefined) {
461385
- message = message + ` with ${source_default.bold(effort)} effort`;
461386
- }
461387
- let wasFastModeToggledOn = undefined;
461388
- if (isFastModeEnabled()) {
461389
- clearFastModeCooldown();
461390
- if (!isFastModeSupportedByModel(model) && isFastMode) {
461391
- setAppState(_temp435);
461392
- wasFastModeToggledOn = false;
461393
- } else {
461394
- if (isFastModeSupportedByModel(model) && isFastModeAvailable() && isFastMode) {
461395
- message = message + " · Fast mode ON";
461396
- wasFastModeToggledOn = true;
461397
- }
461464
+ return;
461465
+ }
461466
+ applyModelAndClose(selectedModel, effort);
461467
+ }
461468
+ const showFastModeNotice = isFastModeEnabled() && isFastMode && isFastModeSupportedByModel(mainLoopModel) && isFastModeAvailable();
461469
+ if (pendingSelection) {
461470
+ return /* @__PURE__ */ jsx_dev_runtime352.jsxDEV(EnterApiKeyAndSave, {
461471
+ onDone: (result, options2) => {
461472
+ if (!result || !result.startsWith("API key saved")) {
461473
+ onDone(result, options2);
461474
+ return;
461398
461475
  }
461476
+ applyModelAndClose(pendingSelection.model, pendingSelection.effort, true);
461399
461477
  }
461400
- if (isBilledAsExtraUsage(model, wasFastModeToggledOn === true, isOpus1mMergeEnabled())) {
461401
- message = message + " · Billed as extra usage";
461402
- }
461403
- if (wasFastModeToggledOn === false) {
461404
- message = message + " · Fast mode OFF";
461405
- }
461406
- onDone(message);
461407
- };
461408
- $2[3] = isFastMode;
461409
- $2[4] = mainLoopModel;
461410
- $2[5] = onDone;
461411
- $2[6] = setAppState;
461412
- $2[7] = t2;
461413
- } else {
461414
- t2 = $2[7];
461415
- }
461416
- const handleSelect = t2;
461417
- let t3;
461418
- if ($2[8] !== isFastMode || $2[9] !== mainLoopModel) {
461419
- t3 = isFastModeEnabled() && isFastMode && isFastModeSupportedByModel(mainLoopModel) && isFastModeAvailable();
461420
- $2[8] = isFastMode;
461421
- $2[9] = mainLoopModel;
461422
- $2[10] = t3;
461423
- } else {
461424
- t3 = $2[10];
461425
- }
461426
- const pickerHeaderText = getMissingOpenAIKeyTip() ? "OpenAI API key is missing. Run /model key <api_key>, then run /model again." : undefined;
461427
- let t4;
461428
- if ($2[11] !== handleCancel || $2[12] !== handleSelect || $2[13] !== mainLoopModel || $2[14] !== mainLoopModelForSession || $2[15] !== t3 || $2[16] !== pickerHeaderText) {
461429
- t4 = /* @__PURE__ */ jsx_dev_runtime352.jsxDEV(ModelPicker, {
461430
- initial: mainLoopModel,
461431
- sessionModel: mainLoopModelForSession,
461432
- onSelect: handleSelect,
461433
- onCancel: handleCancel,
461434
- isStandaloneCommand: true,
461435
- showFastModeNotice: t3,
461436
- headerText: pickerHeaderText
461437
461478
  }, undefined, false, undefined, this);
461438
- $2[11] = handleCancel;
461439
- $2[12] = handleSelect;
461440
- $2[13] = mainLoopModel;
461441
- $2[14] = mainLoopModelForSession;
461442
- $2[15] = t3;
461443
- $2[16] = pickerHeaderText;
461444
- $2[17] = t4;
461445
- } else {
461446
- t4 = $2[17];
461447
461479
  }
461448
- return t4;
461480
+ return /* @__PURE__ */ jsx_dev_runtime352.jsxDEV(ModelPicker, {
461481
+ initial: mainLoopModel,
461482
+ sessionModel: mainLoopModelForSession,
461483
+ onSelect: handleSelect,
461484
+ onCancel: handleCancel,
461485
+ isStandaloneCommand: true,
461486
+ showFastModeNotice,
461487
+ headerText: "Select a model. After selection, enter an API key to confirm."
461488
+ }, undefined, false, undefined, this);
461449
461489
  }
461450
461490
  function _temp435(prev_0) {
461451
461491
  return {
@@ -461625,7 +461665,7 @@ function renderModelLabel(model) {
461625
461665
  const rendered = renderDefaultModelSetting(model ?? getDefaultMainLoopModelSetting());
461626
461666
  return model === null ? `${rendered} (default)` : rendered;
461627
461667
  }
461628
- var import_react_compiler_runtime272, React110, import_react194, jsx_dev_runtime352, call61 = async (onDone, _context, args) => {
461668
+ var React110, import_react194, jsx_dev_runtime352, call61 = async (onDone, _context, args) => {
461629
461669
  args = args?.trim() || "";
461630
461670
  const missingOpenAIKeyTip = getMissingOpenAIKeyTip();
461631
461671
  if (!args && missingOpenAIKeyTip) {
@@ -461698,7 +461738,6 @@ var init_model2 = __esm(() => {
461698
461738
  init_validateModel();
461699
461739
  init_auth2();
461700
461740
  init_providerSetup();
461701
- import_react_compiler_runtime272 = __toESM(require_dist4(), 1);
461702
461741
  React110 = __toESM(require_react(), 1);
461703
461742
  import_react194 = __toESM(require_react(), 1);
461704
461743
  jsx_dev_runtime352 = __toESM(require_jsx_dev_runtime(), 1);
@@ -461729,7 +461768,7 @@ __export(exports_tag, {
461729
461768
  call: () => call62
461730
461769
  });
461731
461770
  function ConfirmRemoveTag(t0) {
461732
- const $2 = import_react_compiler_runtime273.c(11);
461771
+ const $2 = import_react_compiler_runtime272.c(11);
461733
461772
  const {
461734
461773
  tagName,
461735
461774
  onConfirm,
@@ -461804,7 +461843,7 @@ function ConfirmRemoveTag(t0) {
461804
461843
  return t6;
461805
461844
  }
461806
461845
  function ToggleTagAndClose(t0) {
461807
- const $2 = import_react_compiler_runtime273.c(17);
461846
+ const $2 = import_react_compiler_runtime272.c(17);
461808
461847
  const {
461809
461848
  tagName,
461810
461849
  onDone
@@ -461917,7 +461956,7 @@ function ToggleTagAndClose(t0) {
461917
461956
  return null;
461918
461957
  }
461919
461958
  function ShowHelp(t0) {
461920
- const $2 = import_react_compiler_runtime273.c(3);
461959
+ const $2 = import_react_compiler_runtime272.c(3);
461921
461960
  const {
461922
461961
  onDone
461923
461962
  } = t0;
@@ -461967,7 +462006,7 @@ async function call62(onDone, _context, args) {
461967
462006
  onDone
461968
462007
  }, undefined, false, undefined, this);
461969
462008
  }
461970
- var import_react_compiler_runtime273, React111, jsx_dev_runtime353;
462009
+ var import_react_compiler_runtime272, React111, jsx_dev_runtime353;
461971
462010
  var init_tag = __esm(() => {
461972
462011
  init_source();
461973
462012
  init_state();
@@ -461977,7 +462016,7 @@ var init_tag = __esm(() => {
461977
462016
  init_ink2();
461978
462017
  init_analytics();
461979
462018
  init_sessionStorage();
461980
- import_react_compiler_runtime273 = __toESM(require_dist4(), 1);
462019
+ import_react_compiler_runtime272 = __toESM(require_dist4(), 1);
461981
462020
  React111 = __toESM(require_react(), 1);
461982
462021
  jsx_dev_runtime353 = __toESM(require_jsx_dev_runtime(), 1);
461983
462022
  });
@@ -462280,7 +462319,7 @@ var init_environmentSelection = __esm(() => {
462280
462319
 
462281
462320
  // src/components/RemoteEnvironmentDialog.tsx
462282
462321
  function RemoteEnvironmentDialog(t0) {
462283
- const $2 = import_react_compiler_runtime274.c(27);
462322
+ const $2 = import_react_compiler_runtime273.c(27);
462284
462323
  const {
462285
462324
  onDone
462286
462325
  } = t0;
@@ -462480,7 +462519,7 @@ function RemoteEnvironmentDialog(t0) {
462480
462519
  return t5;
462481
462520
  }
462482
462521
  function EnvironmentLabel(t0) {
462483
- const $2 = import_react_compiler_runtime274.c(7);
462522
+ const $2 = import_react_compiler_runtime273.c(7);
462484
462523
  const {
462485
462524
  environment
462486
462525
  } = t0;
@@ -462530,7 +462569,7 @@ function EnvironmentLabel(t0) {
462530
462569
  return t3;
462531
462570
  }
462532
462571
  function SingleEnvironmentContent(t0) {
462533
- const $2 = import_react_compiler_runtime274.c(6);
462572
+ const $2 = import_react_compiler_runtime273.c(6);
462534
462573
  const {
462535
462574
  environment,
462536
462575
  onDone
@@ -462572,7 +462611,7 @@ function SingleEnvironmentContent(t0) {
462572
462611
  return t3;
462573
462612
  }
462574
462613
  function MultipleEnvironmentsContent(t0) {
462575
- const $2 = import_react_compiler_runtime274.c(18);
462614
+ const $2 = import_react_compiler_runtime273.c(18);
462576
462615
  const {
462577
462616
  environments,
462578
462617
  selectedEnvironment,
@@ -462710,7 +462749,7 @@ function _temp161(env4) {
462710
462749
  value: env4.environment_id
462711
462750
  };
462712
462751
  }
462713
- var import_react_compiler_runtime274, import_react195, jsx_dev_runtime354, DIALOG_TITLE = "Select Remote Environment", SETUP_HINT = `Configure environments at: https://claude.ai/code`;
462752
+ var import_react_compiler_runtime273, import_react195, jsx_dev_runtime354, DIALOG_TITLE = "Select Remote Environment", SETUP_HINT = `Configure environments at: https://claude.ai/code`;
462714
462753
  var init_RemoteEnvironmentDialog = __esm(() => {
462715
462754
  init_source();
462716
462755
  init_figures();
@@ -462727,7 +462766,7 @@ var init_RemoteEnvironmentDialog = __esm(() => {
462727
462766
  init_Dialog();
462728
462767
  init_KeyboardShortcutHint();
462729
462768
  init_LoadingState();
462730
- import_react_compiler_runtime274 = __toESM(require_dist4(), 1);
462769
+ import_react_compiler_runtime273 = __toESM(require_dist4(), 1);
462731
462770
  import_react195 = __toESM(require_react(), 1);
462732
462771
  jsx_dev_runtime354 = __toESM(require_jsx_dev_runtime(), 1);
462733
462772
  });
@@ -462833,7 +462872,7 @@ __export(exports_rate_limit_options, {
462833
462872
  call: () => call67
462834
462873
  });
462835
462874
  function RateLimitOptionsMenu(t0) {
462836
- const $2 = import_react_compiler_runtime275.c(25);
462875
+ const $2 = import_react_compiler_runtime274.c(25);
462837
462876
  const {
462838
462877
  onDone,
462839
462878
  context: context7
@@ -463030,7 +463069,7 @@ async function call67(onDone, context7) {
463030
463069
  context: context7
463031
463070
  }, undefined, false, undefined, this);
463032
463071
  }
463033
- var import_react_compiler_runtime275, import_react196, jsx_dev_runtime357;
463072
+ var import_react_compiler_runtime274, import_react196, jsx_dev_runtime357;
463034
463073
  var init_rate_limit_options = __esm(() => {
463035
463074
  init_select();
463036
463075
  init_Dialog();
@@ -463043,7 +463082,7 @@ var init_rate_limit_options = __esm(() => {
463043
463082
  init_extra_usage2();
463044
463083
  init_upgrade2();
463045
463084
  init_upgrade();
463046
- import_react_compiler_runtime275 = __toESM(require_dist4(), 1);
463085
+ import_react_compiler_runtime274 = __toESM(require_dist4(), 1);
463047
463086
  import_react196 = __toESM(require_react(), 1);
463048
463087
  jsx_dev_runtime357 = __toESM(require_jsx_dev_runtime(), 1);
463049
463088
  });
@@ -463213,7 +463252,7 @@ function _temp163(s) {
463213
463252
  return s.effortValue;
463214
463253
  }
463215
463254
  function ApplyEffortAndClose(t0) {
463216
- const $2 = import_react_compiler_runtime276.c(6);
463255
+ const $2 = import_react_compiler_runtime275.c(6);
463217
463256
  const {
463218
463257
  result,
463219
463258
  onDone
@@ -463273,14 +463312,14 @@ Effort levels:
463273
463312
  onDone
463274
463313
  }, undefined, false, undefined, this);
463275
463314
  }
463276
- var import_react_compiler_runtime276, React113, jsx_dev_runtime358, COMMON_HELP_ARGS2;
463315
+ var import_react_compiler_runtime275, React113, jsx_dev_runtime358, COMMON_HELP_ARGS2;
463277
463316
  var init_effort2 = __esm(() => {
463278
463317
  init_useMainLoopModel();
463279
463318
  init_analytics();
463280
463319
  init_AppState();
463281
463320
  init_effort();
463282
463321
  init_settings2();
463283
- import_react_compiler_runtime276 = __toESM(require_dist4(), 1);
463322
+ import_react_compiler_runtime275 = __toESM(require_dist4(), 1);
463284
463323
  React113 = __toESM(require_react(), 1);
463285
463324
  jsx_dev_runtime358 = __toESM(require_jsx_dev_runtime(), 1);
463286
463325
  COMMON_HELP_ARGS2 = ["help", "-h", "--help"];
@@ -464693,7 +464732,7 @@ function createAllTimeStatsPromise() {
464693
464732
  });
464694
464733
  }
464695
464734
  function Stats(t0) {
464696
- const $2 = import_react_compiler_runtime277.c(4);
464735
+ const $2 = import_react_compiler_runtime276.c(4);
464697
464736
  const {
464698
464737
  onClose
464699
464738
  } = t0;
@@ -464737,7 +464776,7 @@ function Stats(t0) {
464737
464776
  return t3;
464738
464777
  }
464739
464778
  function StatsContent(t0) {
464740
- const $2 = import_react_compiler_runtime277.c(34);
464779
+ const $2 = import_react_compiler_runtime276.c(34);
464741
464780
  const {
464742
464781
  allTimePromise,
464743
464782
  onClose
@@ -464997,7 +465036,7 @@ function _temp165(prev_0) {
464997
465036
  return prev_0 === "Overview" ? "Models" : "Overview";
464998
465037
  }
464999
465038
  function DateRangeSelector(t0) {
465000
- const $2 = import_react_compiler_runtime277.c(9);
465039
+ const $2 = import_react_compiler_runtime276.c(9);
465001
465040
  const {
465002
465041
  dateRange,
465003
465042
  isLoading
@@ -465429,7 +465468,7 @@ function generateFunFactoid(stats, totalTokens) {
465429
465468
  return factoids[randomIndex];
465430
465469
  }
465431
465470
  function ModelsTab(t0) {
465432
- const $2 = import_react_compiler_runtime277.c(15);
465471
+ const $2 = import_react_compiler_runtime276.c(15);
465433
465472
  const {
465434
465473
  stats,
465435
465474
  dateRange,
@@ -465634,7 +465673,7 @@ function _temp718(t0, t1) {
465634
465673
  return b.inputTokens + b.outputTokens - (a2.inputTokens + a2.outputTokens);
465635
465674
  }
465636
465675
  function ModelEntry(t0) {
465637
- const $2 = import_react_compiler_runtime277.c(21);
465676
+ const $2 = import_react_compiler_runtime276.c(21);
465638
465677
  const {
465639
465678
  model,
465640
465679
  usage,
@@ -465945,7 +465984,7 @@ function renderModelsToAnsi(stats) {
465945
465984
  }
465946
465985
  return lines;
465947
465986
  }
465948
- var import_react_compiler_runtime277, import_react197, jsx_dev_runtime359, DATE_RANGE_LABELS, DATE_RANGE_ORDER, BOOK_COMPARISONS, TIME_COMPARISONS;
465987
+ var import_react_compiler_runtime276, import_react197, jsx_dev_runtime359, DATE_RANGE_LABELS, DATE_RANGE_ORDER, BOOK_COMPARISONS, TIME_COMPARISONS;
465949
465988
  var init_Stats = __esm(() => {
465950
465989
  init_asciichart();
465951
465990
  init_source();
@@ -465966,7 +466005,7 @@ var init_Stats = __esm(() => {
465966
466005
  init_Pane();
465967
466006
  init_Tabs();
465968
466007
  init_Spinner2();
465969
- import_react_compiler_runtime277 = __toESM(require_dist4(), 1);
466008
+ import_react_compiler_runtime276 = __toESM(require_dist4(), 1);
465970
466009
  import_react197 = __toESM(require_react(), 1);
465971
466010
  jsx_dev_runtime359 = __toESM(require_jsx_dev_runtime(), 1);
465972
466011
  DATE_RANGE_LABELS = {
@@ -483865,7 +483904,7 @@ __export(exports_InvalidConfigDialog, {
483865
483904
  showInvalidConfigDialog: () => showInvalidConfigDialog
483866
483905
  });
483867
483906
  function InvalidConfigDialog(t0) {
483868
- const $2 = import_react_compiler_runtime278.c(19);
483907
+ const $2 = import_react_compiler_runtime277.c(19);
483869
483908
  const {
483870
483909
  filePath,
483871
483910
  errorDescription,
@@ -484027,7 +484066,7 @@ async function showInvalidConfigDialog({
484027
484066
  }, undefined, false, undefined, this), renderOptions);
484028
484067
  });
484029
484068
  }
484030
- var import_react_compiler_runtime278, jsx_dev_runtime361, SAFE_ERROR_THEME_NAME = "dark";
484069
+ var import_react_compiler_runtime277, jsx_dev_runtime361, SAFE_ERROR_THEME_NAME = "dark";
484031
484070
  var init_InvalidConfigDialog = __esm(() => {
484032
484071
  init_ink2();
484033
484072
  init_KeybindingProviderSetup();
@@ -484036,7 +484075,7 @@ var init_InvalidConfigDialog = __esm(() => {
484036
484075
  init_slowOperations();
484037
484076
  init_CustomSelect();
484038
484077
  init_Dialog();
484039
- import_react_compiler_runtime278 = __toESM(require_dist4(), 1);
484078
+ import_react_compiler_runtime277 = __toESM(require_dist4(), 1);
484040
484079
  jsx_dev_runtime361 = __toESM(require_jsx_dev_runtime(), 1);
484041
484080
  });
484042
484081
 
@@ -484229,7 +484268,7 @@ var init_init2 = __esm(() => {
484229
484268
 
484230
484269
  // src/context/fpsMetrics.tsx
484231
484270
  function FpsMetricsProvider(t0) {
484232
- const $2 = import_react_compiler_runtime279.c(3);
484271
+ const $2 = import_react_compiler_runtime278.c(3);
484233
484272
  const {
484234
484273
  getFpsMetrics,
484235
484274
  children
@@ -484251,9 +484290,9 @@ function FpsMetricsProvider(t0) {
484251
484290
  function useFpsMetrics() {
484252
484291
  return import_react198.useContext(FpsMetricsContext);
484253
484292
  }
484254
- var import_react_compiler_runtime279, import_react198, jsx_dev_runtime362, FpsMetricsContext;
484293
+ var import_react_compiler_runtime278, import_react198, jsx_dev_runtime362, FpsMetricsContext;
484255
484294
  var init_fpsMetrics = __esm(() => {
484256
- import_react_compiler_runtime279 = __toESM(require_dist4(), 1);
484295
+ import_react_compiler_runtime278 = __toESM(require_dist4(), 1);
484257
484296
  import_react198 = __toESM(require_react(), 1);
484258
484297
  jsx_dev_runtime362 = __toESM(require_jsx_dev_runtime(), 1);
484259
484298
  FpsMetricsContext = import_react198.createContext(undefined);
@@ -484340,7 +484379,7 @@ function createStatsStore() {
484340
484379
  };
484341
484380
  }
484342
484381
  function StatsProvider(t0) {
484343
- const $2 = import_react_compiler_runtime280.c(7);
484382
+ const $2 = import_react_compiler_runtime279.c(7);
484344
484383
  const {
484345
484384
  store: externalStore,
484346
484385
  children
@@ -484395,10 +484434,10 @@ function StatsProvider(t0) {
484395
484434
  }
484396
484435
  return t4;
484397
484436
  }
484398
- var import_react_compiler_runtime280, import_react199, jsx_dev_runtime363, RESERVOIR_SIZE = 1024, StatsContext;
484437
+ var import_react_compiler_runtime279, import_react199, jsx_dev_runtime363, RESERVOIR_SIZE = 1024, StatsContext;
484399
484438
  var init_stats4 = __esm(() => {
484400
484439
  init_config2();
484401
- import_react_compiler_runtime280 = __toESM(require_dist4(), 1);
484440
+ import_react_compiler_runtime279 = __toESM(require_dist4(), 1);
484402
484441
  import_react199 = __toESM(require_react(), 1);
484403
484442
  jsx_dev_runtime363 = __toESM(require_jsx_dev_runtime(), 1);
484404
484443
  StatsContext = import_react199.createContext(null);
@@ -484546,7 +484585,7 @@ __export(exports_App, {
484546
484585
  App: () => App2
484547
484586
  });
484548
484587
  function App2(t0) {
484549
- const $2 = import_react_compiler_runtime281.c(9);
484588
+ const $2 = import_react_compiler_runtime280.c(9);
484550
484589
  const {
484551
484590
  getFpsMetrics,
484552
484591
  stats: stats2,
@@ -484592,13 +484631,13 @@ function App2(t0) {
484592
484631
  }
484593
484632
  return t3;
484594
484633
  }
484595
- var import_react_compiler_runtime281, jsx_dev_runtime364;
484634
+ var import_react_compiler_runtime280, jsx_dev_runtime364;
484596
484635
  var init_App2 = __esm(() => {
484597
484636
  init_fpsMetrics();
484598
484637
  init_stats4();
484599
484638
  init_AppState();
484600
484639
  init_onChangeAppState();
484601
- import_react_compiler_runtime281 = __toESM(require_dist4(), 1);
484640
+ import_react_compiler_runtime280 = __toESM(require_dist4(), 1);
484602
484641
  jsx_dev_runtime364 = __toESM(require_jsx_dev_runtime(), 1);
484603
484642
  });
484604
484643
 
@@ -484630,7 +484669,7 @@ var init_use_search_highlight = __esm(() => {
484630
484669
 
484631
484670
  // src/components/CostThresholdDialog.tsx
484632
484671
  function CostThresholdDialog(t0) {
484633
- const $2 = import_react_compiler_runtime282.c(7);
484672
+ const $2 = import_react_compiler_runtime281.c(7);
484634
484673
  const {
484635
484674
  onDone
484636
484675
  } = t0;
@@ -484690,18 +484729,18 @@ function CostThresholdDialog(t0) {
484690
484729
  }
484691
484730
  return t4;
484692
484731
  }
484693
- var import_react_compiler_runtime282, jsx_dev_runtime365;
484732
+ var import_react_compiler_runtime281, jsx_dev_runtime365;
484694
484733
  var init_CostThresholdDialog = __esm(() => {
484695
484734
  init_ink2();
484696
484735
  init_CustomSelect();
484697
484736
  init_Dialog();
484698
- import_react_compiler_runtime282 = __toESM(require_dist4(), 1);
484737
+ import_react_compiler_runtime281 = __toESM(require_dist4(), 1);
484699
484738
  jsx_dev_runtime365 = __toESM(require_jsx_dev_runtime(), 1);
484700
484739
  });
484701
484740
 
484702
484741
  // src/components/IdleReturnDialog.tsx
484703
484742
  function IdleReturnDialog(t0) {
484704
- const $2 = import_react_compiler_runtime283.c(16);
484743
+ const $2 = import_react_compiler_runtime282.c(16);
484705
484744
  const {
484706
484745
  idleMinutes,
484707
484746
  totalInputTokens,
@@ -484820,13 +484859,13 @@ function formatIdleDuration(minutes) {
484820
484859
  }
484821
484860
  return `${hours}h ${remainingMinutes}m`;
484822
484861
  }
484823
- var import_react_compiler_runtime283, jsx_dev_runtime366;
484862
+ var import_react_compiler_runtime282, jsx_dev_runtime366;
484824
484863
  var init_IdleReturnDialog = __esm(() => {
484825
484864
  init_ink2();
484826
484865
  init_format();
484827
484866
  init_CustomSelect();
484828
484867
  init_Dialog();
484829
- import_react_compiler_runtime283 = __toESM(require_dist4(), 1);
484868
+ import_react_compiler_runtime282 = __toESM(require_dist4(), 1);
484830
484869
  jsx_dev_runtime366 = __toESM(require_jsx_dev_runtime(), 1);
484831
484870
  });
484832
484871
 
@@ -484985,7 +485024,7 @@ var init_QueryGuard = () => {};
484985
485024
 
484986
485025
  // src/components/permissions/WorkerBadge.tsx
484987
485026
  function WorkerBadge(t0) {
484988
- const $2 = import_react_compiler_runtime284.c(7);
485027
+ const $2 = import_react_compiler_runtime283.c(7);
484989
485028
  const {
484990
485029
  name,
484991
485030
  color: color3
@@ -485035,18 +485074,18 @@ function WorkerBadge(t0) {
485035
485074
  }
485036
485075
  return t3;
485037
485076
  }
485038
- var import_react_compiler_runtime284, jsx_dev_runtime367;
485077
+ var import_react_compiler_runtime283, jsx_dev_runtime367;
485039
485078
  var init_WorkerBadge = __esm(() => {
485040
485079
  init_figures2();
485041
485080
  init_ink2();
485042
485081
  init_ink3();
485043
- import_react_compiler_runtime284 = __toESM(require_dist4(), 1);
485082
+ import_react_compiler_runtime283 = __toESM(require_dist4(), 1);
485044
485083
  jsx_dev_runtime367 = __toESM(require_jsx_dev_runtime(), 1);
485045
485084
  });
485046
485085
 
485047
485086
  // src/components/permissions/WorkerPendingPermission.tsx
485048
485087
  function WorkerPendingPermission(t0) {
485049
- const $2 = import_react_compiler_runtime285.c(15);
485088
+ const $2 = import_react_compiler_runtime284.c(15);
485050
485089
  const {
485051
485090
  toolName,
485052
485091
  description
@@ -485197,13 +485236,13 @@ function WorkerPendingPermission(t0) {
485197
485236
  }
485198
485237
  return t11;
485199
485238
  }
485200
- var import_react_compiler_runtime285, jsx_dev_runtime368;
485239
+ var import_react_compiler_runtime284, jsx_dev_runtime368;
485201
485240
  var init_WorkerPendingPermission = __esm(() => {
485202
485241
  init_ink2();
485203
485242
  init_teammate();
485204
485243
  init_Spinner2();
485205
485244
  init_WorkerBadge();
485206
- import_react_compiler_runtime285 = __toESM(require_dist4(), 1);
485245
+ import_react_compiler_runtime284 = __toESM(require_dist4(), 1);
485207
485246
  jsx_dev_runtime368 = __toESM(require_jsx_dev_runtime(), 1);
485208
485247
  });
485209
485248
 
@@ -485896,7 +485935,7 @@ function getRestoreOptionConversationText(option) {
485896
485935
  }
485897
485936
  }
485898
485937
  function RestoreOptionDescription(t0) {
485899
- const $2 = import_react_compiler_runtime286.c(11);
485938
+ const $2 = import_react_compiler_runtime285.c(11);
485900
485939
  const {
485901
485940
  selectedRestoreOption,
485902
485941
  canRestoreCode,
@@ -485955,7 +485994,7 @@ function RestoreOptionDescription(t0) {
485955
485994
  return t4;
485956
485995
  }
485957
485996
  function RestoreCodeConfirmation(t0) {
485958
- const $2 = import_react_compiler_runtime286.c(14);
485997
+ const $2 = import_react_compiler_runtime285.c(14);
485959
485998
  const {
485960
485999
  diffStatsForRestore
485961
486000
  } = t0;
@@ -486055,7 +486094,7 @@ function RestoreCodeConfirmation(t0) {
486055
486094
  return t2;
486056
486095
  }
486057
486096
  function DiffStatsText(t0) {
486058
- const $2 = import_react_compiler_runtime286.c(7);
486097
+ const $2 = import_react_compiler_runtime285.c(7);
486059
486098
  const {
486060
486099
  diffStats
486061
486100
  } = t0;
@@ -486108,7 +486147,7 @@ function DiffStatsText(t0) {
486108
486147
  return t3;
486109
486148
  }
486110
486149
  function UserMessageOption(t0) {
486111
- const $2 = import_react_compiler_runtime286.c(31);
486150
+ const $2 = import_react_compiler_runtime285.c(31);
486112
486151
  const {
486113
486152
  userMessage,
486114
486153
  color: color3,
@@ -486416,7 +486455,7 @@ function messagesAfterAreOnlySynthetic(messages, fromIndex) {
486416
486455
  }
486417
486456
  return true;
486418
486457
  }
486419
- var import_react_compiler_runtime286, import_react203, jsx_dev_runtime370, MAX_VISIBLE_MESSAGES = 7;
486458
+ var import_react_compiler_runtime285, import_react203, jsx_dev_runtime370, MAX_VISIBLE_MESSAGES = 7;
486420
486459
  var init_MessageSelector = __esm(() => {
486421
486460
  init_figures();
486422
486461
  init_analytics();
@@ -486434,7 +486473,7 @@ var init_MessageSelector = __esm(() => {
486434
486473
  init_xml();
486435
486474
  init_format();
486436
486475
  init_Divider();
486437
- import_react_compiler_runtime286 = __toESM(require_dist4(), 1);
486476
+ import_react_compiler_runtime285 = __toESM(require_dist4(), 1);
486438
486477
  import_react203 = __toESM(require_react(), 1);
486439
486478
  jsx_dev_runtime370 = __toESM(require_jsx_dev_runtime(), 1);
486440
486479
  });
@@ -486506,7 +486545,7 @@ var init_useNotifyAfterTimeout = __esm(() => {
486506
486545
 
486507
486546
  // src/components/permissions/AskUserQuestionPermissionRequest/PreviewBox.tsx
486508
486547
  function PreviewBox(props) {
486509
- const $2 = import_react_compiler_runtime287.c(4);
486548
+ const $2 = import_react_compiler_runtime286.c(4);
486510
486549
  const settings = useSettings();
486511
486550
  if (settings.syntaxHighlightingDisabled) {
486512
486551
  let t02;
@@ -486541,7 +486580,7 @@ function PreviewBox(props) {
486541
486580
  return t0;
486542
486581
  }
486543
486582
  function PreviewBoxWithHighlight(props) {
486544
- const $2 = import_react_compiler_runtime287.c(4);
486583
+ const $2 = import_react_compiler_runtime286.c(4);
486545
486584
  let t0;
486546
486585
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
486547
486586
  t0 = getCliHighlightPromise();
@@ -486565,7 +486604,7 @@ function PreviewBoxWithHighlight(props) {
486565
486604
  return t1;
486566
486605
  }
486567
486606
  function PreviewBoxBody(t0) {
486568
- const $2 = import_react_compiler_runtime287.c(34);
486607
+ const $2 = import_react_compiler_runtime286.c(34);
486569
486608
  const {
486570
486609
  content,
486571
486610
  maxLines,
@@ -486749,7 +486788,7 @@ function PreviewBoxBody(t0) {
486749
486788
  function _temp166(line) {
486750
486789
  return stringWidth(line);
486751
486790
  }
486752
- var import_react_compiler_runtime287, import_react206, jsx_dev_runtime371, BOX_CHARS;
486791
+ var import_react_compiler_runtime286, import_react206, jsx_dev_runtime371, BOX_CHARS;
486753
486792
  var init_PreviewBox = __esm(() => {
486754
486793
  init_useSettings();
486755
486794
  init_useTerminalSize();
@@ -486758,7 +486797,7 @@ var init_PreviewBox = __esm(() => {
486758
486797
  init_cliHighlight();
486759
486798
  init_markdown();
486760
486799
  init_sliceAnsi();
486761
- import_react_compiler_runtime287 = __toESM(require_dist4(), 1);
486800
+ import_react_compiler_runtime286 = __toESM(require_dist4(), 1);
486762
486801
  import_react206 = __toESM(require_react(), 1);
486763
486802
  jsx_dev_runtime371 = __toESM(require_jsx_dev_runtime(), 1);
486764
486803
  BOX_CHARS = {
@@ -486775,7 +486814,7 @@ var init_PreviewBox = __esm(() => {
486775
486814
 
486776
486815
  // src/components/permissions/AskUserQuestionPermissionRequest/QuestionNavigationBar.tsx
486777
486816
  function QuestionNavigationBar(t0) {
486778
- const $2 = import_react_compiler_runtime288.c(39);
486817
+ const $2 = import_react_compiler_runtime287.c(39);
486779
486818
  const {
486780
486819
  questions,
486781
486820
  currentQuestionIndex,
@@ -486995,14 +487034,14 @@ function _temp273(header_0) {
486995
487034
  function _temp167(q_0, index_0) {
486996
487035
  return q_0?.header || `Q${index_0 + 1}`;
486997
487036
  }
486998
- var import_react_compiler_runtime288, jsx_dev_runtime372;
487037
+ var import_react_compiler_runtime287, jsx_dev_runtime372;
486999
487038
  var init_QuestionNavigationBar = __esm(() => {
487000
487039
  init_figures();
487001
487040
  init_useTerminalSize();
487002
487041
  init_stringWidth();
487003
487042
  init_ink2();
487004
487043
  init_format();
487005
- import_react_compiler_runtime288 = __toESM(require_dist4(), 1);
487044
+ import_react_compiler_runtime287 = __toESM(require_dist4(), 1);
487006
487045
  jsx_dev_runtime372 = __toESM(require_jsx_dev_runtime(), 1);
487007
487046
  });
487008
487047
 
@@ -487398,7 +487437,7 @@ var init_PreviewQuestionView = __esm(() => {
487398
487437
 
487399
487438
  // src/components/permissions/AskUserQuestionPermissionRequest/QuestionView.tsx
487400
487439
  function QuestionView(t0) {
487401
- const $2 = import_react_compiler_runtime289.c(114);
487440
+ const $2 = import_react_compiler_runtime288.c(114);
487402
487441
  const {
487403
487442
  question,
487404
487443
  questions,
@@ -487994,7 +488033,7 @@ function _temp274(opt) {
487994
488033
  function _temp168(s) {
487995
488034
  return s.toolPermissionContext.mode;
487996
488035
  }
487997
- var import_react_compiler_runtime289, import_react208, jsx_dev_runtime374;
488036
+ var import_react_compiler_runtime288, import_react208, jsx_dev_runtime374;
487998
488037
  var init_QuestionView = __esm(() => {
487999
488038
  init_figures();
488000
488039
  init_ink2();
@@ -488008,7 +488047,7 @@ var init_QuestionView = __esm(() => {
488008
488047
  init_PermissionRequestTitle();
488009
488048
  init_PreviewQuestionView();
488010
488049
  init_QuestionNavigationBar();
488011
- import_react_compiler_runtime289 = __toESM(require_dist4(), 1);
488050
+ import_react_compiler_runtime288 = __toESM(require_dist4(), 1);
488012
488051
  import_react208 = __toESM(require_react(), 1);
488013
488052
  jsx_dev_runtime374 = __toESM(require_jsx_dev_runtime(), 1);
488014
488053
  });
@@ -488050,7 +488089,7 @@ ${reason.reason}` : ".";
488050
488089
  }
488051
488090
  }
488052
488091
  function PermissionRuleExplanation(t0) {
488053
- const $2 = import_react_compiler_runtime290.c(11);
488092
+ const $2 = import_react_compiler_runtime289.c(11);
488054
488093
  const {
488055
488094
  permissionResult,
488056
488095
  toolType
@@ -488119,20 +488158,20 @@ function PermissionRuleExplanation(t0) {
488119
488158
  function _temp169(s) {
488120
488159
  return s.toolPermissionContext.mode;
488121
488160
  }
488122
- var import_react_compiler_runtime290, jsx_dev_runtime375;
488161
+ var import_react_compiler_runtime289, jsx_dev_runtime375;
488123
488162
  var init_PermissionRuleExplanation = __esm(() => {
488124
488163
  init_source();
488125
488164
  init_ink2();
488126
488165
  init_AppState();
488127
488166
  init_permissionRuleParser();
488128
488167
  init_ThemedText();
488129
- import_react_compiler_runtime290 = __toESM(require_dist4(), 1);
488168
+ import_react_compiler_runtime289 = __toESM(require_dist4(), 1);
488130
488169
  jsx_dev_runtime375 = __toESM(require_jsx_dev_runtime(), 1);
488131
488170
  });
488132
488171
 
488133
488172
  // src/components/permissions/AskUserQuestionPermissionRequest/SubmitQuestionsView.tsx
488134
488173
  function SubmitQuestionsView(t0) {
488135
- const $2 = import_react_compiler_runtime291.c(27);
488174
+ const $2 = import_react_compiler_runtime290.c(27);
488136
488175
  const {
488137
488176
  questions,
488138
488177
  currentQuestionIndex,
@@ -488340,7 +488379,7 @@ function SubmitQuestionsView(t0) {
488340
488379
  }
488341
488380
  return t12;
488342
488381
  }
488343
- var import_react_compiler_runtime291, jsx_dev_runtime376;
488382
+ var import_react_compiler_runtime290, jsx_dev_runtime376;
488344
488383
  var init_SubmitQuestionsView = __esm(() => {
488345
488384
  init_figures();
488346
488385
  init_ink2();
@@ -488349,7 +488388,7 @@ var init_SubmitQuestionsView = __esm(() => {
488349
488388
  init_PermissionRequestTitle();
488350
488389
  init_PermissionRuleExplanation();
488351
488390
  init_QuestionNavigationBar();
488352
- import_react_compiler_runtime291 = __toESM(require_dist4(), 1);
488391
+ import_react_compiler_runtime290 = __toESM(require_dist4(), 1);
488353
488392
  jsx_dev_runtime376 = __toESM(require_jsx_dev_runtime(), 1);
488354
488393
  });
488355
488394
 
@@ -488458,7 +488497,7 @@ var init_use_multiple_choice_state = __esm(() => {
488458
488497
 
488459
488498
  // src/components/permissions/AskUserQuestionPermissionRequest/AskUserQuestionPermissionRequest.tsx
488460
488499
  function AskUserQuestionPermissionRequest(props) {
488461
- const $2 = import_react_compiler_runtime292.c(4);
488500
+ const $2 = import_react_compiler_runtime291.c(4);
488462
488501
  const settings = useSettings();
488463
488502
  if (settings.syntaxHighlightingDisabled) {
488464
488503
  let t02;
@@ -488493,7 +488532,7 @@ function AskUserQuestionPermissionRequest(props) {
488493
488532
  return t0;
488494
488533
  }
488495
488534
  function AskUserQuestionWithHighlight(props) {
488496
- const $2 = import_react_compiler_runtime292.c(4);
488535
+ const $2 = import_react_compiler_runtime291.c(4);
488497
488536
  let t0;
488498
488537
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
488499
488538
  t0 = getCliHighlightPromise();
@@ -488517,7 +488556,7 @@ function AskUserQuestionWithHighlight(props) {
488517
488556
  return t1;
488518
488557
  }
488519
488558
  function AskUserQuestionPermissionRequestBody(t0) {
488520
- const $2 = import_react_compiler_runtime292.c(115);
488559
+ const $2 = import_react_compiler_runtime291.c(115);
488521
488560
  const {
488522
488561
  toolUseConfirm,
488523
488562
  onDone,
@@ -489130,7 +489169,7 @@ async function convertImagesToBlocks(images) {
489130
489169
  return resized.block;
489131
489170
  }));
489132
489171
  }
489133
- var import_react_compiler_runtime292, import_react210, jsx_dev_runtime377, MIN_CONTENT_HEIGHT = 12, MIN_CONTENT_WIDTH = 40, CONTENT_CHROME_OVERHEAD = 15;
489172
+ var import_react_compiler_runtime291, import_react210, jsx_dev_runtime377, MIN_CONTENT_HEIGHT = 12, MIN_CONTENT_WIDTH = 40, CONTENT_CHROME_OVERHEAD = 15;
489134
489173
  var init_AskUserQuestionPermissionRequest = __esm(() => {
489135
489174
  init_useSettings();
489136
489175
  init_useTerminalSize();
@@ -489150,7 +489189,7 @@ var init_AskUserQuestionPermissionRequest = __esm(() => {
489150
489189
  init_QuestionView();
489151
489190
  init_SubmitQuestionsView();
489152
489191
  init_use_multiple_choice_state();
489153
- import_react_compiler_runtime292 = __toESM(require_dist4(), 1);
489192
+ import_react_compiler_runtime291 = __toESM(require_dist4(), 1);
489154
489193
  import_react210 = __toESM(require_react(), 1);
489155
489194
  jsx_dev_runtime377 = __toESM(require_jsx_dev_runtime(), 1);
489156
489195
  });
@@ -489939,7 +489978,7 @@ function decisionReasonDisplayString(decisionReason) {
489939
489978
  }
489940
489979
  }
489941
489980
  function PermissionDecisionInfoItem(t0) {
489942
- const $2 = import_react_compiler_runtime293.c(10);
489981
+ const $2 = import_react_compiler_runtime292.c(10);
489943
489982
  const {
489944
489983
  title,
489945
489984
  decisionReason
@@ -490040,7 +490079,7 @@ function PermissionDecisionInfoItem(t0) {
490040
490079
  return t4;
490041
490080
  }
490042
490081
  function SuggestedRules(t0) {
490043
- const $2 = import_react_compiler_runtime293.c(18);
490082
+ const $2 = import_react_compiler_runtime292.c(18);
490044
490083
  const {
490045
490084
  suggestions
490046
490085
  } = t0;
@@ -490152,7 +490191,7 @@ function extractMode(updates) {
490152
490191
  return update?.type === "setMode" ? update.mode : undefined;
490153
490192
  }
490154
490193
  function SuggestionDisplay(t0) {
490155
- const $2 = import_react_compiler_runtime293.c(22);
490194
+ const $2 = import_react_compiler_runtime292.c(22);
490156
490195
  const {
490157
490196
  suggestions,
490158
490197
  width
@@ -490396,7 +490435,7 @@ function _temp276(rule, index) {
490396
490435
  }, index, true, undefined, this);
490397
490436
  }
490398
490437
  function PermissionDecisionDebugInfo(t0) {
490399
- const $2 = import_react_compiler_runtime293.c(25);
490438
+ const $2 = import_react_compiler_runtime292.c(25);
490400
490439
  const {
490401
490440
  permissionResult,
490402
490441
  toolName
@@ -490611,7 +490650,7 @@ function _temp527(u_1, i3) {
490611
490650
  function _temp438(s) {
490612
490651
  return s.toolPermissionContext;
490613
490652
  }
490614
- var import_react_compiler_runtime293, jsx_dev_runtime378;
490653
+ var import_react_compiler_runtime292, jsx_dev_runtime378;
490615
490654
  var init_PermissionDecisionDebugInfo = __esm(() => {
490616
490655
  init_source();
490617
490656
  init_figures();
@@ -490623,7 +490662,7 @@ var init_PermissionDecisionDebugInfo = __esm(() => {
490623
490662
  init_shadowedRuleDetection();
490624
490663
  init_sandbox_adapter();
490625
490664
  init_constants2();
490626
- import_react_compiler_runtime293 = __toESM(require_dist4(), 1);
490665
+ import_react_compiler_runtime292 = __toESM(require_dist4(), 1);
490627
490666
  jsx_dev_runtime378 = __toESM(require_jsx_dev_runtime(), 1);
490628
490667
  });
490629
490668
 
@@ -490791,7 +490830,7 @@ var init_permissionExplainer = __esm(() => {
490791
490830
 
490792
490831
  // src/components/permissions/PermissionExplanation.tsx
490793
490832
  function ShimmerLoadingText() {
490794
- const $2 = import_react_compiler_runtime294.c(7);
490833
+ const $2 = import_react_compiler_runtime293.c(7);
490795
490834
  const [ref, glimmerIndex] = useShimmerAnimation("responding", LOADING_MESSAGE, false);
490796
490835
  let t0;
490797
490836
  if ($2[0] !== glimmerIndex) {
@@ -490861,7 +490900,7 @@ function createExplanationPromise(props) {
490861
490900
  }).catch(() => null);
490862
490901
  }
490863
490902
  function usePermissionExplainerUI(props) {
490864
- const $2 = import_react_compiler_runtime294.c(9);
490903
+ const $2 = import_react_compiler_runtime293.c(9);
490865
490904
  let t0;
490866
490905
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
490867
490906
  t0 = isPermissionExplainerEnabled();
@@ -490920,7 +490959,7 @@ function _temp173(v) {
490920
490959
  return !v;
490921
490960
  }
490922
490961
  function ExplanationResult(t0) {
490923
- const $2 = import_react_compiler_runtime294.c(21);
490962
+ const $2 = import_react_compiler_runtime293.c(21);
490924
490963
  const {
490925
490964
  promise: promise3
490926
490965
  } = t0;
@@ -491046,7 +491085,7 @@ function ExplanationResult(t0) {
491046
491085
  return t8;
491047
491086
  }
491048
491087
  function PermissionExplainerContent(t0) {
491049
- const $2 = import_react_compiler_runtime294.c(3);
491088
+ const $2 = import_react_compiler_runtime293.c(3);
491050
491089
  const {
491051
491090
  visible,
491052
491091
  promise: promise3
@@ -491079,7 +491118,7 @@ function PermissionExplainerContent(t0) {
491079
491118
  }
491080
491119
  return t2;
491081
491120
  }
491082
- var import_react_compiler_runtime294, import_react212, jsx_dev_runtime379, LOADING_MESSAGE = "Loading explanation…";
491121
+ var import_react_compiler_runtime293, import_react212, jsx_dev_runtime379, LOADING_MESSAGE = "Loading explanation…";
491083
491122
  var init_PermissionExplanation = __esm(() => {
491084
491123
  init_ink2();
491085
491124
  init_useKeybinding();
@@ -491087,14 +491126,14 @@ var init_PermissionExplanation = __esm(() => {
491087
491126
  init_permissionExplainer();
491088
491127
  init_ShimmerChar();
491089
491128
  init_useShimmerAnimation();
491090
- import_react_compiler_runtime294 = __toESM(require_dist4(), 1);
491129
+ import_react_compiler_runtime293 = __toESM(require_dist4(), 1);
491091
491130
  import_react212 = __toESM(require_react(), 1);
491092
491131
  jsx_dev_runtime379 = __toESM(require_jsx_dev_runtime(), 1);
491093
491132
  });
491094
491133
 
491095
491134
  // src/components/FileEditToolDiff.tsx
491096
491135
  function FileEditToolDiff(props) {
491097
- const $2 = import_react_compiler_runtime295.c(7);
491136
+ const $2 = import_react_compiler_runtime294.c(7);
491098
491137
  let t0;
491099
491138
  if ($2[0] !== props.edits || $2[1] !== props.file_path) {
491100
491139
  t0 = () => loadDiffData(props.file_path, props.edits);
@@ -491132,7 +491171,7 @@ function FileEditToolDiff(props) {
491132
491171
  return t2;
491133
491172
  }
491134
491173
  function DiffBody(t0) {
491135
- const $2 = import_react_compiler_runtime295.c(6);
491174
+ const $2 = import_react_compiler_runtime294.c(6);
491136
491175
  const {
491137
491176
  promise: promise3,
491138
491177
  file_path
@@ -491169,7 +491208,7 @@ function DiffBody(t0) {
491169
491208
  return t1;
491170
491209
  }
491171
491210
  function DiffFrame(t0) {
491172
- const $2 = import_react_compiler_runtime295.c(5);
491211
+ const $2 = import_react_compiler_runtime294.c(5);
491173
491212
  const {
491174
491213
  children,
491175
491214
  placeholder
@@ -491275,7 +491314,7 @@ function normalizeEdit(fileContent, edit2) {
491275
491314
  new_string: actualNew
491276
491315
  };
491277
491316
  }
491278
- var import_react_compiler_runtime295, import_react213, jsx_dev_runtime380;
491317
+ var import_react_compiler_runtime294, import_react213, jsx_dev_runtime380;
491279
491318
  var init_FileEditToolDiff = __esm(() => {
491280
491319
  init_useTerminalSize();
491281
491320
  init_ink2();
@@ -491285,7 +491324,7 @@ var init_FileEditToolDiff = __esm(() => {
491285
491324
  init_readEditContext();
491286
491325
  init_stringUtils();
491287
491326
  init_StructuredDiffList();
491288
- import_react_compiler_runtime295 = __toESM(require_dist4(), 1);
491327
+ import_react_compiler_runtime294 = __toESM(require_dist4(), 1);
491289
491328
  import_react213 = __toESM(require_react(), 1);
491290
491329
  jsx_dev_runtime380 = __toESM(require_jsx_dev_runtime(), 1);
491291
491330
  });
@@ -491487,7 +491526,7 @@ var init_useDiffInIDE = __esm(() => {
491487
491526
  // src/components/ShowInIDEPrompt.tsx
491488
491527
  import { basename as basename45, relative as relative27 } from "path";
491489
491528
  function ShowInIDEPrompt(t0) {
491490
- const $2 = import_react_compiler_runtime296.c(36);
491529
+ const $2 = import_react_compiler_runtime295.c(36);
491491
491530
  const {
491492
491531
  onChange,
491493
491532
  options: options2,
@@ -491690,14 +491729,14 @@ function ShowInIDEPrompt(t0) {
491690
491729
  }
491691
491730
  return t13;
491692
491731
  }
491693
- var import_react_compiler_runtime296, jsx_dev_runtime381;
491732
+ var import_react_compiler_runtime295, jsx_dev_runtime381;
491694
491733
  var init_ShowInIDEPrompt = __esm(() => {
491695
491734
  init_ink2();
491696
491735
  init_cwd2();
491697
491736
  init_ide();
491698
491737
  init_CustomSelect();
491699
491738
  init_Pane();
491700
- import_react_compiler_runtime296 = __toESM(require_dist4(), 1);
491739
+ import_react_compiler_runtime295 = __toESM(require_dist4(), 1);
491701
491740
  jsx_dev_runtime381 = __toESM(require_jsx_dev_runtime(), 1);
491702
491741
  });
491703
491742
 
@@ -492286,7 +492325,7 @@ var init_FilePermissionDialog = __esm(() => {
492286
492325
  // src/components/permissions/SedEditPermissionRequest/SedEditPermissionRequest.tsx
492287
492326
  import { basename as basename47, relative as relative29 } from "path";
492288
492327
  function SedEditPermissionRequest(t0) {
492289
- const $2 = import_react_compiler_runtime297.c(9);
492328
+ const $2 = import_react_compiler_runtime296.c(9);
492290
492329
  let props;
492291
492330
  let sedInfo;
492292
492331
  if ($2[0] !== t0) {
@@ -492353,7 +492392,7 @@ function _temp175(e) {
492353
492392
  };
492354
492393
  }
492355
492394
  function SedEditPermissionRequestInner(t0) {
492356
- const $2 = import_react_compiler_runtime297.c(35);
492395
+ const $2 = import_react_compiler_runtime296.c(35);
492357
492396
  let contentPromise;
492358
492397
  let props;
492359
492398
  let sedInfo;
@@ -492532,7 +492571,7 @@ function SedEditPermissionRequestInner(t0) {
492532
492571
  }
492533
492572
  return t13;
492534
492573
  }
492535
- var import_react_compiler_runtime297, import_react217, jsx_dev_runtime384;
492574
+ var import_react_compiler_runtime296, import_react217, jsx_dev_runtime384;
492536
492575
  var init_SedEditPermissionRequest = __esm(() => {
492537
492576
  init_FileEditToolDiff();
492538
492577
  init_cwd2();
@@ -492543,7 +492582,7 @@ var init_SedEditPermissionRequest = __esm(() => {
492543
492582
  init_BashTool();
492544
492583
  init_sedEditParser();
492545
492584
  init_FilePermissionDialog();
492546
- import_react_compiler_runtime297 = __toESM(require_dist4(), 1);
492585
+ import_react_compiler_runtime296 = __toESM(require_dist4(), 1);
492547
492586
  import_react217 = __toESM(require_react(), 1);
492548
492587
  jsx_dev_runtime384 = __toESM(require_jsx_dev_runtime(), 1);
492549
492588
  });
@@ -492985,7 +493024,7 @@ var init_bashToolUseOptions = __esm(() => {
492985
493024
 
492986
493025
  // src/components/permissions/BashPermissionRequest/BashPermissionRequest.tsx
492987
493026
  function BashPermissionRequest(props) {
492988
- const $2 = import_react_compiler_runtime298.c(21);
493027
+ const $2 = import_react_compiler_runtime297.c(21);
492989
493028
  const {
492990
493029
  toolUseConfirm,
492991
493030
  toolUseContext,
@@ -493371,7 +493410,7 @@ function BashPermissionRequestInner({
493371
493410
  ]
493372
493411
  }, undefined, true, undefined, this);
493373
493412
  }
493374
- var import_react_compiler_runtime298, import_react219, jsx_dev_runtime386;
493413
+ var import_react_compiler_runtime297, import_react219, jsx_dev_runtime386;
493375
493414
  var init_BashPermissionRequest = __esm(() => {
493376
493415
  init_ink2();
493377
493416
  init_useKeybinding();
@@ -493399,14 +493438,14 @@ var init_BashPermissionRequest = __esm(() => {
493399
493438
  init_useShellPermissionFeedback();
493400
493439
  init_utils12();
493401
493440
  init_bashToolUseOptions();
493402
- import_react_compiler_runtime298 = __toESM(require_dist4(), 1);
493441
+ import_react_compiler_runtime297 = __toESM(require_dist4(), 1);
493403
493442
  import_react219 = __toESM(require_react(), 1);
493404
493443
  jsx_dev_runtime386 = __toESM(require_jsx_dev_runtime(), 1);
493405
493444
  });
493406
493445
 
493407
493446
  // src/components/permissions/EnterPlanModePermissionRequest/EnterPlanModePermissionRequest.tsx
493408
493447
  function EnterPlanModePermissionRequest(t0) {
493409
- const $2 = import_react_compiler_runtime299.c(18);
493448
+ const $2 = import_react_compiler_runtime298.c(18);
493410
493449
  const {
493411
493450
  toolUseConfirm,
493412
493451
  onDone,
@@ -493571,7 +493610,7 @@ function EnterPlanModePermissionRequest(t0) {
493571
493610
  function _temp176(s) {
493572
493611
  return s.toolPermissionContext.mode;
493573
493612
  }
493574
- var import_react_compiler_runtime299, jsx_dev_runtime387;
493613
+ var import_react_compiler_runtime298, jsx_dev_runtime387;
493575
493614
  var init_EnterPlanModePermissionRequest = __esm(() => {
493576
493615
  init_state();
493577
493616
  init_ink2();
@@ -493580,7 +493619,7 @@ var init_EnterPlanModePermissionRequest = __esm(() => {
493580
493619
  init_planModeV2();
493581
493620
  init_CustomSelect();
493582
493621
  init_PermissionDialog();
493583
- import_react_compiler_runtime299 = __toESM(require_dist4(), 1);
493622
+ import_react_compiler_runtime298 = __toESM(require_dist4(), 1);
493584
493623
  jsx_dev_runtime387 = __toESM(require_jsx_dev_runtime(), 1);
493585
493624
  });
493586
493625
 
@@ -494316,7 +494355,7 @@ var init_ExitPlanModePermissionRequest = __esm(() => {
494316
494355
 
494317
494356
  // src/components/permissions/PermissionPrompt.tsx
494318
494357
  function PermissionPrompt(t0) {
494319
- const $2 = import_react_compiler_runtime300.c(54);
494358
+ const $2 = import_react_compiler_runtime299.c(54);
494320
494359
  const {
494321
494360
  options: options2,
494322
494361
  onSelect,
@@ -494631,14 +494670,14 @@ function _temp177(prev) {
494631
494670
  }
494632
494671
  };
494633
494672
  }
494634
- var import_react_compiler_runtime300, import_react221, jsx_dev_runtime389, DEFAULT_PLACEHOLDERS;
494673
+ var import_react_compiler_runtime299, import_react221, jsx_dev_runtime389, DEFAULT_PLACEHOLDERS;
494635
494674
  var init_PermissionPrompt = __esm(() => {
494636
494675
  init_ink2();
494637
494676
  init_useKeybinding();
494638
494677
  init_analytics();
494639
494678
  init_AppState();
494640
494679
  init_select();
494641
- import_react_compiler_runtime300 = __toESM(require_dist4(), 1);
494680
+ import_react_compiler_runtime299 = __toESM(require_dist4(), 1);
494642
494681
  import_react221 = __toESM(require_react(), 1);
494643
494682
  jsx_dev_runtime389 = __toESM(require_jsx_dev_runtime(), 1);
494644
494683
  DEFAULT_PLACEHOLDERS = {
@@ -494649,7 +494688,7 @@ var init_PermissionPrompt = __esm(() => {
494649
494688
 
494650
494689
  // src/components/permissions/FallbackPermissionRequest.tsx
494651
494690
  function FallbackPermissionRequest(t0) {
494652
- const $2 = import_react_compiler_runtime301.c(58);
494691
+ const $2 = import_react_compiler_runtime300.c(58);
494653
494692
  const {
494654
494693
  toolUseConfirm,
494655
494694
  onDone,
@@ -495020,7 +495059,7 @@ function FallbackPermissionRequest(t0) {
495020
495059
  }
495021
495060
  return t20;
495022
495061
  }
495023
- var import_react_compiler_runtime301, jsx_dev_runtime390;
495062
+ var import_react_compiler_runtime300, jsx_dev_runtime390;
495024
495063
  var init_FallbackPermissionRequest = __esm(() => {
495025
495064
  init_state();
495026
495065
  init_ink2();
@@ -495033,7 +495072,7 @@ var init_FallbackPermissionRequest = __esm(() => {
495033
495072
  init_PermissionDialog();
495034
495073
  init_PermissionPrompt();
495035
495074
  init_PermissionRuleExplanation();
495036
- import_react_compiler_runtime301 = __toESM(require_dist4(), 1);
495075
+ import_react_compiler_runtime300 = __toESM(require_dist4(), 1);
495037
495076
  jsx_dev_runtime390 = __toESM(require_jsx_dev_runtime(), 1);
495038
495077
  });
495039
495078
 
@@ -495055,7 +495094,7 @@ function createSingleEditDiffConfig(filePath, oldString, newString, replaceAll)
495055
495094
  // src/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.tsx
495056
495095
  import { basename as basename49, relative as relative30 } from "path";
495057
495096
  function FileEditPermissionRequest(props) {
495058
- const $2 = import_react_compiler_runtime302.c(51);
495097
+ const $2 = import_react_compiler_runtime301.c(51);
495059
495098
  const parseInput = _temp178;
495060
495099
  let T0;
495061
495100
  let T1;
@@ -495235,14 +495274,14 @@ function FileEditPermissionRequest(props) {
495235
495274
  function _temp178(input) {
495236
495275
  return FileEditTool.inputSchema.parse(input);
495237
495276
  }
495238
- var import_react_compiler_runtime302, jsx_dev_runtime391, ideDiffSupport;
495277
+ var import_react_compiler_runtime301, jsx_dev_runtime391, ideDiffSupport;
495239
495278
  var init_FileEditPermissionRequest = __esm(() => {
495240
495279
  init_FileEditToolDiff();
495241
495280
  init_cwd2();
495242
495281
  init_ink2();
495243
495282
  init_FileEditTool();
495244
495283
  init_FilePermissionDialog();
495245
- import_react_compiler_runtime302 = __toESM(require_dist4(), 1);
495284
+ import_react_compiler_runtime301 = __toESM(require_dist4(), 1);
495246
495285
  jsx_dev_runtime391 = __toESM(require_jsx_dev_runtime(), 1);
495247
495286
  ideDiffSupport = {
495248
495287
  getConfig: (input) => createSingleEditDiffConfig(input.file_path, input.old_string, input.new_string, input.replace_all),
@@ -495274,7 +495313,7 @@ function pathFromToolUse(toolUseConfirm) {
495274
495313
  return null;
495275
495314
  }
495276
495315
  function FilesystemPermissionRequest(t0) {
495277
- const $2 = import_react_compiler_runtime303.c(30);
495316
+ const $2 = import_react_compiler_runtime302.c(30);
495278
495317
  const {
495279
495318
  toolUseConfirm,
495280
495319
  onDone,
@@ -495400,18 +495439,18 @@ function FilesystemPermissionRequest(t0) {
495400
495439
  function _temp179(input) {
495401
495440
  return input;
495402
495441
  }
495403
- var import_react_compiler_runtime303, jsx_dev_runtime392;
495442
+ var import_react_compiler_runtime302, jsx_dev_runtime392;
495404
495443
  var init_FilesystemPermissionRequest = __esm(() => {
495405
495444
  init_ink2();
495406
495445
  init_FallbackPermissionRequest();
495407
495446
  init_FilePermissionDialog();
495408
- import_react_compiler_runtime303 = __toESM(require_dist4(), 1);
495447
+ import_react_compiler_runtime302 = __toESM(require_dist4(), 1);
495409
495448
  jsx_dev_runtime392 = __toESM(require_jsx_dev_runtime(), 1);
495410
495449
  });
495411
495450
 
495412
495451
  // src/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.tsx
495413
495452
  function FileWriteToolDiff(t0) {
495414
- const $2 = import_react_compiler_runtime304.c(15);
495453
+ const $2 = import_react_compiler_runtime303.c(15);
495415
495454
  const {
495416
495455
  file_path,
495417
495456
  content,
@@ -495511,21 +495550,21 @@ function _temp180(i3) {
495511
495550
  }, undefined, false, undefined, this)
495512
495551
  }, `ellipsis-${i3}`, false, undefined, this);
495513
495552
  }
495514
- var import_react_compiler_runtime304, jsx_dev_runtime393;
495553
+ var import_react_compiler_runtime303, jsx_dev_runtime393;
495515
495554
  var init_FileWriteToolDiff = __esm(() => {
495516
495555
  init_useTerminalSize();
495517
495556
  init_ink2();
495518
495557
  init_diff2();
495519
495558
  init_HighlightedCode();
495520
495559
  init_StructuredDiff();
495521
- import_react_compiler_runtime304 = __toESM(require_dist4(), 1);
495560
+ import_react_compiler_runtime303 = __toESM(require_dist4(), 1);
495522
495561
  jsx_dev_runtime393 = __toESM(require_jsx_dev_runtime(), 1);
495523
495562
  });
495524
495563
 
495525
495564
  // src/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.tsx
495526
495565
  import { basename as basename50, relative as relative31 } from "path";
495527
495566
  function FileWritePermissionRequest(props) {
495528
- const $2 = import_react_compiler_runtime305.c(30);
495567
+ const $2 = import_react_compiler_runtime304.c(30);
495529
495568
  const parseInput = _temp181;
495530
495569
  let t0;
495531
495570
  if ($2[0] !== props.toolUseConfirm.input) {
@@ -495676,7 +495715,7 @@ function FileWritePermissionRequest(props) {
495676
495715
  function _temp181(input) {
495677
495716
  return FileWriteTool.inputSchema.parse(input);
495678
495717
  }
495679
- var import_react_compiler_runtime305, jsx_dev_runtime394, ideDiffSupport2;
495718
+ var import_react_compiler_runtime304, jsx_dev_runtime394, ideDiffSupport2;
495680
495719
  var init_FileWritePermissionRequest = __esm(() => {
495681
495720
  init_ink2();
495682
495721
  init_FileWriteTool();
@@ -495685,7 +495724,7 @@ var init_FileWritePermissionRequest = __esm(() => {
495685
495724
  init_fileRead();
495686
495725
  init_FilePermissionDialog();
495687
495726
  init_FileWriteToolDiff();
495688
- import_react_compiler_runtime305 = __toESM(require_dist4(), 1);
495727
+ import_react_compiler_runtime304 = __toESM(require_dist4(), 1);
495689
495728
  jsx_dev_runtime394 = __toESM(require_jsx_dev_runtime(), 1);
495690
495729
  ideDiffSupport2 = {
495691
495730
  getConfig: (input) => {
@@ -495715,7 +495754,7 @@ var init_FileWritePermissionRequest = __esm(() => {
495715
495754
  // src/components/permissions/NotebookEditPermissionRequest/NotebookEditToolDiff.tsx
495716
495755
  import { relative as relative32 } from "path";
495717
495756
  function NotebookEditToolDiff(props) {
495718
- const $2 = import_react_compiler_runtime306.c(5);
495757
+ const $2 = import_react_compiler_runtime305.c(5);
495719
495758
  let t0;
495720
495759
  if ($2[0] !== props.notebook_path) {
495721
495760
  t0 = getFsImplementation().readFile(props.notebook_path, {
@@ -495751,7 +495790,7 @@ function _temp183(content) {
495751
495790
  return safeParseJSON(content);
495752
495791
  }
495753
495792
  function NotebookEditToolDiffInner(t0) {
495754
- const $2 = import_react_compiler_runtime306.c(34);
495793
+ const $2 = import_react_compiler_runtime305.c(34);
495755
495794
  const {
495756
495795
  notebook_path,
495757
495796
  cell_id,
@@ -495979,7 +496018,7 @@ function _temp351(i3) {
495979
496018
  }, undefined, false, undefined, this)
495980
496019
  }, `ellipsis-${i3}`, false, undefined, this);
495981
496020
  }
495982
- var import_react_compiler_runtime306, import_react222, jsx_dev_runtime395;
496021
+ var import_react_compiler_runtime305, import_react222, jsx_dev_runtime395;
495983
496022
  var init_NotebookEditToolDiff = __esm(() => {
495984
496023
  init_ink2();
495985
496024
  init_cwd2();
@@ -495989,7 +496028,7 @@ var init_NotebookEditToolDiff = __esm(() => {
495989
496028
  init_notebook();
495990
496029
  init_HighlightedCode();
495991
496030
  init_StructuredDiff();
495992
- import_react_compiler_runtime306 = __toESM(require_dist4(), 1);
496031
+ import_react_compiler_runtime305 = __toESM(require_dist4(), 1);
495993
496032
  import_react222 = __toESM(require_react(), 1);
495994
496033
  jsx_dev_runtime395 = __toESM(require_jsx_dev_runtime(), 1);
495995
496034
  });
@@ -495997,7 +496036,7 @@ var init_NotebookEditToolDiff = __esm(() => {
495997
496036
  // src/components/permissions/NotebookEditPermissionRequest/NotebookEditPermissionRequest.tsx
495998
496037
  import { basename as basename51 } from "path";
495999
496038
  function NotebookEditPermissionRequest(props) {
496000
- const $2 = import_react_compiler_runtime307.c(52);
496039
+ const $2 = import_react_compiler_runtime306.c(52);
496001
496040
  const parseInput = _temp185;
496002
496041
  let T0;
496003
496042
  let T1;
@@ -496182,14 +496221,14 @@ function _temp185(input) {
496182
496221
  }
496183
496222
  return result.data;
496184
496223
  }
496185
- var import_react_compiler_runtime307, jsx_dev_runtime396;
496224
+ var import_react_compiler_runtime306, jsx_dev_runtime396;
496186
496225
  var init_NotebookEditPermissionRequest = __esm(() => {
496187
496226
  init_ink2();
496188
496227
  init_NotebookEditTool();
496189
496228
  init_log3();
496190
496229
  init_FilePermissionDialog();
496191
496230
  init_NotebookEditToolDiff();
496192
- import_react_compiler_runtime307 = __toESM(require_dist4(), 1);
496231
+ import_react_compiler_runtime306 = __toESM(require_dist4(), 1);
496193
496232
  jsx_dev_runtime396 = __toESM(require_jsx_dev_runtime(), 1);
496194
496233
  });
496195
496234
 
@@ -496744,7 +496783,7 @@ var init_PowerShellPermissionRequest = __esm(() => {
496744
496783
 
496745
496784
  // src/components/permissions/SkillPermissionRequest/SkillPermissionRequest.tsx
496746
496785
  function SkillPermissionRequest(props) {
496747
- const $2 = import_react_compiler_runtime308.c(51);
496786
+ const $2 = import_react_compiler_runtime307.c(51);
496748
496787
  const {
496749
496788
  toolUseConfirm,
496750
496789
  onDone,
@@ -497152,7 +497191,7 @@ function _temp186(input) {
497152
497191
  }
497153
497192
  return result.data.skill;
497154
497193
  }
497155
- var import_react_compiler_runtime308, jsx_dev_runtime398;
497194
+ var import_react_compiler_runtime307, jsx_dev_runtime398;
497156
497195
  var init_SkillPermissionRequest = __esm(() => {
497157
497196
  init_log3();
497158
497197
  init_state();
@@ -497166,7 +497205,7 @@ var init_SkillPermissionRequest = __esm(() => {
497166
497205
  init_PermissionDialog();
497167
497206
  init_PermissionPrompt();
497168
497207
  init_PermissionRuleExplanation();
497169
- import_react_compiler_runtime308 = __toESM(require_dist4(), 1);
497208
+ import_react_compiler_runtime307 = __toESM(require_dist4(), 1);
497170
497209
  jsx_dev_runtime398 = __toESM(require_jsx_dev_runtime(), 1);
497171
497210
  });
497172
497211
 
@@ -497187,7 +497226,7 @@ function inputToPermissionRuleContent(input) {
497187
497226
  }
497188
497227
  }
497189
497228
  function WebFetchPermissionRequest(t0) {
497190
- const $2 = import_react_compiler_runtime309.c(41);
497229
+ const $2 = import_react_compiler_runtime308.c(41);
497191
497230
  const {
497192
497231
  toolUseConfirm,
497193
497232
  onDone,
@@ -497460,7 +497499,7 @@ function WebFetchPermissionRequest(t0) {
497460
497499
  }
497461
497500
  return t15;
497462
497501
  }
497463
- var import_react_compiler_runtime309, jsx_dev_runtime399;
497502
+ var import_react_compiler_runtime308, jsx_dev_runtime399;
497464
497503
  var init_WebFetchPermissionRequest = __esm(() => {
497465
497504
  init_ink2();
497466
497505
  init_WebFetchTool();
@@ -497470,7 +497509,7 @@ var init_WebFetchPermissionRequest = __esm(() => {
497470
497509
  init_PermissionDialog();
497471
497510
  init_PermissionRuleExplanation();
497472
497511
  init_utils12();
497473
- import_react_compiler_runtime309 = __toESM(require_dist4(), 1);
497512
+ import_react_compiler_runtime308 = __toESM(require_dist4(), 1);
497474
497513
  jsx_dev_runtime399 = __toESM(require_jsx_dev_runtime(), 1);
497475
497514
  });
497476
497515
 
@@ -497526,7 +497565,7 @@ function getNotificationMessage(toolUseConfirm) {
497526
497565
  return `PointCode needs your permission to use ${toolName}`;
497527
497566
  }
497528
497567
  function PermissionRequest(t0) {
497529
- const $2 = import_react_compiler_runtime310.c(18);
497568
+ const $2 = import_react_compiler_runtime309.c(18);
497530
497569
  const {
497531
497570
  toolUseConfirm,
497532
497571
  toolUseContext,
@@ -497604,7 +497643,7 @@ function PermissionRequest(t0) {
497604
497643
  }
497605
497644
  return t5;
497606
497645
  }
497607
- var import_react_compiler_runtime310, jsx_dev_runtime400, ReviewArtifactTool = null, ReviewArtifactPermissionRequest = null, WorkflowTool2 = null, WorkflowPermissionRequest = null, MonitorTool2 = null, MonitorPermissionRequest = null;
497646
+ var import_react_compiler_runtime309, jsx_dev_runtime400, ReviewArtifactTool = null, ReviewArtifactPermissionRequest = null, WorkflowTool2 = null, WorkflowPermissionRequest = null, MonitorTool2 = null, MonitorPermissionRequest = null;
497608
497647
  var init_PermissionRequest = __esm(() => {
497609
497648
  init_EnterPlanModeTool();
497610
497649
  init_ExitPlanModeV2Tool();
@@ -497633,7 +497672,7 @@ var init_PermissionRequest = __esm(() => {
497633
497672
  init_PowerShellPermissionRequest();
497634
497673
  init_SkillPermissionRequest();
497635
497674
  init_WebFetchPermissionRequest();
497636
- import_react_compiler_runtime310 = __toESM(require_dist4(), 1);
497675
+ import_react_compiler_runtime309 = __toESM(require_dist4(), 1);
497637
497676
  jsx_dev_runtime400 = __toESM(require_jsx_dev_runtime(), 1);
497638
497677
  });
497639
497678
 
@@ -497883,7 +497922,7 @@ function resetTypeahead(ta) {
497883
497922
  ta.timer = undefined;
497884
497923
  }
497885
497924
  function ResolvingSpinner() {
497886
- const $2 = import_react_compiler_runtime311.c(4);
497925
+ const $2 = import_react_compiler_runtime310.c(4);
497887
497926
  const [frame, setFrame] = import_react224.useState(0);
497888
497927
  let t0;
497889
497928
  let t1;
@@ -497947,7 +497986,7 @@ function formatDateDisplay(isoValue, schema) {
497947
497986
  }
497948
497987
  }
497949
497988
  function ElicitationDialog(t0) {
497950
- const $2 = import_react_compiler_runtime311.c(7);
497989
+ const $2 = import_react_compiler_runtime310.c(7);
497951
497990
  const {
497952
497991
  event,
497953
497992
  onResponse,
@@ -499189,7 +499228,7 @@ ${message}`,
499189
499228
  }, undefined, true, undefined, this)
499190
499229
  }, undefined, false, undefined, this);
499191
499230
  }
499192
- var import_react_compiler_runtime311, import_react224, jsx_dev_runtime401, isTextField = (s) => ["string", "number", "integer"].includes(s.type), RESOLVING_SPINNER_CHARS = "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", advanceSpinnerFrame = (f) => (f + 1) % RESOLVING_SPINNER_CHARS.length;
499231
+ var import_react_compiler_runtime310, import_react224, jsx_dev_runtime401, isTextField = (s) => ["string", "number", "integer"].includes(s.type), RESOLVING_SPINNER_CHARS = "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", advanceSpinnerFrame = (f) => (f + 1) % RESOLVING_SPINNER_CHARS.length;
499193
499232
  var init_ElicitationDialog = __esm(() => {
499194
499233
  init_figures();
499195
499234
  init_overlayContext();
@@ -499205,14 +499244,14 @@ var init_ElicitationDialog = __esm(() => {
499205
499244
  init_Dialog();
499206
499245
  init_KeyboardShortcutHint();
499207
499246
  init_TextInput();
499208
- import_react_compiler_runtime311 = __toESM(require_dist4(), 1);
499247
+ import_react_compiler_runtime310 = __toESM(require_dist4(), 1);
499209
499248
  import_react224 = __toESM(require_react(), 1);
499210
499249
  jsx_dev_runtime401 = __toESM(require_jsx_dev_runtime(), 1);
499211
499250
  });
499212
499251
 
499213
499252
  // src/components/hooks/PromptDialog.tsx
499214
499253
  function PromptDialog(t0) {
499215
- const $2 = import_react_compiler_runtime312.c(15);
499254
+ const $2 = import_react_compiler_runtime311.c(15);
499216
499255
  const {
499217
499256
  title,
499218
499257
  toolInputSummary,
@@ -499301,13 +499340,13 @@ function _temp187(opt) {
499301
499340
  description: opt.description
499302
499341
  };
499303
499342
  }
499304
- var import_react_compiler_runtime312, jsx_dev_runtime402;
499343
+ var import_react_compiler_runtime311, jsx_dev_runtime402;
499305
499344
  var init_PromptDialog = __esm(() => {
499306
499345
  init_ink2();
499307
499346
  init_useKeybinding();
499308
499347
  init_select();
499309
499348
  init_PermissionDialog();
499310
- import_react_compiler_runtime312 = __toESM(require_dist4(), 1);
499349
+ import_react_compiler_runtime311 = __toESM(require_dist4(), 1);
499311
499350
  jsx_dev_runtime402 = __toESM(require_jsx_dev_runtime(), 1);
499312
499351
  });
499313
499352
 
@@ -499382,7 +499421,7 @@ function companionReservedColumns(terminalColumns, speaking) {
499382
499421
  const bubble = speaking && !isFullscreenActive() ? BUBBLE_WIDTH : 0;
499383
499422
  return spriteColWidth(nameWidth) + SPRITE_PADDING_X + bubble;
499384
499423
  }
499385
- var import_react_compiler_runtime313, import_react227, jsx_dev_runtime403, H2, PET_HEARTS, MIN_COLS_FOR_FULL_SPRITE = 100, SPRITE_BODY_WIDTH = 12, NAME_ROW_PAD = 2, SPRITE_PADDING_X = 2, BUBBLE_WIDTH = 36;
499424
+ var import_react_compiler_runtime312, import_react227, jsx_dev_runtime403, H2, PET_HEARTS, MIN_COLS_FOR_FULL_SPRITE = 100, SPRITE_BODY_WIDTH = 12, NAME_ROW_PAD = 2, SPRITE_PADDING_X = 2, BUBBLE_WIDTH = 36;
499386
499425
  var init_CompanionSprite = __esm(() => {
499387
499426
  init_figures();
499388
499427
  init_useTerminalSize();
@@ -499394,7 +499433,7 @@ var init_CompanionSprite = __esm(() => {
499394
499433
  init_companion();
499395
499434
  init_sprites();
499396
499435
  init_types4();
499397
- import_react_compiler_runtime313 = __toESM(require_dist4(), 1);
499436
+ import_react_compiler_runtime312 = __toESM(require_dist4(), 1);
499398
499437
  import_react227 = __toESM(require_react(), 1);
499399
499438
  jsx_dev_runtime403 = __toESM(require_jsx_dev_runtime(), 1);
499400
499439
  H2 = figures_default.heart;
@@ -499409,7 +499448,7 @@ function isBuddyTeaserWindow() {
499409
499448
  return d.getFullYear() === 2026 && d.getMonth() === 3 && d.getDate() <= 7;
499410
499449
  }
499411
499450
  function RainbowText2(t0) {
499412
- const $2 = import_react_compiler_runtime314.c(2);
499451
+ const $2 = import_react_compiler_runtime313.c(2);
499413
499452
  const {
499414
499453
  text
499415
499454
  } = t0;
@@ -499432,7 +499471,7 @@ function _temp188(ch2, i3) {
499432
499471
  }, i3, false, undefined, this);
499433
499472
  }
499434
499473
  function useBuddyNotification() {
499435
- const $2 = import_react_compiler_runtime314.c(4);
499474
+ const $2 = import_react_compiler_runtime313.c(4);
499436
499475
  const {
499437
499476
  addNotification,
499438
499477
  removeNotification
@@ -499483,13 +499522,13 @@ function findBuddyTriggerPositions(text) {
499483
499522
  }
499484
499523
  return triggers;
499485
499524
  }
499486
- var import_react_compiler_runtime314, import_react228, jsx_dev_runtime404;
499525
+ var import_react_compiler_runtime313, import_react228, jsx_dev_runtime404;
499487
499526
  var init_useBuddyNotification = __esm(() => {
499488
499527
  init_notifications();
499489
499528
  init_ink2();
499490
499529
  init_config2();
499491
499530
  init_thinking();
499492
- import_react_compiler_runtime314 = __toESM(require_dist4(), 1);
499531
+ import_react_compiler_runtime313 = __toESM(require_dist4(), 1);
499493
499532
  import_react228 = __toESM(require_react(), 1);
499494
499533
  jsx_dev_runtime404 = __toESM(require_jsx_dev_runtime(), 1);
499495
499534
  });
@@ -499906,7 +499945,7 @@ var init_NativeAutoUpdater = __esm(() => {
499906
499945
 
499907
499946
  // src/components/PackageManagerAutoUpdater.tsx
499908
499947
  function PackageManagerAutoUpdater(t0) {
499909
- const $2 = import_react_compiler_runtime315.c(10);
499948
+ const $2 = import_react_compiler_runtime314.c(10);
499910
499949
  const {
499911
499950
  verbose
499912
499951
  } = t0;
@@ -500010,7 +500049,7 @@ function PackageManagerAutoUpdater(t0) {
500010
500049
  }
500011
500050
  return t6;
500012
500051
  }
500013
- var import_react_compiler_runtime315, React134, import_react234, jsx_dev_runtime407;
500052
+ var import_react_compiler_runtime314, React134, import_react234, jsx_dev_runtime407;
500014
500053
  var init_PackageManagerAutoUpdater = __esm(() => {
500015
500054
  init_dist();
500016
500055
  init_ink2();
@@ -500019,7 +500058,7 @@ var init_PackageManagerAutoUpdater = __esm(() => {
500019
500058
  init_debug();
500020
500059
  init_packageManagers();
500021
500060
  init_settings2();
500022
- import_react_compiler_runtime315 = __toESM(require_dist4(), 1);
500061
+ import_react_compiler_runtime314 = __toESM(require_dist4(), 1);
500023
500062
  React134 = __toESM(require_react(), 1);
500024
500063
  import_react234 = __toESM(require_react(), 1);
500025
500064
  jsx_dev_runtime407 = __toESM(require_jsx_dev_runtime(), 1);
@@ -500027,7 +500066,7 @@ var init_PackageManagerAutoUpdater = __esm(() => {
500027
500066
 
500028
500067
  // src/components/AutoUpdaterWrapper.tsx
500029
500068
  function AutoUpdaterWrapper(t0) {
500030
- const $2 = import_react_compiler_runtime316.c(17);
500069
+ const $2 = import_react_compiler_runtime315.c(17);
500031
500070
  const {
500032
500071
  isUpdating,
500033
500072
  onChangeIsUpdating,
@@ -500109,7 +500148,7 @@ function AutoUpdaterWrapper(t0) {
500109
500148
  }
500110
500149
  return t3;
500111
500150
  }
500112
- var import_react_compiler_runtime316, React135, jsx_dev_runtime408;
500151
+ var import_react_compiler_runtime315, React135, jsx_dev_runtime408;
500113
500152
  var init_AutoUpdaterWrapper = __esm(() => {
500114
500153
  init_config2();
500115
500154
  init_debug();
@@ -500117,7 +500156,7 @@ var init_AutoUpdaterWrapper = __esm(() => {
500117
500156
  init_AutoUpdater();
500118
500157
  init_NativeAutoUpdater();
500119
500158
  init_PackageManagerAutoUpdater();
500120
- import_react_compiler_runtime316 = __toESM(require_dist4(), 1);
500159
+ import_react_compiler_runtime315 = __toESM(require_dist4(), 1);
500121
500160
  React135 = __toESM(require_react(), 1);
500122
500161
  jsx_dev_runtime408 = __toESM(require_jsx_dev_runtime(), 1);
500123
500162
  });
@@ -500125,7 +500164,7 @@ var init_AutoUpdaterWrapper = __esm(() => {
500125
500164
  // src/components/IdeStatusIndicator.tsx
500126
500165
  import { basename as basename52 } from "path";
500127
500166
  function IdeStatusIndicator(t0) {
500128
- const $2 = import_react_compiler_runtime317.c(7);
500167
+ const $2 = import_react_compiler_runtime316.c(7);
500129
500168
  const {
500130
500169
  ideSelection,
500131
500170
  mcpClients
@@ -500187,11 +500226,11 @@ function IdeStatusIndicator(t0) {
500187
500226
  return t2;
500188
500227
  }
500189
500228
  }
500190
- var import_react_compiler_runtime317, jsx_dev_runtime409;
500229
+ var import_react_compiler_runtime316, jsx_dev_runtime409;
500191
500230
  var init_IdeStatusIndicator = __esm(() => {
500192
500231
  init_useIdeConnectionStatus();
500193
500232
  init_ink2();
500194
- import_react_compiler_runtime317 = __toESM(require_dist4(), 1);
500233
+ import_react_compiler_runtime316 = __toESM(require_dist4(), 1);
500195
500234
  jsx_dev_runtime409 = __toESM(require_jsx_dev_runtime(), 1);
500196
500235
  });
500197
500236
 
@@ -500267,7 +500306,7 @@ var init_compactWarningHook = __esm(() => {
500267
500306
 
500268
500307
  // src/components/TokenWarning.tsx
500269
500308
  function TokenWarning(t0) {
500270
- const $2 = import_react_compiler_runtime318.c(13);
500309
+ const $2 = import_react_compiler_runtime317.c(13);
500271
500310
  const {
500272
500311
  tokenUsage,
500273
500312
  model
@@ -500349,21 +500388,21 @@ function TokenWarning(t0) {
500349
500388
  }
500350
500389
  return t4;
500351
500390
  }
500352
- var import_react_compiler_runtime318, import_react237, jsx_dev_runtime411;
500391
+ var import_react_compiler_runtime317, import_react237, jsx_dev_runtime411;
500353
500392
  var init_TokenWarning = __esm(() => {
500354
500393
  init_ink2();
500355
500394
  init_growthbook();
500356
500395
  init_autoCompact();
500357
500396
  init_compactWarningHook();
500358
500397
  init_contextWindowUpgradeCheck();
500359
- import_react_compiler_runtime318 = __toESM(require_dist4(), 1);
500398
+ import_react_compiler_runtime317 = __toESM(require_dist4(), 1);
500360
500399
  import_react237 = __toESM(require_react(), 1);
500361
500400
  jsx_dev_runtime411 = __toESM(require_jsx_dev_runtime(), 1);
500362
500401
  });
500363
500402
 
500364
500403
  // src/components/PromptInput/SandboxPromptFooterHint.tsx
500365
500404
  function SandboxPromptFooterHint() {
500366
- const $2 = import_react_compiler_runtime319.c(6);
500405
+ const $2 = import_react_compiler_runtime318.c(6);
500367
500406
  const [recentViolationCount, setRecentViolationCount] = import_react238.useState(0);
500368
500407
  const timerRef = import_react238.useRef(null);
500369
500408
  const detailsShortcut = useShortcutDisplay("app:toggleTranscript", "Global", "ctrl+o");
@@ -500436,19 +500475,19 @@ function SandboxPromptFooterHint() {
500436
500475
  }
500437
500476
  return t3;
500438
500477
  }
500439
- var import_react_compiler_runtime319, import_react238, jsx_dev_runtime412;
500478
+ var import_react_compiler_runtime318, import_react238, jsx_dev_runtime412;
500440
500479
  var init_SandboxPromptFooterHint = __esm(() => {
500441
500480
  init_ink2();
500442
500481
  init_useShortcutDisplay();
500443
500482
  init_sandbox_adapter();
500444
- import_react_compiler_runtime319 = __toESM(require_dist4(), 1);
500483
+ import_react_compiler_runtime318 = __toESM(require_dist4(), 1);
500445
500484
  import_react238 = __toESM(require_react(), 1);
500446
500485
  jsx_dev_runtime412 = __toESM(require_jsx_dev_runtime(), 1);
500447
500486
  });
500448
500487
 
500449
500488
  // src/components/PromptInput/Notifications.tsx
500450
500489
  function Notifications(t0) {
500451
- const $2 = import_react_compiler_runtime320.c(34);
500490
+ const $2 = import_react_compiler_runtime319.c(34);
500452
500491
  const {
500453
500492
  apiKeyStatus,
500454
500493
  autoUpdaterResult,
@@ -500760,7 +500799,7 @@ function NotificationContent({
500760
500799
  ]
500761
500800
  }, undefined, true, undefined, this);
500762
500801
  }
500763
- var import_react_compiler_runtime320, import_react239, jsx_dev_runtime413, FOOTER_TEMPORARY_STATUS_TIMEOUT = 5000;
500802
+ var import_react_compiler_runtime319, import_react239, jsx_dev_runtime413, FOOTER_TEMPORARY_STATUS_TIMEOUT = 5000;
500764
500803
  var init_Notifications = __esm(() => {
500765
500804
  init_notifications();
500766
500805
  init_analytics();
@@ -500787,7 +500826,7 @@ var init_Notifications = __esm(() => {
500787
500826
  init_SentryErrorBoundary();
500788
500827
  init_TokenWarning();
500789
500828
  init_SandboxPromptFooterHint();
500790
- import_react_compiler_runtime320 = __toESM(require_dist4(), 1);
500829
+ import_react_compiler_runtime319 = __toESM(require_dist4(), 1);
500791
500830
  import_react239 = __toESM(require_react(), 1);
500792
500831
  jsx_dev_runtime413 = __toESM(require_jsx_dev_runtime(), 1);
500793
500832
  });
@@ -504565,14 +504604,14 @@ var init_keyword = __esm(() => {
504565
504604
  });
504566
504605
 
504567
504606
  // src/components/AutoModeOptInDialog.tsx
504568
- var import_react_compiler_runtime321, import_react245, jsx_dev_runtime416;
504607
+ var import_react_compiler_runtime320, import_react245, jsx_dev_runtime416;
504569
504608
  var init_AutoModeOptInDialog = __esm(() => {
504570
504609
  init_analytics();
504571
504610
  init_ink2();
504572
504611
  init_settings2();
504573
504612
  init_CustomSelect();
504574
504613
  init_Dialog();
504575
- import_react_compiler_runtime321 = __toESM(require_dist4(), 1);
504614
+ import_react_compiler_runtime320 = __toESM(require_dist4(), 1);
504576
504615
  import_react245 = __toESM(require_react(), 1);
504577
504616
  jsx_dev_runtime416 = __toESM(require_jsx_dev_runtime(), 1);
504578
504617
  });
@@ -504580,7 +504619,7 @@ var init_AutoModeOptInDialog = __esm(() => {
504580
504619
  // src/components/BridgeDialog.tsx
504581
504620
  import { basename as basename54 } from "path";
504582
504621
  function BridgeDialog(t0) {
504583
- const $2 = import_react_compiler_runtime322.c(87);
504622
+ const $2 = import_react_compiler_runtime321.c(87);
504584
504623
  const {
504585
504624
  onDone
504586
504625
  } = t0;
@@ -505024,7 +505063,7 @@ function _temp279(s_0) {
505024
505063
  function _temp190(s) {
505025
505064
  return s.replBridgeConnected;
505026
505065
  }
505027
- var import_react_compiler_runtime322, import_react246, jsx_dev_runtime417;
505066
+ var import_react_compiler_runtime321, import_react246, jsx_dev_runtime417;
505028
505067
  var init_BridgeDialog = __esm(() => {
505029
505068
  init_server();
505030
505069
  init_state();
@@ -505037,7 +505076,7 @@ var init_BridgeDialog = __esm(() => {
505037
505076
  init_config2();
505038
505077
  init_git();
505039
505078
  init_Dialog();
505040
- import_react_compiler_runtime322 = __toESM(require_dist4(), 1);
505079
+ import_react_compiler_runtime321 = __toESM(require_dist4(), 1);
505041
505080
  import_react246 = __toESM(require_react(), 1);
505042
505081
  jsx_dev_runtime417 = __toESM(require_jsx_dev_runtime(), 1);
505043
505082
  });
@@ -505055,7 +505094,7 @@ function useCoordinatorTaskCount() {
505055
505094
  function _temp191(s) {
505056
505095
  return s.tasks;
505057
505096
  }
505058
- var import_react_compiler_runtime323, React138, jsx_dev_runtime418;
505097
+ var import_react_compiler_runtime322, React138, jsx_dev_runtime418;
505059
505098
  var init_CoordinatorAgentStatus = __esm(() => {
505060
505099
  init_figures2();
505061
505100
  init_useTerminalSize();
@@ -505067,7 +505106,7 @@ var init_CoordinatorAgentStatus = __esm(() => {
505067
505106
  init_format();
505068
505107
  init_framework();
505069
505108
  init_taskStatusUtils();
505070
- import_react_compiler_runtime323 = __toESM(require_dist4(), 1);
505109
+ import_react_compiler_runtime322 = __toESM(require_dist4(), 1);
505071
505110
  React138 = __toESM(require_react(), 1);
505072
505111
  jsx_dev_runtime418 = __toESM(require_jsx_dev_runtime(), 1);
505073
505112
  });
@@ -505080,7 +505119,7 @@ var init_highlightMatch = __esm(() => {
505080
505119
  });
505081
505120
 
505082
505121
  // src/components/design-system/FuzzyPicker.tsx
505083
- var import_react_compiler_runtime324, import_react247, jsx_dev_runtime420;
505122
+ var import_react_compiler_runtime323, import_react247, jsx_dev_runtime420;
505084
505123
  var init_FuzzyPicker = __esm(() => {
505085
505124
  init_useSearchInput();
505086
505125
  init_useTerminalSize();
@@ -505091,13 +505130,13 @@ var init_FuzzyPicker = __esm(() => {
505091
505130
  init_KeyboardShortcutHint();
505092
505131
  init_ListItem();
505093
505132
  init_Pane();
505094
- import_react_compiler_runtime324 = __toESM(require_dist4(), 1);
505133
+ import_react_compiler_runtime323 = __toESM(require_dist4(), 1);
505095
505134
  import_react247 = __toESM(require_react(), 1);
505096
505135
  jsx_dev_runtime420 = __toESM(require_jsx_dev_runtime(), 1);
505097
505136
  });
505098
505137
 
505099
505138
  // src/components/GlobalSearchDialog.tsx
505100
- var import_react_compiler_runtime325, import_react248, jsx_dev_runtime421;
505139
+ var import_react_compiler_runtime324, import_react248, jsx_dev_runtime421;
505101
505140
  var init_GlobalSearchDialog = __esm(() => {
505102
505141
  init_overlayContext();
505103
505142
  init_useTerminalSize();
@@ -505112,7 +505151,7 @@ var init_GlobalSearchDialog = __esm(() => {
505112
505151
  init_ripgrep();
505113
505152
  init_FuzzyPicker();
505114
505153
  init_LoadingState();
505115
- import_react_compiler_runtime325 = __toESM(require_dist4(), 1);
505154
+ import_react_compiler_runtime324 = __toESM(require_dist4(), 1);
505116
505155
  import_react248 = __toESM(require_react(), 1);
505117
505156
  jsx_dev_runtime421 = __toESM(require_jsx_dev_runtime(), 1);
505118
505157
  });
@@ -505134,7 +505173,7 @@ var init_HistorySearchDialog = __esm(() => {
505134
505173
  });
505135
505174
 
505136
505175
  // src/components/QuickOpenDialog.tsx
505137
- var import_react_compiler_runtime326, import_react250, jsx_dev_runtime423;
505176
+ var import_react_compiler_runtime325, import_react250, jsx_dev_runtime423;
505138
505177
  var init_QuickOpenDialog = __esm(() => {
505139
505178
  init_overlayContext();
505140
505179
  init_fileSuggestions();
@@ -505148,14 +505187,14 @@ var init_QuickOpenDialog = __esm(() => {
505148
505187
  init_readFileInRange();
505149
505188
  init_FuzzyPicker();
505150
505189
  init_LoadingState();
505151
- import_react_compiler_runtime326 = __toESM(require_dist4(), 1);
505190
+ import_react_compiler_runtime325 = __toESM(require_dist4(), 1);
505152
505191
  import_react250 = __toESM(require_react(), 1);
505153
505192
  jsx_dev_runtime423 = __toESM(require_jsx_dev_runtime(), 1);
505154
505193
  });
505155
505194
 
505156
505195
  // src/components/ThinkingToggle.tsx
505157
505196
  function ThinkingToggle(t0) {
505158
- const $2 = import_react_compiler_runtime327.c(27);
505197
+ const $2 = import_react_compiler_runtime326.c(27);
505159
505198
  const {
505160
505199
  currentValue,
505161
505200
  onSelect,
@@ -505376,7 +505415,7 @@ function ThinkingToggle(t0) {
505376
505415
  return t11;
505377
505416
  }
505378
505417
  function _temp192() {}
505379
- var import_react_compiler_runtime327, import_react251, jsx_dev_runtime424;
505418
+ var import_react_compiler_runtime326, import_react251, jsx_dev_runtime424;
505380
505419
  var init_ThinkingToggle = __esm(() => {
505381
505420
  init_useExitOnCtrlCDWithKeybindings();
505382
505421
  init_ink2();
@@ -505386,7 +505425,7 @@ var init_ThinkingToggle = __esm(() => {
505386
505425
  init_Byline();
505387
505426
  init_KeyboardShortcutHint();
505388
505427
  init_Pane();
505389
- import_react_compiler_runtime327 = __toESM(require_dist4(), 1);
505428
+ import_react_compiler_runtime326 = __toESM(require_dist4(), 1);
505390
505429
  import_react251 = __toESM(require_react(), 1);
505391
505430
  jsx_dev_runtime424 = __toESM(require_jsx_dev_runtime(), 1);
505392
505431
  });
@@ -505584,7 +505623,7 @@ function TeamsDialog({
505584
505623
  return null;
505585
505624
  }
505586
505625
  function TeamDetailView(t0) {
505587
- const $2 = import_react_compiler_runtime328.c(13);
505626
+ const $2 = import_react_compiler_runtime327.c(13);
505588
505627
  const {
505589
505628
  teamName,
505590
505629
  teammates,
@@ -505671,7 +505710,7 @@ function TeamDetailView(t0) {
505671
505710
  return t5;
505672
505711
  }
505673
505712
  function TeammateListItem(t0) {
505674
- const $2 = import_react_compiler_runtime328.c(21);
505713
+ const $2 = import_react_compiler_runtime327.c(21);
505675
505714
  const {
505676
505715
  teammate,
505677
505716
  isSelected
@@ -505776,7 +505815,7 @@ function TeammateListItem(t0) {
505776
505815
  return t8;
505777
505816
  }
505778
505817
  function TeammateDetailView(t0) {
505779
- const $2 = import_react_compiler_runtime328.c(39);
505818
+ const $2 = import_react_compiler_runtime327.c(39);
505780
505819
  const {
505781
505820
  teammate,
505782
505821
  teamName,
@@ -506134,7 +506173,7 @@ function cycleAllTeammateModes(teammates, teamName, isBypassAvailable) {
506134
506173
  }
506135
506174
  logForDebugging2(`[TeamsDialog] Sent mode change to all ${teammates.length} teammates: ${targetMode}`);
506136
506175
  }
506137
- var import_react_compiler_runtime328, import_react252, jsx_dev_runtime425;
506176
+ var import_react_compiler_runtime327, import_react252, jsx_dev_runtime425;
506138
506177
  var init_TeamsDialog = __esm(() => {
506139
506178
  init_figures();
506140
506179
  init_dist();
@@ -506160,7 +506199,7 @@ var init_TeamsDialog = __esm(() => {
506160
506199
  init_teammateMailbox();
506161
506200
  init_Dialog();
506162
506201
  init_ThemedText();
506163
- import_react_compiler_runtime328 = __toESM(require_dist4(), 1);
506202
+ import_react_compiler_runtime327 = __toESM(require_dist4(), 1);
506164
506203
  import_react252 = __toESM(require_react(), 1);
506165
506204
  jsx_dev_runtime425 = __toESM(require_jsx_dev_runtime(), 1);
506166
506205
  });
@@ -507259,7 +507298,7 @@ var init_useVimInput = __esm(() => {
507259
507298
 
507260
507299
  // src/components/VimTextInput.tsx
507261
507300
  function VimTextInput(props) {
507262
- const $2 = import_react_compiler_runtime329.c(38);
507301
+ const $2 = import_react_compiler_runtime328.c(38);
507263
507302
  const [theme2] = useTheme();
507264
507303
  const isTerminalFocused = useTerminalFocus();
507265
507304
  useClipboardImageHint(isTerminalFocused, !!props.onImagePaste);
@@ -507393,14 +507432,14 @@ function VimTextInput(props) {
507393
507432
  function _temp194(text) {
507394
507433
  return text;
507395
507434
  }
507396
- var import_react_compiler_runtime329, import_react254, jsx_dev_runtime426;
507435
+ var import_react_compiler_runtime328, import_react254, jsx_dev_runtime426;
507397
507436
  var init_VimTextInput = __esm(() => {
507398
507437
  init_source();
507399
507438
  init_useClipboardImageHint();
507400
507439
  init_useVimInput();
507401
507440
  init_ink2();
507402
507441
  init_BaseTextInput();
507403
- import_react_compiler_runtime329 = __toESM(require_dist4(), 1);
507442
+ import_react_compiler_runtime328 = __toESM(require_dist4(), 1);
507404
507443
  import_react254 = __toESM(require_react(), 1);
507405
507444
  jsx_dev_runtime426 = __toESM(require_jsx_dev_runtime(), 1);
507406
507445
  });
@@ -507750,7 +507789,7 @@ function calculateHorizontalScrollWindow(itemWidths, availableWidth, arrowWidth,
507750
507789
 
507751
507790
  // src/components/tasks/BackgroundTaskStatus.tsx
507752
507791
  function BackgroundTaskStatus(t0) {
507753
- const $2 = import_react_compiler_runtime330.c(48);
507792
+ const $2 = import_react_compiler_runtime329.c(48);
507754
507793
  const {
507755
507794
  tasksSelected,
507756
507795
  isViewingTeammate,
@@ -508063,7 +508102,7 @@ function _temp195(s) {
508063
508102
  return s.tasks;
508064
508103
  }
508065
508104
  function AgentPill(t0) {
508066
- const $2 = import_react_compiler_runtime330.c(19);
508105
+ const $2 = import_react_compiler_runtime329.c(19);
508067
508106
  const {
508068
508107
  name,
508069
508108
  color: color3,
@@ -508195,7 +508234,7 @@ function AgentPill(t0) {
508195
508234
  return t3;
508196
508235
  }
508197
508236
  function SummaryPill(t0) {
508198
- const $2 = import_react_compiler_runtime330.c(8);
508237
+ const $2 = import_react_compiler_runtime329.c(8);
508199
508238
  const {
508200
508239
  selected,
508201
508240
  onClick,
@@ -508255,7 +508294,7 @@ function getAgentThemeColor(colorName) {
508255
508294
  }
508256
508295
  return;
508257
508296
  }
508258
- var import_react_compiler_runtime330, React141, import_react256, jsx_dev_runtime428;
508297
+ var import_react_compiler_runtime329, React141, import_react256, jsx_dev_runtime428;
508259
508298
  var init_BackgroundTaskStatus = __esm(() => {
508260
508299
  init_figures();
508261
508300
  init_useTerminalSize();
@@ -508268,7 +508307,7 @@ var init_BackgroundTaskStatus = __esm(() => {
508268
508307
  init_agentColorManager();
508269
508308
  init_KeyboardShortcutHint();
508270
508309
  init_taskStatusUtils();
508271
- import_react_compiler_runtime330 = __toESM(require_dist4(), 1);
508310
+ import_react_compiler_runtime329 = __toESM(require_dist4(), 1);
508272
508311
  React141 = __toESM(require_react(), 1);
508273
508312
  import_react256 = __toESM(require_react(), 1);
508274
508313
  jsx_dev_runtime428 = __toESM(require_jsx_dev_runtime(), 1);
@@ -508276,7 +508315,7 @@ var init_BackgroundTaskStatus = __esm(() => {
508276
508315
 
508277
508316
  // src/components/teams/TeamStatus.tsx
508278
508317
  function TeamStatus(t0) {
508279
- const $2 = import_react_compiler_runtime331.c(14);
508318
+ const $2 = import_react_compiler_runtime330.c(14);
508280
508319
  const {
508281
508320
  teamsSelected,
508282
508321
  showHint
@@ -508366,17 +508405,17 @@ function _temp282(t) {
508366
508405
  function _temp196(s) {
508367
508406
  return s.teamContext;
508368
508407
  }
508369
- var import_react_compiler_runtime331, jsx_dev_runtime429;
508408
+ var import_react_compiler_runtime330, jsx_dev_runtime429;
508370
508409
  var init_TeamStatus = __esm(() => {
508371
508410
  init_ink2();
508372
508411
  init_AppState();
508373
- import_react_compiler_runtime331 = __toESM(require_dist4(), 1);
508412
+ import_react_compiler_runtime330 = __toESM(require_dist4(), 1);
508374
508413
  jsx_dev_runtime429 = __toESM(require_jsx_dev_runtime(), 1);
508375
508414
  });
508376
508415
 
508377
508416
  // src/components/PromptInput/HistorySearchInput.tsx
508378
508417
  function HistorySearchInput(t0) {
508379
- const $2 = import_react_compiler_runtime332.c(9);
508418
+ const $2 = import_react_compiler_runtime331.c(9);
508380
508419
  const {
508381
508420
  value,
508382
508421
  onChange,
@@ -508433,12 +508472,12 @@ function HistorySearchInput(t0) {
508433
508472
  return t5;
508434
508473
  }
508435
508474
  function _temp197() {}
508436
- var import_react_compiler_runtime332, jsx_dev_runtime430, HistorySearchInput_default;
508475
+ var import_react_compiler_runtime331, jsx_dev_runtime430, HistorySearchInput_default;
508437
508476
  var init_HistorySearchInput = __esm(() => {
508438
508477
  init_stringWidth();
508439
508478
  init_ink2();
508440
508479
  init_TextInput();
508441
- import_react_compiler_runtime332 = __toESM(require_dist4(), 1);
508480
+ import_react_compiler_runtime331 = __toESM(require_dist4(), 1);
508442
508481
  jsx_dev_runtime430 = __toESM(require_jsx_dev_runtime(), 1);
508443
508482
  HistorySearchInput_default = HistorySearchInput;
508444
508483
  });
@@ -508579,18 +508618,18 @@ var init_usePrStatus = __esm(() => {
508579
508618
  });
508580
508619
 
508581
508620
  // src/components/PromptInput/VoiceIndicator.tsx
508582
- var import_react_compiler_runtime333, jsx_dev_runtime431;
508621
+ var import_react_compiler_runtime332, jsx_dev_runtime431;
508583
508622
  var init_VoiceIndicator = __esm(() => {
508584
508623
  init_useSettings();
508585
508624
  init_ink2();
508586
508625
  init_utils5();
508587
- import_react_compiler_runtime333 = __toESM(require_dist4(), 1);
508626
+ import_react_compiler_runtime332 = __toESM(require_dist4(), 1);
508588
508627
  jsx_dev_runtime431 = __toESM(require_jsx_dev_runtime(), 1);
508589
508628
  });
508590
508629
 
508591
508630
  // src/components/PromptInput/PromptInputFooterLeftSide.tsx
508592
508631
  function PromptInputFooterLeftSide(t0) {
508593
- const $2 = import_react_compiler_runtime334.c(27);
508632
+ const $2 = import_react_compiler_runtime333.c(27);
508594
508633
  const {
508595
508634
  exitMessage,
508596
508635
  vimMode,
@@ -508993,7 +509032,7 @@ function getSpinnerHintParts(isLoading, escShortcut, todosShortcut, killAgentsSh
508993
509032
  function isPrStatusEnabled() {
508994
509033
  return getGlobalConfig().prStatusFooterEnabled ?? true;
508995
509034
  }
508996
- var import_react_compiler_runtime334, import_react258, jsx_dev_runtime432, proactiveModule3 = null, NO_OP_SUBSCRIBE = (_cb) => () => {}, NULL = () => null;
509035
+ var import_react_compiler_runtime333, import_react258, jsx_dev_runtime432, proactiveModule3 = null, NO_OP_SUBSCRIBE = (_cb) => () => {}, NULL = () => null;
508997
509036
  var init_PromptInputFooterLeftSide = __esm(() => {
508998
509037
  init_ink2();
508999
509038
  init_figures();
@@ -509025,7 +509064,7 @@ var init_PromptInputFooterLeftSide = __esm(() => {
509025
509064
  init_config2();
509026
509065
  init_platform2();
509027
509066
  init_PrBadge();
509028
- import_react_compiler_runtime334 = __toESM(require_dist4(), 1);
509067
+ import_react_compiler_runtime333 = __toESM(require_dist4(), 1);
509029
509068
  import_react258 = __toESM(require_react(), 1);
509030
509069
  jsx_dev_runtime432 = __toESM(require_jsx_dev_runtime(), 1);
509031
509070
  });
@@ -509242,7 +509281,7 @@ function getTeammateThemeColor() {
509242
509281
  return;
509243
509282
  }
509244
509283
  function PromptChar(t0) {
509245
- const $2 = import_react_compiler_runtime335.c(3);
509284
+ const $2 = import_react_compiler_runtime334.c(3);
509246
509285
  const {
509247
509286
  isLoading,
509248
509287
  themeColor
@@ -509268,7 +509307,7 @@ function PromptChar(t0) {
509268
509307
  return t1;
509269
509308
  }
509270
509309
  function PromptInputModeIndicator(t0) {
509271
- const $2 = import_react_compiler_runtime335.c(6);
509310
+ const $2 = import_react_compiler_runtime334.c(6);
509272
509311
  const {
509273
509312
  mode,
509274
509313
  isLoading,
@@ -509313,14 +509352,14 @@ function PromptInputModeIndicator(t0) {
509313
509352
  }
509314
509353
  return t2;
509315
509354
  }
509316
- var import_react_compiler_runtime335, jsx_dev_runtime434;
509355
+ var import_react_compiler_runtime334, jsx_dev_runtime434;
509317
509356
  var init_PromptInputModeIndicator = __esm(() => {
509318
509357
  init_figures();
509319
509358
  init_ink2();
509320
509359
  init_agentColorManager();
509321
509360
  init_teammate();
509322
509361
  init_agentSwarmsEnabled();
509323
- import_react_compiler_runtime335 = __toESM(require_dist4(), 1);
509362
+ import_react_compiler_runtime334 = __toESM(require_dist4(), 1);
509324
509363
  jsx_dev_runtime434 = __toESM(require_jsx_dev_runtime(), 1);
509325
509364
  });
509326
509365
 
@@ -509421,7 +509460,7 @@ var init_PromptInputQueuedCommands = __esm(() => {
509421
509460
 
509422
509461
  // src/components/PromptInput/PromptInputStashNotice.tsx
509423
509462
  function PromptInputStashNotice(t0) {
509424
- const $2 = import_react_compiler_runtime336.c(1);
509463
+ const $2 = import_react_compiler_runtime335.c(1);
509425
509464
  const {
509426
509465
  hasStash
509427
509466
  } = t0;
@@ -509446,11 +509485,11 @@ function PromptInputStashNotice(t0) {
509446
509485
  }
509447
509486
  return t1;
509448
509487
  }
509449
- var import_react_compiler_runtime336, jsx_dev_runtime436;
509488
+ var import_react_compiler_runtime335, jsx_dev_runtime436;
509450
509489
  var init_PromptInputStashNotice = __esm(() => {
509451
509490
  init_figures();
509452
509491
  init_ink2();
509453
- import_react_compiler_runtime336 = __toESM(require_dist4(), 1);
509492
+ import_react_compiler_runtime335 = __toESM(require_dist4(), 1);
509454
509493
  jsx_dev_runtime436 = __toESM(require_jsx_dev_runtime(), 1);
509455
509494
  });
509456
509495
 
@@ -513353,7 +513392,7 @@ var init_useDebouncedDigitInput = __esm(() => {
513353
513392
 
513354
513393
  // src/components/FeedbackSurvey/FeedbackSurveyView.tsx
513355
513394
  function FeedbackSurveyView(t0) {
513356
- const $2 = import_react_compiler_runtime337.c(15);
513395
+ const $2 = import_react_compiler_runtime336.c(15);
513357
513396
  const {
513358
513397
  onSelect,
513359
513398
  inputValue,
@@ -513507,11 +513546,11 @@ function FeedbackSurveyView(t0) {
513507
513546
  }
513508
513547
  return t10;
513509
513548
  }
513510
- var import_react_compiler_runtime337, jsx_dev_runtime438, RESPONSE_INPUTS, inputToResponse, isValidResponseInput = (input) => RESPONSE_INPUTS.includes(input), DEFAULT_MESSAGE = "How is Claude doing this session? (optional)";
513549
+ var import_react_compiler_runtime336, jsx_dev_runtime438, RESPONSE_INPUTS, inputToResponse, isValidResponseInput = (input) => RESPONSE_INPUTS.includes(input), DEFAULT_MESSAGE = "How is Claude doing this session? (optional)";
513511
513550
  var init_FeedbackSurveyView = __esm(() => {
513512
513551
  init_ink2();
513513
513552
  init_useDebouncedDigitInput();
513514
- import_react_compiler_runtime337 = __toESM(require_dist4(), 1);
513553
+ import_react_compiler_runtime336 = __toESM(require_dist4(), 1);
513515
513554
  jsx_dev_runtime438 = __toESM(require_jsx_dev_runtime(), 1);
513516
513555
  RESPONSE_INPUTS = ["0", "1", "2", "3"];
513517
513556
  inputToResponse = {
@@ -513523,13 +513562,13 @@ var init_FeedbackSurveyView = __esm(() => {
513523
513562
  });
513524
513563
 
513525
513564
  // src/components/SkillImprovementSurvey.tsx
513526
- var import_react_compiler_runtime338, import_react270, jsx_dev_runtime439;
513565
+ var import_react_compiler_runtime337, import_react270, jsx_dev_runtime439;
513527
513566
  var init_SkillImprovementSurvey = __esm(() => {
513528
513567
  init_figures2();
513529
513568
  init_ink2();
513530
513569
  init_stringUtils();
513531
513570
  init_FeedbackSurveyView();
513532
- import_react_compiler_runtime338 = __toESM(require_dist4(), 1);
513571
+ import_react_compiler_runtime337 = __toESM(require_dist4(), 1);
513533
513572
  import_react270 = __toESM(require_react(), 1);
513534
513573
  jsx_dev_runtime439 = __toESM(require_jsx_dev_runtime(), 1);
513535
513574
  });
@@ -514559,7 +514598,7 @@ var init_useGlobalKeybindings = __esm(() => {
514559
514598
 
514560
514599
  // src/hooks/useCommandKeybindings.tsx
514561
514600
  function CommandKeybindingHandlers(t0) {
514562
- const $2 = import_react_compiler_runtime339.c(8);
514601
+ const $2 = import_react_compiler_runtime338.c(8);
514563
514602
  const {
514564
514603
  onSubmit,
514565
514604
  isActive: t1
@@ -514629,12 +514668,12 @@ function CommandKeybindingHandlers(t0) {
514629
514668
  useKeybindings(handlers, t4);
514630
514669
  return null;
514631
514670
  }
514632
- var import_react_compiler_runtime339, NOOP_HELPERS;
514671
+ var import_react_compiler_runtime338, NOOP_HELPERS;
514633
514672
  var init_useCommandKeybindings = __esm(() => {
514634
514673
  init_overlayContext();
514635
514674
  init_KeybindingContext();
514636
514675
  init_useKeybinding();
514637
- import_react_compiler_runtime339 = __toESM(require_dist4(), 1);
514676
+ import_react_compiler_runtime338 = __toESM(require_dist4(), 1);
514638
514677
  NOOP_HELPERS = {
514639
514678
  setCursorOffset: () => {},
514640
514679
  clearBuffer: () => {},
@@ -515621,7 +515660,7 @@ var init_swarmWorkerHandler = __esm(() => {
515621
515660
 
515622
515661
  // src/hooks/useCanUseTool.tsx
515623
515662
  function useCanUseTool(setToolUseConfirmQueue, setToolPermissionContext) {
515624
- const $2 = import_react_compiler_runtime340.c(3);
515663
+ const $2 = import_react_compiler_runtime339.c(3);
515625
515664
  let t0;
515626
515665
  if ($2[0] !== setToolPermissionContext || $2[1] !== setToolUseConfirmQueue) {
515627
515666
  t0 = async (tool, input, toolUseContext, assistantMessage, toolUseID, forceDecision) => new Promise((resolve39) => {
@@ -515731,7 +515770,7 @@ function useCanUseTool(setToolUseConfirmQueue, setToolPermissionContext) {
515731
515770
  }
515732
515771
  return t0;
515733
515772
  }
515734
- var import_react_compiler_runtime340, jsx_dev_runtime440, useCanUseTool_default;
515773
+ var import_react_compiler_runtime339, jsx_dev_runtime440, useCanUseTool_default;
515735
515774
  var init_useCanUseTool = __esm(() => {
515736
515775
  init_sdk();
515737
515776
  init_ink2();
@@ -515747,7 +515786,7 @@ var init_useCanUseTool = __esm(() => {
515747
515786
  init_swarmWorkerHandler();
515748
515787
  init_PermissionContext();
515749
515788
  init_permissionLogging();
515750
- import_react_compiler_runtime340 = __toESM(require_dist4(), 1);
515789
+ import_react_compiler_runtime339 = __toESM(require_dist4(), 1);
515751
515790
  jsx_dev_runtime440 = __toESM(require_jsx_dev_runtime(), 1);
515752
515791
  useCanUseTool_default = useCanUseTool;
515753
515792
  });
@@ -515823,7 +515862,7 @@ var init_processTextPrompt = __esm(() => {
515823
515862
 
515824
515863
  // src/components/BashModeProgress.tsx
515825
515864
  function BashModeProgress(t0) {
515826
- const $2 = import_react_compiler_runtime341.c(8);
515865
+ const $2 = import_react_compiler_runtime340.c(8);
515827
515866
  const {
515828
515867
  input,
515829
515868
  progress,
@@ -515881,13 +515920,13 @@ function BashModeProgress(t0) {
515881
515920
  }
515882
515921
  return t4;
515883
515922
  }
515884
- var import_react_compiler_runtime341, jsx_dev_runtime441;
515923
+ var import_react_compiler_runtime340, jsx_dev_runtime441;
515885
515924
  var init_BashModeProgress = __esm(() => {
515886
515925
  init_ink2();
515887
515926
  init_BashTool();
515888
515927
  init_UserBashInputMessage();
515889
515928
  init_ShellProgressMessage();
515890
- import_react_compiler_runtime341 = __toESM(require_dist4(), 1);
515929
+ import_react_compiler_runtime340 = __toESM(require_dist4(), 1);
515891
515930
  jsx_dev_runtime441 = __toESM(require_jsx_dev_runtime(), 1);
515892
515931
  });
515893
515932
 
@@ -517181,7 +517220,7 @@ var init_useManagePlugins = __esm(() => {
517181
517220
 
517182
517221
  // src/components/TeammateViewHeader.tsx
517183
517222
  function TeammateViewHeader() {
517184
- const $2 = import_react_compiler_runtime342.c(14);
517223
+ const $2 = import_react_compiler_runtime341.c(14);
517185
517224
  const viewedTeammate = useAppState(_temp198);
517186
517225
  if (!viewedTeammate) {
517187
517226
  return null;
@@ -517284,7 +517323,7 @@ function TeammateViewHeader() {
517284
517323
  function _temp198(s) {
517285
517324
  return getViewedTeammateTask(s);
517286
517325
  }
517287
- var import_react_compiler_runtime342, jsx_dev_runtime443;
517326
+ var import_react_compiler_runtime341, jsx_dev_runtime443;
517288
517327
  var init_TeammateViewHeader = __esm(() => {
517289
517328
  init_ink2();
517290
517329
  init_AppState();
@@ -517292,7 +517331,7 @@ var init_TeammateViewHeader = __esm(() => {
517292
517331
  init_ink3();
517293
517332
  init_KeyboardShortcutHint();
517294
517333
  init_OffscreenFreeze();
517295
- import_react_compiler_runtime342 = __toESM(require_dist4(), 1);
517334
+ import_react_compiler_runtime341 = __toESM(require_dist4(), 1);
517296
517335
  jsx_dev_runtime443 = __toESM(require_jsx_dev_runtime(), 1);
517297
517336
  });
517298
517337
 
@@ -518321,7 +518360,7 @@ var init_useTaskListWatcher = __esm(() => {
518321
518360
 
518322
518361
  // src/hooks/useIDEIntegration.tsx
518323
518362
  function useIDEIntegration(t0) {
518324
- const $2 = import_react_compiler_runtime343.c(7);
518363
+ const $2 = import_react_compiler_runtime342.c(7);
518325
518364
  const {
518326
518365
  autoConnectIdeFlag,
518327
518366
  ideToInstallExtension,
@@ -518375,18 +518414,18 @@ function useIDEIntegration(t0) {
518375
518414
  }
518376
518415
  import_react290.useEffect(t1, t2);
518377
518416
  }
518378
- var import_react_compiler_runtime343, import_react290;
518417
+ var import_react_compiler_runtime342, import_react290;
518379
518418
  var init_useIDEIntegration = __esm(() => {
518380
518419
  init_config2();
518381
518420
  init_envUtils();
518382
518421
  init_ide();
518383
- import_react_compiler_runtime343 = __toESM(require_dist4(), 1);
518422
+ import_react_compiler_runtime342 = __toESM(require_dist4(), 1);
518384
518423
  import_react290 = __toESM(require_react(), 1);
518385
518424
  });
518386
518425
 
518387
518426
  // src/components/SessionBackgroundHint.tsx
518388
518427
  function SessionBackgroundHint(t0) {
518389
- const $2 = import_react_compiler_runtime344.c(10);
518428
+ const $2 = import_react_compiler_runtime343.c(10);
518390
518429
  const {
518391
518430
  onBackgroundSession,
518392
518431
  isLoading
@@ -518475,7 +518514,7 @@ function _temp283(c6) {
518475
518514
  };
518476
518515
  }
518477
518516
  function _temp199() {}
518478
- var import_react_compiler_runtime344, import_react291, jsx_dev_runtime444;
518517
+ var import_react_compiler_runtime343, import_react291, jsx_dev_runtime444;
518479
518518
  var init_SessionBackgroundHint = __esm(() => {
518480
518519
  init_useDoublePress();
518481
518520
  init_ink2();
@@ -518487,7 +518526,7 @@ var init_SessionBackgroundHint = __esm(() => {
518487
518526
  init_env();
518488
518527
  init_envUtils();
518489
518528
  init_KeyboardShortcutHint();
518490
- import_react_compiler_runtime344 = __toESM(require_dist4(), 1);
518529
+ import_react_compiler_runtime343 = __toESM(require_dist4(), 1);
518491
518530
  import_react291 = __toESM(require_react(), 1);
518492
518531
  jsx_dev_runtime444 = __toESM(require_jsx_dev_runtime(), 1);
518493
518532
  });
@@ -518619,7 +518658,7 @@ var init_useSessionBackgrounding = __esm(() => {
518619
518658
 
518620
518659
  // src/components/EffortCallout.tsx
518621
518660
  function EffortCallout(t0) {
518622
- const $2 = import_react_compiler_runtime345.c(18);
518661
+ const $2 = import_react_compiler_runtime344.c(18);
518623
518662
  const {
518624
518663
  model,
518625
518664
  onDone
@@ -518815,7 +518854,7 @@ function _temp200() {
518815
518854
  markV2Dismissed();
518816
518855
  }
518817
518856
  function EffortIndicatorSymbol(t0) {
518818
- const $2 = import_react_compiler_runtime345.c(4);
518857
+ const $2 = import_react_compiler_runtime344.c(4);
518819
518858
  const {
518820
518859
  level
518821
518860
  } = t0;
@@ -518841,7 +518880,7 @@ function EffortIndicatorSymbol(t0) {
518841
518880
  return t2;
518842
518881
  }
518843
518882
  function EffortOptionLabel(t0) {
518844
- const $2 = import_react_compiler_runtime345.c(5);
518883
+ const $2 = import_react_compiler_runtime344.c(5);
518845
518884
  const {
518846
518885
  level,
518847
518886
  text
@@ -518908,7 +518947,7 @@ function markV2Dismissed() {
518908
518947
  };
518909
518948
  });
518910
518949
  }
518911
- var import_react_compiler_runtime345, import_react293, jsx_dev_runtime445, AUTO_DISMISS_MS = 30000;
518950
+ var import_react_compiler_runtime344, import_react293, jsx_dev_runtime445, AUTO_DISMISS_MS = 30000;
518912
518951
  var init_EffortCallout = __esm(() => {
518913
518952
  init_ink2();
518914
518953
  init_auth2();
@@ -518919,7 +518958,7 @@ var init_EffortCallout = __esm(() => {
518919
518958
  init_select();
518920
518959
  init_EffortIndicator();
518921
518960
  init_PermissionDialog();
518922
- import_react_compiler_runtime345 = __toESM(require_dist4(), 1);
518961
+ import_react_compiler_runtime344 = __toESM(require_dist4(), 1);
518923
518962
  import_react293 = __toESM(require_react(), 1);
518924
518963
  jsx_dev_runtime445 = __toESM(require_jsx_dev_runtime(), 1);
518925
518964
  });
@@ -519620,7 +519659,7 @@ function hasMessageAfterBoundary(messages, boundaryUuid) {
519620
519659
  return false;
519621
519660
  }
519622
519661
  function usePostCompactSurvey(messages, isLoading, t0, t1) {
519623
- const $2 = import_react_compiler_runtime346.c(23);
519662
+ const $2 = import_react_compiler_runtime345.c(23);
519624
519663
  const hasActivePrompt = t0 === undefined ? false : t0;
519625
519664
  let t2;
519626
519665
  if ($2[0] !== t1) {
@@ -519793,7 +519832,7 @@ function _temp201(appearanceId) {
519793
519832
  survey_type: "post_compact"
519794
519833
  });
519795
519834
  }
519796
- var import_react_compiler_runtime346, import_react299, HIDE_THANKS_AFTER_MS2 = 3000, POST_COMPACT_SURVEY_GATE = "tengu_post_compact_survey", SURVEY_PROBABILITY2 = 0.2;
519835
+ var import_react_compiler_runtime345, import_react299, HIDE_THANKS_AFTER_MS2 = 3000, POST_COMPACT_SURVEY_GATE = "tengu_post_compact_survey", SURVEY_PROBABILITY2 = 0.2;
519797
519836
  var init_usePostCompactSurvey = __esm(() => {
519798
519837
  init_config();
519799
519838
  init_growthbook();
@@ -519803,13 +519842,13 @@ var init_usePostCompactSurvey = __esm(() => {
519803
519842
  init_messages3();
519804
519843
  init_events();
519805
519844
  init_useSurveyState();
519806
- import_react_compiler_runtime346 = __toESM(require_dist4(), 1);
519845
+ import_react_compiler_runtime345 = __toESM(require_dist4(), 1);
519807
519846
  import_react299 = __toESM(require_react(), 1);
519808
519847
  });
519809
519848
 
519810
519849
  // src/components/FeedbackSurvey/TranscriptSharePrompt.tsx
519811
519850
  function TranscriptSharePrompt(t0) {
519812
- const $2 = import_react_compiler_runtime347.c(11);
519851
+ const $2 = import_react_compiler_runtime346.c(11);
519813
519852
  const {
519814
519853
  onSelect,
519815
519854
  inputValue,
@@ -519943,12 +519982,12 @@ function TranscriptSharePrompt(t0) {
519943
519982
  }
519944
519983
  return t7;
519945
519984
  }
519946
- var import_react_compiler_runtime347, jsx_dev_runtime447, RESPONSE_INPUTS2, inputToResponse2, isValidResponseInput2 = (input) => RESPONSE_INPUTS2.includes(input);
519985
+ var import_react_compiler_runtime346, jsx_dev_runtime447, RESPONSE_INPUTS2, inputToResponse2, isValidResponseInput2 = (input) => RESPONSE_INPUTS2.includes(input);
519947
519986
  var init_TranscriptSharePrompt = __esm(() => {
519948
519987
  init_figures2();
519949
519988
  init_ink2();
519950
519989
  init_useDebouncedDigitInput();
519951
- import_react_compiler_runtime347 = __toESM(require_dist4(), 1);
519990
+ import_react_compiler_runtime346 = __toESM(require_dist4(), 1);
519952
519991
  jsx_dev_runtime447 = __toESM(require_jsx_dev_runtime(), 1);
519953
519992
  RESPONSE_INPUTS2 = ["1", "2", "3"];
519954
519993
  inputToResponse2 = {
@@ -519960,7 +519999,7 @@ var init_TranscriptSharePrompt = __esm(() => {
519960
519999
 
519961
520000
  // src/components/FeedbackSurvey/FeedbackSurvey.tsx
519962
520001
  function FeedbackSurvey(t0) {
519963
- const $2 = import_react_compiler_runtime348.c(16);
520002
+ const $2 = import_react_compiler_runtime347.c(16);
519964
520003
  const {
519965
520004
  state: state2,
519966
520005
  lastResponse,
@@ -520076,7 +520115,7 @@ function FeedbackSurvey(t0) {
520076
520115
  return t1;
520077
520116
  }
520078
520117
  function FeedbackSurveyThanks(t0) {
520079
- const $2 = import_react_compiler_runtime348.c(12);
520118
+ const $2 = import_react_compiler_runtime347.c(12);
520080
520119
  const {
520081
520120
  lastResponse,
520082
520121
  inputValue,
@@ -520170,14 +520209,14 @@ function FeedbackSurveyThanks(t0) {
520170
520209
  }
520171
520210
  return t5;
520172
520211
  }
520173
- var import_react_compiler_runtime348, jsx_dev_runtime448, isFollowUpDigit = (char) => char === "1";
520212
+ var import_react_compiler_runtime347, jsx_dev_runtime448, isFollowUpDigit = (char) => char === "1";
520174
520213
  var init_FeedbackSurvey = __esm(() => {
520175
520214
  init_analytics();
520176
520215
  init_ink2();
520177
520216
  init_FeedbackSurveyView();
520178
520217
  init_TranscriptSharePrompt();
520179
520218
  init_useDebouncedDigitInput();
520180
- import_react_compiler_runtime348 = __toESM(require_dist4(), 1);
520219
+ import_react_compiler_runtime347 = __toESM(require_dist4(), 1);
520181
520220
  jsx_dev_runtime448 = __toESM(require_jsx_dev_runtime(), 1);
520182
520221
  });
520183
520222
 
@@ -520634,7 +520673,7 @@ var init_useOfficialMarketplaceNotification = __esm(() => {
520634
520673
 
520635
520674
  // src/hooks/usePromptsFromClaudeInChrome.tsx
520636
520675
  function usePromptsFromClaudeInChrome(mcpClients, toolPermissionMode) {
520637
- const $2 = import_react_compiler_runtime349.c(6);
520676
+ const $2 = import_react_compiler_runtime348.c(6);
520638
520677
  import_react302.useRef(undefined);
520639
520678
  let t0;
520640
520679
  if ($2[0] !== mcpClients) {
@@ -520673,12 +520712,12 @@ function _temp205() {}
520673
520712
  function findChromeClient(clients) {
520674
520713
  return clients.find((client3) => client3.type === "connected" && client3.name === CLAUDE_IN_CHROME_MCP_SERVER_NAME);
520675
520714
  }
520676
- var import_react_compiler_runtime349, import_react302, ClaudeInChromePromptNotificationSchema;
520715
+ var import_react_compiler_runtime348, import_react302, ClaudeInChromePromptNotificationSchema;
520677
520716
  var init_usePromptsFromClaudeInChrome = __esm(() => {
520678
520717
  init_v4();
520679
520718
  init_client7();
520680
520719
  init_common2();
520681
- import_react_compiler_runtime349 = __toESM(require_dist4(), 1);
520720
+ import_react_compiler_runtime348 = __toESM(require_dist4(), 1);
520682
520721
  import_react302 = __toESM(require_react(), 1);
520683
520722
  ClaudeInChromePromptNotificationSchema = lazySchema(() => exports_external.object({
520684
520723
  method: exports_external.literal("notifications/message"),
@@ -520735,7 +520774,7 @@ function shouldShowDesktopUpsellStartup() {
520735
520774
  return true;
520736
520775
  }
520737
520776
  function DesktopUpsellStartup(t0) {
520738
- const $2 = import_react_compiler_runtime350.c(14);
520777
+ const $2 = import_react_compiler_runtime349.c(14);
520739
520778
  const {
520740
520779
  onDone
520741
520780
  } = t0;
@@ -520887,7 +520926,7 @@ function _temp206() {
520887
520926
  seen_count: newCount
520888
520927
  });
520889
520928
  }
520890
- var import_react_compiler_runtime350, import_react303, jsx_dev_runtime451, DESKTOP_UPSELL_DEFAULT;
520929
+ var import_react_compiler_runtime349, import_react303, jsx_dev_runtime451, DESKTOP_UPSELL_DEFAULT;
520891
520930
  var init_DesktopUpsellStartup = __esm(() => {
520892
520931
  init_ink2();
520893
520932
  init_growthbook();
@@ -520896,7 +520935,7 @@ var init_DesktopUpsellStartup = __esm(() => {
520896
520935
  init_select();
520897
520936
  init_DesktopHandoff();
520898
520937
  init_PermissionDialog();
520899
- import_react_compiler_runtime350 = __toESM(require_dist4(), 1);
520938
+ import_react_compiler_runtime349 = __toESM(require_dist4(), 1);
520900
520939
  import_react303 = __toESM(require_react(), 1);
520901
520940
  jsx_dev_runtime451 = __toESM(require_jsx_dev_runtime(), 1);
520902
520941
  DESKTOP_UPSELL_DEFAULT = {
@@ -522409,7 +522448,7 @@ var init_useFileHistorySnapshotInit = __esm(() => {
522409
522448
 
522410
522449
  // src/components/permissions/SandboxPermissionRequest.tsx
522411
522450
  function SandboxPermissionRequest(t0) {
522412
- const $2 = import_react_compiler_runtime351.c(22);
522451
+ const $2 = import_react_compiler_runtime350.c(22);
522413
522452
  const {
522414
522453
  hostPattern: t1,
522415
522454
  onUserResponse
@@ -522606,13 +522645,13 @@ function SandboxPermissionRequest(t0) {
522606
522645
  }
522607
522646
  return t13;
522608
522647
  }
522609
- var import_react_compiler_runtime351, jsx_dev_runtime452;
522648
+ var import_react_compiler_runtime350, jsx_dev_runtime452;
522610
522649
  var init_SandboxPermissionRequest = __esm(() => {
522611
522650
  init_ink2();
522612
522651
  init_sandbox_adapter();
522613
522652
  init_select();
522614
522653
  init_PermissionDialog();
522615
- import_react_compiler_runtime351 = __toESM(require_dist4(), 1);
522654
+ import_react_compiler_runtime350 = __toESM(require_dist4(), 1);
522616
522655
  jsx_dev_runtime452 = __toESM(require_jsx_dev_runtime(), 1);
522617
522656
  });
522618
522657
 
@@ -522625,7 +522664,7 @@ function formatTime(date6) {
522625
522664
  return `${h2}:${m}:${s}${ampm}`;
522626
522665
  }
522627
522666
  function SandboxViolationExpandedView() {
522628
- const $2 = import_react_compiler_runtime352.c(15);
522667
+ const $2 = import_react_compiler_runtime351.c(15);
522629
522668
  let t0;
522630
522669
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
522631
522670
  t0 = [];
@@ -522745,19 +522784,19 @@ function _temp207(v, i3) {
522745
522784
  }, undefined, true, undefined, this)
522746
522785
  }, `${v.timestamp.getTime()}-${i3}`, false, undefined, this);
522747
522786
  }
522748
- var import_react_compiler_runtime352, import_react305, jsx_dev_runtime453;
522787
+ var import_react_compiler_runtime351, import_react305, jsx_dev_runtime453;
522749
522788
  var init_SandboxViolationExpandedView = __esm(() => {
522750
522789
  init_ink2();
522751
522790
  init_sandbox_adapter();
522752
522791
  init_platform2();
522753
- import_react_compiler_runtime352 = __toESM(require_dist4(), 1);
522792
+ import_react_compiler_runtime351 = __toESM(require_dist4(), 1);
522754
522793
  import_react305 = __toESM(require_react(), 1);
522755
522794
  jsx_dev_runtime453 = __toESM(require_jsx_dev_runtime(), 1);
522756
522795
  });
522757
522796
 
522758
522797
  // src/hooks/notifs/useMcpConnectivityStatus.tsx
522759
522798
  function useMcpConnectivityStatus(t0) {
522760
- const $2 = import_react_compiler_runtime353.c(4);
522799
+ const $2 = import_react_compiler_runtime352.c(4);
522761
522800
  const {
522762
522801
  mcpClients: t1
522763
522802
  } = t0;
@@ -522902,13 +522941,13 @@ function _temp287(client_0) {
522902
522941
  function _temp208(client3) {
522903
522942
  return client3.type === "failed" && client3.config.type !== "sse-ide" && client3.config.type !== "ws-ide" && client3.config.type !== "claudeai-proxy";
522904
522943
  }
522905
- var import_react_compiler_runtime353, import_react306, jsx_dev_runtime454, EMPTY_MCP_CLIENTS;
522944
+ var import_react_compiler_runtime352, import_react306, jsx_dev_runtime454, EMPTY_MCP_CLIENTS;
522906
522945
  var init_useMcpConnectivityStatus = __esm(() => {
522907
522946
  init_notifications();
522908
522947
  init_state();
522909
522948
  init_ink2();
522910
522949
  init_claudeai();
522911
- import_react_compiler_runtime353 = __toESM(require_dist4(), 1);
522950
+ import_react_compiler_runtime352 = __toESM(require_dist4(), 1);
522912
522951
  import_react306 = __toESM(require_react(), 1);
522913
522952
  jsx_dev_runtime454 = __toESM(require_jsx_dev_runtime(), 1);
522914
522953
  EMPTY_MCP_CLIENTS = [];
@@ -522957,7 +522996,7 @@ var init_useAutoModeUnavailableNotification = __esm(() => {
522957
522996
 
522958
522997
  // src/hooks/notifs/useLspInitializationNotification.tsx
522959
522998
  function useLspInitializationNotification() {
522960
- const $2 = import_react_compiler_runtime354.c(10);
522999
+ const $2 = import_react_compiler_runtime353.c(10);
522961
523000
  const {
522962
523001
  addNotification
522963
523002
  } = useNotifications();
@@ -523092,7 +523131,7 @@ function _temp288(e) {
523092
523131
  function _temp209() {
523093
523132
  return isEnvTruthy("true");
523094
523133
  }
523095
- var import_react_compiler_runtime354, React149, jsx_dev_runtime455, LSP_POLL_INTERVAL_MS = 5000;
523134
+ var import_react_compiler_runtime353, React149, jsx_dev_runtime455, LSP_POLL_INTERVAL_MS = 5000;
523096
523135
  var init_useLspInitializationNotification = __esm(() => {
523097
523136
  init_dist();
523098
523137
  init_state();
@@ -523102,7 +523141,7 @@ var init_useLspInitializationNotification = __esm(() => {
523102
523141
  init_AppState();
523103
523142
  init_debug();
523104
523143
  init_envUtils();
523105
- import_react_compiler_runtime354 = __toESM(require_dist4(), 1);
523144
+ import_react_compiler_runtime353 = __toESM(require_dist4(), 1);
523106
523145
  React149 = __toESM(require_react(), 1);
523107
523146
  jsx_dev_runtime455 = __toESM(require_jsx_dev_runtime(), 1);
523108
523147
  });
@@ -523315,7 +523354,7 @@ var init_lspRecommendation = __esm(() => {
523315
523354
 
523316
523355
  // src/hooks/usePluginRecommendationBase.tsx
523317
523356
  function usePluginRecommendationBase() {
523318
- const $2 = import_react_compiler_runtime355.c(6);
523357
+ const $2 = import_react_compiler_runtime354.c(6);
523319
523358
  const [recommendation, setRecommendation] = React150.useState(null);
523320
523359
  const isCheckingRef = React150.useRef(false);
523321
523360
  let t0;
@@ -523405,14 +523444,14 @@ async function installPluginAndNotify(pluginId, pluginName, keyPrefix, addNotifi
523405
523444
  });
523406
523445
  }
523407
523446
  }
523408
- var import_react_compiler_runtime355, React150, jsx_dev_runtime456;
523447
+ var import_react_compiler_runtime354, React150, jsx_dev_runtime456;
523409
523448
  var init_usePluginRecommendationBase = __esm(() => {
523410
523449
  init_figures();
523411
523450
  init_state();
523412
523451
  init_ink2();
523413
523452
  init_log3();
523414
523453
  init_marketplaceManager();
523415
- import_react_compiler_runtime355 = __toESM(require_dist4(), 1);
523454
+ import_react_compiler_runtime354 = __toESM(require_dist4(), 1);
523416
523455
  React150 = __toESM(require_react(), 1);
523417
523456
  jsx_dev_runtime456 = __toESM(require_jsx_dev_runtime(), 1);
523418
523457
  });
@@ -523420,7 +523459,7 @@ var init_usePluginRecommendationBase = __esm(() => {
523420
523459
  // src/hooks/useLspPluginRecommendation.tsx
523421
523460
  import { extname as extname16, join as join144 } from "path";
523422
523461
  function useLspPluginRecommendation() {
523423
- const $2 = import_react_compiler_runtime356.c(12);
523462
+ const $2 = import_react_compiler_runtime355.c(12);
523424
523463
  const trackedFiles = useAppState(_temp224);
523425
523464
  const {
523426
523465
  addNotification
@@ -523568,7 +523607,7 @@ function _temp289(current) {
523568
523607
  function _temp224(s) {
523569
523608
  return s.fileHistory.trackedFiles;
523570
523609
  }
523571
- var import_react_compiler_runtime356, React151, TIMEOUT_THRESHOLD_MS = 28000;
523610
+ var import_react_compiler_runtime355, React151, TIMEOUT_THRESHOLD_MS = 28000;
523572
523611
  var init_useLspPluginRecommendation = __esm(() => {
523573
523612
  init_state();
523574
523613
  init_notifications();
@@ -523580,7 +523619,7 @@ var init_useLspPluginRecommendation = __esm(() => {
523580
523619
  init_pluginInstallationHelpers();
523581
523620
  init_settings2();
523582
523621
  init_usePluginRecommendationBase();
523583
- import_react_compiler_runtime356 = __toESM(require_dist4(), 1);
523622
+ import_react_compiler_runtime355 = __toESM(require_dist4(), 1);
523584
523623
  React151 = __toESM(require_react(), 1);
523585
523624
  });
523586
523625
 
@@ -523719,7 +523758,7 @@ var init_LspRecommendationMenu = __esm(() => {
523719
523758
 
523720
523759
  // src/hooks/useClaudeCodeHintRecommendation.tsx
523721
523760
  function useClaudeCodeHintRecommendation() {
523722
- const $2 = import_react_compiler_runtime357.c(11);
523761
+ const $2 = import_react_compiler_runtime356.c(11);
523723
523762
  const pendingHint2 = React153.useSyncExternalStore(subscribeToPendingHint, getPendingHintSnapshot);
523724
523763
  const {
523725
523764
  addNotification
@@ -523822,7 +523861,7 @@ function useClaudeCodeHintRecommendation() {
523822
523861
  }
523823
523862
  return t3;
523824
523863
  }
523825
- var import_react_compiler_runtime357, React153;
523864
+ var import_react_compiler_runtime356, React153;
523826
523865
  var init_useClaudeCodeHintRecommendation = __esm(() => {
523827
523866
  init_notifications();
523828
523867
  init_analytics();
@@ -523831,7 +523870,7 @@ var init_useClaudeCodeHintRecommendation = __esm(() => {
523831
523870
  init_hintRecommendation();
523832
523871
  init_pluginInstallationHelpers();
523833
523872
  init_usePluginRecommendationBase();
523834
- import_react_compiler_runtime357 = __toESM(require_dist4(), 1);
523873
+ import_react_compiler_runtime356 = __toESM(require_dist4(), 1);
523835
523874
  React153 = __toESM(require_react(), 1);
523836
523875
  });
523837
523876
 
@@ -523962,7 +524001,7 @@ var init_PluginHintMenu = __esm(() => {
523962
524001
 
523963
524002
  // src/hooks/notifs/usePluginInstallationStatus.tsx
523964
524003
  function usePluginInstallationStatus() {
523965
- const $2 = import_react_compiler_runtime358.c(20);
524004
+ const $2 = import_react_compiler_runtime357.c(20);
523966
524005
  const {
523967
524006
  addNotification
523968
524007
  } = useNotifications();
@@ -524095,7 +524134,7 @@ function _temp290(m) {
524095
524134
  function _temp234(s) {
524096
524135
  return s.plugins.installationStatus;
524097
524136
  }
524098
- var import_react_compiler_runtime358, import_react308, jsx_dev_runtime459;
524137
+ var import_react_compiler_runtime357, import_react308, jsx_dev_runtime459;
524099
524138
  var init_usePluginInstallationStatus = __esm(() => {
524100
524139
  init_state();
524101
524140
  init_notifications();
@@ -524103,14 +524142,14 @@ var init_usePluginInstallationStatus = __esm(() => {
524103
524142
  init_AppState();
524104
524143
  init_debug();
524105
524144
  init_stringUtils();
524106
- import_react_compiler_runtime358 = __toESM(require_dist4(), 1);
524145
+ import_react_compiler_runtime357 = __toESM(require_dist4(), 1);
524107
524146
  import_react308 = __toESM(require_react(), 1);
524108
524147
  jsx_dev_runtime459 = __toESM(require_jsx_dev_runtime(), 1);
524109
524148
  });
524110
524149
 
524111
524150
  // src/hooks/notifs/usePluginAutoupdateNotification.tsx
524112
524151
  function usePluginAutoupdateNotification() {
524113
- const $2 = import_react_compiler_runtime359.c(7);
524152
+ const $2 = import_react_compiler_runtime358.c(7);
524114
524153
  const {
524115
524154
  addNotification
524116
524155
  } = useNotifications();
@@ -524194,14 +524233,14 @@ function _temp244(id) {
524194
524233
  const atIndex = id.indexOf("@");
524195
524234
  return atIndex > 0 ? id.substring(0, atIndex) : id;
524196
524235
  }
524197
- var import_react_compiler_runtime359, import_react309, jsx_dev_runtime460;
524236
+ var import_react_compiler_runtime358, import_react309, jsx_dev_runtime460;
524198
524237
  var init_usePluginAutoupdateNotification = __esm(() => {
524199
524238
  init_state();
524200
524239
  init_notifications();
524201
524240
  init_ink2();
524202
524241
  init_debug();
524203
524242
  init_pluginAutoupdate();
524204
- import_react_compiler_runtime359 = __toESM(require_dist4(), 1);
524243
+ import_react_compiler_runtime358 = __toESM(require_dist4(), 1);
524205
524244
  import_react309 = __toESM(require_react(), 1);
524206
524245
  jsx_dev_runtime460 = __toESM(require_jsx_dev_runtime(), 1);
524207
524246
  });
@@ -524485,7 +524524,7 @@ var init_performStartupChecks = __esm(() => {
524485
524524
 
524486
524525
  // src/components/AwsAuthStatusBox.tsx
524487
524526
  function AwsAuthStatusBox() {
524488
- const $2 = import_react_compiler_runtime360.c(11);
524527
+ const $2 = import_react_compiler_runtime359.c(11);
524489
524528
  let t0;
524490
524529
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
524491
524530
  t0 = AwsAuthStatusManager.getInstance().getStatus();
@@ -524598,11 +524637,11 @@ function _temp254(line, index) {
524598
524637
  ]
524599
524638
  }, index, true, undefined, this);
524600
524639
  }
524601
- var import_react_compiler_runtime360, import_react310, jsx_dev_runtime461, URL_RE;
524640
+ var import_react_compiler_runtime359, import_react310, jsx_dev_runtime461, URL_RE;
524602
524641
  var init_AwsAuthStatusBox = __esm(() => {
524603
524642
  init_ink2();
524604
524643
  init_awsAuthStatusManager();
524605
- import_react_compiler_runtime360 = __toESM(require_dist4(), 1);
524644
+ import_react_compiler_runtime359 = __toESM(require_dist4(), 1);
524606
524645
  import_react310 = __toESM(require_react(), 1);
524607
524646
  jsx_dev_runtime461 = __toESM(require_jsx_dev_runtime(), 1);
524608
524647
  URL_RE = /https?:\/\/\S+/;
@@ -524610,7 +524649,7 @@ var init_AwsAuthStatusBox = __esm(() => {
524610
524649
 
524611
524650
  // src/hooks/notifs/useRateLimitWarningNotification.tsx
524612
524651
  function useRateLimitWarningNotification(model) {
524613
- const $2 = import_react_compiler_runtime361.c(17);
524652
+ const $2 = import_react_compiler_runtime360.c(17);
524614
524653
  const {
524615
524654
  addNotification
524616
524655
  } = useNotifications();
@@ -524717,7 +524756,7 @@ function useRateLimitWarningNotification(model) {
524717
524756
  }
524718
524757
  import_react311.useEffect(t6, t7);
524719
524758
  }
524720
- var import_react_compiler_runtime361, import_react311, jsx_dev_runtime462;
524759
+ var import_react_compiler_runtime360, import_react311, jsx_dev_runtime462;
524721
524760
  var init_useRateLimitWarningNotification = __esm(() => {
524722
524761
  init_notifications();
524723
524762
  init_ink2();
@@ -524726,7 +524765,7 @@ var init_useRateLimitWarningNotification = __esm(() => {
524726
524765
  init_auth2();
524727
524766
  init_billing();
524728
524767
  init_state();
524729
- import_react_compiler_runtime361 = __toESM(require_dist4(), 1);
524768
+ import_react_compiler_runtime360 = __toESM(require_dist4(), 1);
524730
524769
  import_react311 = __toESM(require_react(), 1);
524731
524770
  jsx_dev_runtime462 = __toESM(require_jsx_dev_runtime(), 1);
524732
524771
  });
@@ -524794,7 +524833,7 @@ var init_deprecation = __esm(() => {
524794
524833
 
524795
524834
  // src/hooks/notifs/useDeprecationWarningNotification.tsx
524796
524835
  function useDeprecationWarningNotification(model) {
524797
- const $2 = import_react_compiler_runtime362.c(4);
524836
+ const $2 = import_react_compiler_runtime361.c(4);
524798
524837
  const {
524799
524838
  addNotification
524800
524839
  } = useNotifications();
@@ -524831,12 +524870,12 @@ function useDeprecationWarningNotification(model) {
524831
524870
  }
524832
524871
  import_react312.useEffect(t0, t1);
524833
524872
  }
524834
- var import_react_compiler_runtime362, import_react312;
524873
+ var import_react_compiler_runtime361, import_react312;
524835
524874
  var init_useDeprecationWarningNotification = __esm(() => {
524836
524875
  init_notifications();
524837
524876
  init_deprecation();
524838
524877
  init_state();
524839
- import_react_compiler_runtime362 = __toESM(require_dist4(), 1);
524878
+ import_react_compiler_runtime361 = __toESM(require_dist4(), 1);
524840
524879
  import_react312 = __toESM(require_react(), 1);
524841
524880
  });
524842
524881
 
@@ -524869,7 +524908,7 @@ var init_useNpmDeprecationNotification = __esm(() => {
524869
524908
 
524870
524909
  // src/hooks/notifs/useIDEStatusIndicator.tsx
524871
524910
  function useIDEStatusIndicator(t0) {
524872
- const $2 = import_react_compiler_runtime363.c(26);
524911
+ const $2 = import_react_compiler_runtime362.c(26);
524873
524912
  const {
524874
524913
  ideSelection,
524875
524914
  mcpClients,
@@ -525046,7 +525085,7 @@ function _temp293(current) {
525046
525085
  ideHintShownCount: (current.ideHintShownCount ?? 0) + 1
525047
525086
  };
525048
525087
  }
525049
- var import_react_compiler_runtime363, import_react313, jsx_dev_runtime463, MAX_IDE_HINT_SHOW_COUNT = 5;
525088
+ var import_react_compiler_runtime362, import_react313, jsx_dev_runtime463, MAX_IDE_HINT_SHOW_COUNT = 5;
525050
525089
  var init_useIDEStatusIndicator = __esm(() => {
525051
525090
  init_notifications();
525052
525091
  init_ink2();
@@ -525054,7 +525093,7 @@ var init_useIDEStatusIndicator = __esm(() => {
525054
525093
  init_ide();
525055
525094
  init_state();
525056
525095
  init_useIdeConnectionStatus();
525057
- import_react_compiler_runtime363 = __toESM(require_dist4(), 1);
525096
+ import_react_compiler_runtime362 = __toESM(require_dist4(), 1);
525058
525097
  import_react313 = __toESM(require_react(), 1);
525059
525098
  jsx_dev_runtime463 = __toESM(require_jsx_dev_runtime(), 1);
525060
525099
  });
@@ -525242,7 +525281,7 @@ var init_useTeammateShutdownNotification = __esm(() => {
525242
525281
 
525243
525282
  // src/hooks/notifs/useFastModeNotification.tsx
525244
525283
  function useFastModeNotification() {
525245
- const $2 = import_react_compiler_runtime364.c(13);
525284
+ const $2 = import_react_compiler_runtime363.c(13);
525246
525285
  const {
525247
525286
  addNotification
525248
525287
  } = useNotifications();
@@ -525391,20 +525430,20 @@ function getCooldownMessage(reason, resetIn) {
525391
525430
  return `Fast limit reached and temporarily disabled · resets in ${resetIn}`;
525392
525431
  }
525393
525432
  }
525394
- var import_react_compiler_runtime364, import_react315, COOLDOWN_STARTED_KEY = "fast-mode-cooldown-started", COOLDOWN_EXPIRED_KEY = "fast-mode-cooldown-expired", ORG_CHANGED_KEY = "fast-mode-org-changed", OVERAGE_REJECTED_KEY = "fast-mode-overage-rejected";
525433
+ var import_react_compiler_runtime363, import_react315, COOLDOWN_STARTED_KEY = "fast-mode-cooldown-started", COOLDOWN_EXPIRED_KEY = "fast-mode-cooldown-expired", ORG_CHANGED_KEY = "fast-mode-org-changed", OVERAGE_REJECTED_KEY = "fast-mode-overage-rejected";
525395
525434
  var init_useFastModeNotification = __esm(() => {
525396
525435
  init_notifications();
525397
525436
  init_AppState();
525398
525437
  init_fastMode();
525399
525438
  init_format();
525400
525439
  init_state();
525401
- import_react_compiler_runtime364 = __toESM(require_dist4(), 1);
525440
+ import_react_compiler_runtime363 = __toESM(require_dist4(), 1);
525402
525441
  import_react315 = __toESM(require_react(), 1);
525403
525442
  });
525404
525443
 
525405
525444
  // src/utils/autoRunIssue.tsx
525406
525445
  function AutoRunIssueNotification(t0) {
525407
- const $2 = import_react_compiler_runtime365.c(8);
525446
+ const $2 = import_react_compiler_runtime364.c(8);
525408
525447
  const {
525409
525448
  onRun,
525410
525449
  onCancel,
@@ -525523,12 +525562,12 @@ function getAutoRunIssueReasonText(reason) {
525523
525562
  return "Unknown reason";
525524
525563
  }
525525
525564
  }
525526
- var import_react_compiler_runtime365, import_react316, jsx_dev_runtime465;
525565
+ var import_react_compiler_runtime364, import_react316, jsx_dev_runtime465;
525527
525566
  var init_autoRunIssue = __esm(() => {
525528
525567
  init_KeyboardShortcutHint();
525529
525568
  init_ink2();
525530
525569
  init_useKeybinding();
525531
- import_react_compiler_runtime365 = __toESM(require_dist4(), 1);
525570
+ import_react_compiler_runtime364 = __toESM(require_dist4(), 1);
525532
525571
  import_react316 = __toESM(require_react(), 1);
525533
525572
  jsx_dev_runtime465 = __toESM(require_jsx_dev_runtime(), 1);
525534
525573
  });
@@ -525642,18 +525681,18 @@ var init_useIssueFlagBanner = __esm(() => {
525642
525681
  });
525643
525682
 
525644
525683
  // src/components/DevBar.tsx
525645
- var import_react_compiler_runtime366, import_react318, jsx_dev_runtime466;
525684
+ var import_react_compiler_runtime365, import_react318, jsx_dev_runtime466;
525646
525685
  var init_DevBar = __esm(() => {
525647
525686
  init_state();
525648
525687
  init_ink2();
525649
- import_react_compiler_runtime366 = __toESM(require_dist4(), 1);
525688
+ import_react_compiler_runtime365 = __toESM(require_dist4(), 1);
525650
525689
  import_react318 = __toESM(require_react(), 1);
525651
525690
  jsx_dev_runtime466 = __toESM(require_jsx_dev_runtime(), 1);
525652
525691
  });
525653
525692
 
525654
525693
  // src/ink/components/AlternateScreen.tsx
525655
525694
  function AlternateScreen(t0) {
525656
- const $2 = import_react_compiler_runtime367.c(7);
525695
+ const $2 = import_react_compiler_runtime366.c(7);
525657
525696
  const {
525658
525697
  children,
525659
525698
  mouseTracking: t1
@@ -525705,14 +525744,14 @@ function AlternateScreen(t0) {
525705
525744
  }
525706
525745
  return t5;
525707
525746
  }
525708
- var import_react_compiler_runtime367, import_react319, jsx_dev_runtime467;
525747
+ var import_react_compiler_runtime366, import_react319, jsx_dev_runtime467;
525709
525748
  var init_AlternateScreen = __esm(() => {
525710
525749
  init_instances();
525711
525750
  init_dec();
525712
525751
  init_useTerminalNotification();
525713
525752
  init_Box();
525714
525753
  init_TerminalSizeContext();
525715
- import_react_compiler_runtime367 = __toESM(require_dist4(), 1);
525754
+ import_react_compiler_runtime366 = __toESM(require_dist4(), 1);
525716
525755
  import_react319 = __toESM(require_react(), 1);
525717
525756
  jsx_dev_runtime467 = __toESM(require_jsx_dev_runtime(), 1);
525718
525757
  });
@@ -526352,7 +526391,7 @@ import { tmpdir as tmpdir11 } from "os";
526352
526391
  import { writeFile as writeFile44 } from "fs/promises";
526353
526392
  import { randomUUID as randomUUID47 } from "crypto";
526354
526393
  function TranscriptModeFooter(t0) {
526355
- const $2 = import_react_compiler_runtime368.c(9);
526394
+ const $2 = import_react_compiler_runtime367.c(9);
526356
526395
  const {
526357
526396
  showAllInTranscript,
526358
526397
  virtualScroll,
@@ -526549,7 +526588,7 @@ function TranscriptSearchBar({
526549
526588
  }, undefined, true, undefined, this);
526550
526589
  }
526551
526590
  function AnimatedTerminalTitle(t0) {
526552
- const $2 = import_react_compiler_runtime368.c(6);
526591
+ const $2 = import_react_compiler_runtime367.c(6);
526553
526592
  const {
526554
526593
  isAnimating,
526555
526594
  title,
@@ -529682,7 +529721,7 @@ Note: ctrl + z now suspends Claude Code, ctrl + _ undoes input.
529682
529721
  }
529683
529722
  return mainReturn;
529684
529723
  }
529685
- var import_react_compiler_runtime368, React159, import_react322, jsx_dev_runtime468, useFrustrationDetection = () => ({
529724
+ var import_react_compiler_runtime367, React159, import_react322, jsx_dev_runtime468, useFrustrationDetection = () => ({
529686
529725
  state: "closed",
529687
529726
  handleTranscriptSelect: () => {}
529688
529727
  }), useAntOrgWarningNotification = () => {}, getCoordinatorUserContext = () => ({}), proactiveModule5 = null, PROACTIVE_NO_OP_SUBSCRIBE = (_cb) => () => {}, PROACTIVE_FALSE = () => false, SUGGEST_BG_PR_NOOP = (_p, _n) => false, EMPTY_MCP_CLIENTS2, HISTORY_STUB, RECENT_SCROLL_REPIN_WINDOW_MS = 3000, TITLE_ANIMATION_FRAMES, TITLE_STATIC_PREFIX = "✳", TITLE_ANIMATION_INTERVAL_MS = 960;
@@ -529888,7 +529927,7 @@ var init_REPL = __esm(() => {
529888
529927
  init_messageActions();
529889
529928
  init_osc();
529890
529929
  init_attachments2();
529891
- import_react_compiler_runtime368 = __toESM(require_dist4(), 1);
529930
+ import_react_compiler_runtime367 = __toESM(require_dist4(), 1);
529892
529931
  React159 = __toESM(require_react(), 1);
529893
529932
  import_react322 = __toESM(require_react(), 1);
529894
529933
  jsx_dev_runtime468 = __toESM(require_jsx_dev_runtime(), 1);
@@ -530074,7 +530113,7 @@ var init_warningHandler = __esm(() => {
530074
530113
 
530075
530114
  // src/components/MCPServerDialogCopy.tsx
530076
530115
  function MCPServerDialogCopy() {
530077
- const $2 = import_react_compiler_runtime369.c(1);
530116
+ const $2 = import_react_compiler_runtime368.c(1);
530078
530117
  let t0;
530079
530118
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
530080
530119
  t0 = /* @__PURE__ */ jsx_dev_runtime470.jsxDEV(ThemedText, {
@@ -530094,16 +530133,16 @@ function MCPServerDialogCopy() {
530094
530133
  }
530095
530134
  return t0;
530096
530135
  }
530097
- var import_react_compiler_runtime369, jsx_dev_runtime470;
530136
+ var import_react_compiler_runtime368, jsx_dev_runtime470;
530098
530137
  var init_MCPServerDialogCopy = __esm(() => {
530099
530138
  init_ink2();
530100
- import_react_compiler_runtime369 = __toESM(require_dist4(), 1);
530139
+ import_react_compiler_runtime368 = __toESM(require_dist4(), 1);
530101
530140
  jsx_dev_runtime470 = __toESM(require_jsx_dev_runtime(), 1);
530102
530141
  });
530103
530142
 
530104
530143
  // src/components/MCPServerApprovalDialog.tsx
530105
530144
  function MCPServerApprovalDialog(t0) {
530106
- const $2 = import_react_compiler_runtime370.c(13);
530145
+ const $2 = import_react_compiler_runtime369.c(13);
530107
530146
  const {
530108
530147
  serverName,
530109
530148
  onDone
@@ -530216,20 +530255,20 @@ function MCPServerApprovalDialog(t0) {
530216
530255
  }
530217
530256
  return t7;
530218
530257
  }
530219
- var import_react_compiler_runtime370, jsx_dev_runtime471;
530258
+ var import_react_compiler_runtime369, jsx_dev_runtime471;
530220
530259
  var init_MCPServerApprovalDialog = __esm(() => {
530221
530260
  init_analytics();
530222
530261
  init_settings2();
530223
530262
  init_CustomSelect();
530224
530263
  init_Dialog();
530225
530264
  init_MCPServerDialogCopy();
530226
- import_react_compiler_runtime370 = __toESM(require_dist4(), 1);
530265
+ import_react_compiler_runtime369 = __toESM(require_dist4(), 1);
530227
530266
  jsx_dev_runtime471 = __toESM(require_jsx_dev_runtime(), 1);
530228
530267
  });
530229
530268
 
530230
530269
  // src/components/MCPServerMultiselectDialog.tsx
530231
530270
  function MCPServerMultiselectDialog(t0) {
530232
- const $2 = import_react_compiler_runtime371.c(21);
530271
+ const $2 = import_react_compiler_runtime370.c(21);
530233
530272
  const {
530234
530273
  serverNames,
530235
530274
  onDone
@@ -530389,7 +530428,7 @@ function _temp302(server_0) {
530389
530428
  value: server_0
530390
530429
  };
530391
530430
  }
530392
- var import_react_compiler_runtime371, jsx_dev_runtime472;
530431
+ var import_react_compiler_runtime370, jsx_dev_runtime472;
530393
530432
  var init_MCPServerMultiselectDialog = __esm(() => {
530394
530433
  init_partition();
530395
530434
  init_analytics();
@@ -530401,7 +530440,7 @@ var init_MCPServerMultiselectDialog = __esm(() => {
530401
530440
  init_Dialog();
530402
530441
  init_KeyboardShortcutHint();
530403
530442
  init_MCPServerDialogCopy();
530404
- import_react_compiler_runtime371 = __toESM(require_dist4(), 1);
530443
+ import_react_compiler_runtime370 = __toESM(require_dist4(), 1);
530405
530444
  jsx_dev_runtime472 = __toESM(require_jsx_dev_runtime(), 1);
530406
530445
  });
530407
530446
 
@@ -530658,7 +530697,7 @@ async function checkProviderEndpoint() {
530658
530697
  }
530659
530698
  }
530660
530699
  function PreflightStep(t0) {
530661
- const $2 = import_react_compiler_runtime372.c(12);
530700
+ const $2 = import_react_compiler_runtime371.c(12);
530662
530701
  const {
530663
530702
  onSuccess
530664
530703
  } = t0;
@@ -530732,13 +530771,13 @@ function PreflightStep(t0) {
530732
530771
  }
530733
530772
  return t6;
530734
530773
  }
530735
- var import_react_compiler_runtime372, import_react324, jsx_dev_runtime474;
530774
+ var import_react_compiler_runtime371, import_react324, jsx_dev_runtime474;
530736
530775
  var init_preflightChecks = __esm(() => {
530737
530776
  init_Spinner2();
530738
530777
  init_useTimeout();
530739
530778
  init_ink2();
530740
530779
  init_providerConfig2();
530741
- import_react_compiler_runtime372 = __toESM(require_dist4(), 1);
530780
+ import_react_compiler_runtime371 = __toESM(require_dist4(), 1);
530742
530781
  import_react324 = __toESM(require_react(), 1);
530743
530782
  jsx_dev_runtime474 = __toESM(require_jsx_dev_runtime(), 1);
530744
530783
  });
@@ -530749,7 +530788,7 @@ __export(exports_ApproveApiKey, {
530749
530788
  ApproveApiKey: () => ApproveApiKey
530750
530789
  });
530751
530790
  function ApproveApiKey(t0) {
530752
- const $2 = import_react_compiler_runtime373.c(17);
530791
+ const $2 = import_react_compiler_runtime372.c(17);
530753
530792
  const {
530754
530793
  customApiKeyTruncated,
530755
530794
  onDone
@@ -530898,19 +530937,19 @@ function ApproveApiKey(t0) {
530898
530937
  }
530899
530938
  return t9;
530900
530939
  }
530901
- var import_react_compiler_runtime373, jsx_dev_runtime475;
530940
+ var import_react_compiler_runtime372, jsx_dev_runtime475;
530902
530941
  var init_ApproveApiKey = __esm(() => {
530903
530942
  init_ink2();
530904
530943
  init_config2();
530905
530944
  init_CustomSelect();
530906
530945
  init_Dialog();
530907
- import_react_compiler_runtime373 = __toESM(require_dist4(), 1);
530946
+ import_react_compiler_runtime372 = __toESM(require_dist4(), 1);
530908
530947
  jsx_dev_runtime475 = __toESM(require_jsx_dev_runtime(), 1);
530909
530948
  });
530910
530949
 
530911
530950
  // src/components/LogoV2/WelcomeV2.tsx
530912
530951
  function WelcomeV2() {
530913
- const $2 = import_react_compiler_runtime374.c(35);
530952
+ const $2 = import_react_compiler_runtime373.c(35);
530914
530953
  const [theme2] = useTheme();
530915
530954
  if (env3.terminal === "Apple_Terminal") {
530916
530955
  let t02;
@@ -530950,7 +530989,7 @@ function WelcomeV2() {
530950
530989
  dimColor: true,
530951
530990
  children: [
530952
530991
  "v",
530953
- "0.1.3",
530992
+ "0.1.4",
530954
530993
  " "
530955
530994
  ]
530956
530995
  }, undefined, true, undefined, this)
@@ -531150,7 +531189,7 @@ function WelcomeV2() {
531150
531189
  dimColor: true,
531151
531190
  children: [
531152
531191
  "v",
531153
- "0.1.3",
531192
+ "0.1.4",
531154
531193
  " "
531155
531194
  ]
531156
531195
  }, undefined, true, undefined, this)
@@ -531349,7 +531388,7 @@ function WelcomeV2() {
531349
531388
  return t16;
531350
531389
  }
531351
531390
  function AppleTerminalWelcomeV2(t0) {
531352
- const $2 = import_react_compiler_runtime374.c(44);
531391
+ const $2 = import_react_compiler_runtime373.c(44);
531353
531392
  const {
531354
531393
  theme: theme2,
531355
531394
  welcomeMessage
@@ -531376,7 +531415,7 @@ function AppleTerminalWelcomeV2(t0) {
531376
531415
  dimColor: true,
531377
531416
  children: [
531378
531417
  "v",
531379
- "0.1.3",
531418
+ "0.1.4",
531380
531419
  " "
531381
531420
  ]
531382
531421
  }, undefined, true, undefined, this);
@@ -531630,7 +531669,7 @@ function AppleTerminalWelcomeV2(t0) {
531630
531669
  dimColor: true,
531631
531670
  children: [
531632
531671
  "v",
531633
- "0.1.3",
531672
+ "0.1.4",
531634
531673
  " "
531635
531674
  ]
531636
531675
  }, undefined, true, undefined, this);
@@ -531880,17 +531919,17 @@ function AppleTerminalWelcomeV2(t0) {
531880
531919
  }
531881
531920
  return t19;
531882
531921
  }
531883
- var import_react_compiler_runtime374, jsx_dev_runtime476, WELCOME_V2_WIDTH = 58;
531922
+ var import_react_compiler_runtime373, jsx_dev_runtime476, WELCOME_V2_WIDTH = 58;
531884
531923
  var init_WelcomeV2 = __esm(() => {
531885
531924
  init_ink2();
531886
531925
  init_env();
531887
- import_react_compiler_runtime374 = __toESM(require_dist4(), 1);
531926
+ import_react_compiler_runtime373 = __toESM(require_dist4(), 1);
531888
531927
  jsx_dev_runtime476 = __toESM(require_jsx_dev_runtime(), 1);
531889
531928
  });
531890
531929
 
531891
531930
  // src/components/ui/OrderedListItem.tsx
531892
531931
  function OrderedListItem(t0) {
531893
- const $2 = import_react_compiler_runtime375.c(7);
531932
+ const $2 = import_react_compiler_runtime374.c(7);
531894
531933
  const {
531895
531934
  children
531896
531935
  } = t0;
@@ -531936,10 +531975,10 @@ function OrderedListItem(t0) {
531936
531975
  }
531937
531976
  return t3;
531938
531977
  }
531939
- var import_react_compiler_runtime375, import_react325, jsx_dev_runtime477, OrderedListItemContext;
531978
+ var import_react_compiler_runtime374, import_react325, jsx_dev_runtime477, OrderedListItemContext;
531940
531979
  var init_OrderedListItem = __esm(() => {
531941
531980
  init_ink2();
531942
- import_react_compiler_runtime375 = __toESM(require_dist4(), 1);
531981
+ import_react_compiler_runtime374 = __toESM(require_dist4(), 1);
531943
531982
  import_react325 = __toESM(require_react(), 1);
531944
531983
  jsx_dev_runtime477 = __toESM(require_jsx_dev_runtime(), 1);
531945
531984
  OrderedListItemContext = import_react325.createContext({
@@ -531949,7 +531988,7 @@ var init_OrderedListItem = __esm(() => {
531949
531988
 
531950
531989
  // src/components/ui/OrderedList.tsx
531951
531990
  function OrderedListComponent(t0) {
531952
- const $2 = import_react_compiler_runtime376.c(9);
531991
+ const $2 = import_react_compiler_runtime375.c(9);
531953
531992
  const {
531954
531993
  children
531955
531994
  } = t0;
@@ -532013,11 +532052,11 @@ function OrderedListComponent(t0) {
532013
532052
  }
532014
532053
  return t2;
532015
532054
  }
532016
- var import_react_compiler_runtime376, import_react326, jsx_dev_runtime478, OrderedListContext, OrderedList;
532055
+ var import_react_compiler_runtime375, import_react326, jsx_dev_runtime478, OrderedListContext, OrderedList;
532017
532056
  var init_OrderedList = __esm(() => {
532018
532057
  init_ink2();
532019
532058
  init_OrderedListItem();
532020
- import_react_compiler_runtime376 = __toESM(require_dist4(), 1);
532059
+ import_react_compiler_runtime375 = __toESM(require_dist4(), 1);
532021
532060
  import_react326 = __toESM(require_react(), 1);
532022
532061
  jsx_dev_runtime478 = __toESM(require_jsx_dev_runtime(), 1);
532023
532062
  OrderedListContext = import_react326.createContext({
@@ -532291,7 +532330,7 @@ function Onboarding({
532291
532330
  }, undefined, true, undefined, this);
532292
532331
  }
532293
532332
  function SkippableStep(t0) {
532294
- const $2 = import_react_compiler_runtime377.c(4);
532333
+ const $2 = import_react_compiler_runtime376.c(4);
532295
532334
  const {
532296
532335
  skip,
532297
532336
  onSkip,
@@ -532320,7 +532359,7 @@ function SkippableStep(t0) {
532320
532359
  }
532321
532360
  return children;
532322
532361
  }
532323
- var import_react_compiler_runtime377, import_react327, jsx_dev_runtime479;
532362
+ var import_react_compiler_runtime376, import_react327, jsx_dev_runtime479;
532324
532363
  var init_Onboarding = __esm(() => {
532325
532364
  init_analytics();
532326
532365
  init_terminalSetup();
@@ -532339,7 +532378,7 @@ var init_Onboarding = __esm(() => {
532339
532378
  init_PressEnterToContinue();
532340
532379
  init_ThemePicker();
532341
532380
  init_OrderedList();
532342
- import_react_compiler_runtime377 = __toESM(require_dist4(), 1);
532381
+ import_react_compiler_runtime376 = __toESM(require_dist4(), 1);
532343
532382
  import_react327 = __toESM(require_react(), 1);
532344
532383
  jsx_dev_runtime479 = __toESM(require_jsx_dev_runtime(), 1);
532345
532384
  });
@@ -532483,7 +532522,7 @@ __export(exports_TrustDialog, {
532483
532522
  });
532484
532523
  import { homedir as homedir38 } from "os";
532485
532524
  function TrustDialog(t0) {
532486
- const $2 = import_react_compiler_runtime378.c(33);
532525
+ const $2 = import_react_compiler_runtime377.c(33);
532487
532526
  const {
532488
532527
  onDone,
532489
532528
  commands
@@ -532798,7 +532837,7 @@ function _temp2101(command8) {
532798
532837
  function _temp303(tool) {
532799
532838
  return tool === BASH_TOOL_NAME || tool.startsWith(BASH_TOOL_NAME + "(");
532800
532839
  }
532801
- var import_react_compiler_runtime378, import_react328, jsx_dev_runtime480;
532840
+ var import_react_compiler_runtime377, import_react328, jsx_dev_runtime480;
532802
532841
  var init_TrustDialog = __esm(() => {
532803
532842
  init_analytics();
532804
532843
  init_state();
@@ -532813,7 +532852,7 @@ var init_TrustDialog = __esm(() => {
532813
532852
  init_CustomSelect();
532814
532853
  init_PermissionDialog();
532815
532854
  init_utils13();
532816
- import_react_compiler_runtime378 = __toESM(require_dist4(), 1);
532855
+ import_react_compiler_runtime377 = __toESM(require_dist4(), 1);
532817
532856
  import_react328 = __toESM(require_react(), 1);
532818
532857
  jsx_dev_runtime480 = __toESM(require_jsx_dev_runtime(), 1);
532819
532858
  });
@@ -533262,7 +533301,7 @@ __export(exports_BypassPermissionsModeDialog, {
533262
533301
  BypassPermissionsModeDialog: () => BypassPermissionsModeDialog
533263
533302
  });
533264
533303
  function BypassPermissionsModeDialog(t0) {
533265
- const $2 = import_react_compiler_runtime379.c(7);
533304
+ const $2 = import_react_compiler_runtime378.c(7);
533266
533305
  const {
533267
533306
  onAccept
533268
533307
  } = t0;
@@ -533364,7 +533403,7 @@ function _temp2102() {
533364
533403
  function _temp304() {
533365
533404
  logEvent("tengu_bypass_permissions_mode_dialog_shown", {});
533366
533405
  }
533367
- var import_react_compiler_runtime379, import_react330, jsx_dev_runtime482;
533406
+ var import_react_compiler_runtime378, import_react330, jsx_dev_runtime482;
533368
533407
  var init_BypassPermissionsModeDialog = __esm(() => {
533369
533408
  init_analytics();
533370
533409
  init_ink2();
@@ -533372,7 +533411,7 @@ var init_BypassPermissionsModeDialog = __esm(() => {
533372
533411
  init_settings2();
533373
533412
  init_CustomSelect();
533374
533413
  init_Dialog();
533375
- import_react_compiler_runtime379 = __toESM(require_dist4(), 1);
533414
+ import_react_compiler_runtime378 = __toESM(require_dist4(), 1);
533376
533415
  import_react330 = __toESM(require_react(), 1);
533377
533416
  jsx_dev_runtime482 = __toESM(require_jsx_dev_runtime(), 1);
533378
533417
  });
@@ -533383,7 +533422,7 @@ __export(exports_ClaudeInChromeOnboarding, {
533383
533422
  ClaudeInChromeOnboarding: () => ClaudeInChromeOnboarding
533384
533423
  });
533385
533424
  function ClaudeInChromeOnboarding(t0) {
533386
- const $2 = import_react_compiler_runtime380.c(20);
533425
+ const $2 = import_react_compiler_runtime379.c(20);
533387
533426
  const {
533388
533427
  onDone
533389
533428
  } = t0;
@@ -533549,14 +533588,14 @@ function _temp305(current) {
533549
533588
  hasCompletedClaudeInChromeOnboarding: true
533550
533589
  };
533551
533590
  }
533552
- var import_react_compiler_runtime380, import_react331, jsx_dev_runtime483, CHROME_EXTENSION_URL2 = "https://claude.ai/chrome", CHROME_PERMISSIONS_URL2 = "https://clau.de/chrome/permissions";
533591
+ var import_react_compiler_runtime379, import_react331, jsx_dev_runtime483, CHROME_EXTENSION_URL2 = "https://claude.ai/chrome", CHROME_PERMISSIONS_URL2 = "https://clau.de/chrome/permissions";
533553
533592
  var init_ClaudeInChromeOnboarding = __esm(() => {
533554
533593
  init_analytics();
533555
533594
  init_ink2();
533556
533595
  init_setup2();
533557
533596
  init_config2();
533558
533597
  init_Dialog();
533559
- import_react_compiler_runtime380 = __toESM(require_dist4(), 1);
533598
+ import_react_compiler_runtime379 = __toESM(require_dist4(), 1);
533560
533599
  import_react331 = __toESM(require_react(), 1);
533561
533600
  jsx_dev_runtime483 = __toESM(require_jsx_dev_runtime(), 1);
533562
533601
  });
@@ -533822,7 +533861,7 @@ __export(exports_InvalidSettingsDialog, {
533822
533861
  InvalidSettingsDialog: () => InvalidSettingsDialog
533823
533862
  });
533824
533863
  function InvalidSettingsDialog(t0) {
533825
- const $2 = import_react_compiler_runtime381.c(13);
533864
+ const $2 = import_react_compiler_runtime380.c(13);
533826
533865
  const {
533827
533866
  settingsErrors,
533828
533867
  onContinue,
@@ -533909,19 +533948,19 @@ function InvalidSettingsDialog(t0) {
533909
533948
  }
533910
533949
  return t6;
533911
533950
  }
533912
- var import_react_compiler_runtime381, jsx_dev_runtime485;
533951
+ var import_react_compiler_runtime380, jsx_dev_runtime485;
533913
533952
  var init_InvalidSettingsDialog = __esm(() => {
533914
533953
  init_ink2();
533915
533954
  init_CustomSelect();
533916
533955
  init_Dialog();
533917
533956
  init_ValidationErrorsList();
533918
- import_react_compiler_runtime381 = __toESM(require_dist4(), 1);
533957
+ import_react_compiler_runtime380 = __toESM(require_dist4(), 1);
533919
533958
  jsx_dev_runtime485 = __toESM(require_jsx_dev_runtime(), 1);
533920
533959
  });
533921
533960
 
533922
533961
  // src/hooks/useTeleportResume.tsx
533923
533962
  function useTeleportResume(source) {
533924
- const $2 = import_react_compiler_runtime382.c(8);
533963
+ const $2 = import_react_compiler_runtime381.c(8);
533925
533964
  const [isResuming, setIsResuming] = import_react332.useState(false);
533926
533965
  const [error42, setError] = import_react332.useState(null);
533927
533966
  const [selectedSession, setSelectedSession] = import_react332.useState(null);
@@ -533989,13 +534028,13 @@ function useTeleportResume(source) {
533989
534028
  }
533990
534029
  return t2;
533991
534030
  }
533992
- var import_react_compiler_runtime382, import_react332;
534031
+ var import_react_compiler_runtime381, import_react332;
533993
534032
  var init_useTeleportResume = __esm(() => {
533994
534033
  init_state();
533995
534034
  init_analytics();
533996
534035
  init_errors();
533997
534036
  init_teleport();
533998
- import_react_compiler_runtime382 = __toESM(require_dist4(), 1);
534037
+ import_react_compiler_runtime381 = __toESM(require_dist4(), 1);
533999
534038
  import_react332 = __toESM(require_react(), 1);
534000
534039
  });
534001
534040
 
@@ -534369,7 +534408,7 @@ __export(exports_TeleportResumeWrapper, {
534369
534408
  TeleportResumeWrapper: () => TeleportResumeWrapper
534370
534409
  });
534371
534410
  function TeleportResumeWrapper(t0) {
534372
- const $2 = import_react_compiler_runtime383.c(25);
534411
+ const $2 = import_react_compiler_runtime382.c(25);
534373
534412
  const {
534374
534413
  onComplete,
534375
534414
  onCancel,
@@ -534567,7 +534606,7 @@ function TeleportResumeWrapper(t0) {
534567
534606
  }
534568
534607
  return t8;
534569
534608
  }
534570
- var import_react_compiler_runtime383, import_react334, jsx_dev_runtime487;
534609
+ var import_react_compiler_runtime382, import_react334, jsx_dev_runtime487;
534571
534610
  var init_TeleportResumeWrapper = __esm(() => {
534572
534611
  init_analytics();
534573
534612
  init_useTeleportResume();
@@ -534575,7 +534614,7 @@ var init_TeleportResumeWrapper = __esm(() => {
534575
534614
  init_useKeybinding();
534576
534615
  init_ResumeTask();
534577
534616
  init_Spinner2();
534578
- import_react_compiler_runtime383 = __toESM(require_dist4(), 1);
534617
+ import_react_compiler_runtime382 = __toESM(require_dist4(), 1);
534579
534618
  import_react334 = __toESM(require_react(), 1);
534580
534619
  jsx_dev_runtime487 = __toESM(require_jsx_dev_runtime(), 1);
534581
534620
  });
@@ -534586,7 +534625,7 @@ __export(exports_TeleportRepoMismatchDialog, {
534586
534625
  TeleportRepoMismatchDialog: () => TeleportRepoMismatchDialog
534587
534626
  });
534588
534627
  function TeleportRepoMismatchDialog(t0) {
534589
- const $2 = import_react_compiler_runtime384.c(18);
534628
+ const $2 = import_react_compiler_runtime383.c(18);
534590
534629
  const {
534591
534630
  targetRepo,
534592
534631
  initialPaths,
@@ -534737,7 +534776,7 @@ function _temp306(path23) {
534737
534776
  value: path23
534738
534777
  };
534739
534778
  }
534740
- var import_react_compiler_runtime384, import_react335, jsx_dev_runtime488;
534779
+ var import_react_compiler_runtime383, import_react335, jsx_dev_runtime488;
534741
534780
  var init_TeleportRepoMismatchDialog = __esm(() => {
534742
534781
  init_ink2();
534743
534782
  init_file();
@@ -534745,7 +534784,7 @@ var init_TeleportRepoMismatchDialog = __esm(() => {
534745
534784
  init_CustomSelect();
534746
534785
  init_Dialog();
534747
534786
  init_Spinner2();
534748
- import_react_compiler_runtime384 = __toESM(require_dist4(), 1);
534787
+ import_react_compiler_runtime383 = __toESM(require_dist4(), 1);
534749
534788
  import_react335 = __toESM(require_react(), 1);
534750
534789
  jsx_dev_runtime488 = __toESM(require_jsx_dev_runtime(), 1);
534751
534790
  });
@@ -535009,7 +535048,7 @@ function ResumeConversation({
535009
535048
  }, undefined, false, undefined, this);
535010
535049
  }
535011
535050
  function NoConversationsMessage() {
535012
- const $2 = import_react_compiler_runtime385.c(2);
535051
+ const $2 = import_react_compiler_runtime384.c(2);
535013
535052
  let t0;
535014
535053
  if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
535015
535054
  t0 = {
@@ -535044,7 +535083,7 @@ function _temp307() {
535044
535083
  process.exit(1);
535045
535084
  }
535046
535085
  function CrossProjectMessage(t0) {
535047
- const $2 = import_react_compiler_runtime385.c(8);
535086
+ const $2 = import_react_compiler_runtime384.c(8);
535048
535087
  const {
535049
535088
  command: command8
535050
535089
  } = t0;
@@ -535128,7 +535167,7 @@ function _temp359() {
535128
535167
  function _temp2103() {
535129
535168
  process.exit(0);
535130
535169
  }
535131
- var import_react_compiler_runtime385, import_react336, jsx_dev_runtime489;
535170
+ var import_react_compiler_runtime384, import_react336, jsx_dev_runtime489;
535132
535171
  var init_ResumeConversation = __esm(() => {
535133
535172
  init_useTerminalSize();
535134
535173
  init_state();
@@ -535151,7 +535190,7 @@ var init_ResumeConversation = __esm(() => {
535151
535190
  init_sessionRestore();
535152
535191
  init_sessionStorage();
535153
535192
  init_REPL();
535154
- import_react_compiler_runtime385 = __toESM(require_dist4(), 1);
535193
+ import_react_compiler_runtime384 = __toESM(require_dist4(), 1);
535155
535194
  import_react336 = __toESM(require_react(), 1);
535156
535195
  jsx_dev_runtime489 = __toESM(require_jsx_dev_runtime(), 1);
535157
535196
  });
@@ -547332,7 +547371,7 @@ __export(exports_TeleportProgress, {
547332
547371
  TeleportProgress: () => TeleportProgress
547333
547372
  });
547334
547373
  function TeleportProgress(t0) {
547335
- const $2 = import_react_compiler_runtime386.c(16);
547374
+ const $2 = import_react_compiler_runtime385.c(16);
547336
547375
  const {
547337
547376
  currentStep,
547338
547377
  sessionId
@@ -547485,13 +547524,13 @@ async function teleportWithProgress(root2, sessionId) {
547485
547524
  branchName
547486
547525
  };
547487
547526
  }
547488
- var import_react_compiler_runtime386, import_react337, jsx_dev_runtime491, SPINNER_FRAMES3, STEPS;
547527
+ var import_react_compiler_runtime385, import_react337, jsx_dev_runtime491, SPINNER_FRAMES3, STEPS;
547489
547528
  var init_TeleportProgress = __esm(() => {
547490
547529
  init_figures();
547491
547530
  init_ink2();
547492
547531
  init_AppState();
547493
547532
  init_teleport();
547494
- import_react_compiler_runtime386 = __toESM(require_dist4(), 1);
547533
+ import_react_compiler_runtime385 = __toESM(require_dist4(), 1);
547495
547534
  import_react337 = __toESM(require_react(), 1);
547496
547535
  jsx_dev_runtime491 = __toESM(require_jsx_dev_runtime(), 1);
547497
547536
  SPINNER_FRAMES3 = ["◐", "◓", "◑", "◒"];
@@ -547512,7 +547551,7 @@ var init_TeleportProgress = __esm(() => {
547512
547551
 
547513
547552
  // src/components/MCPServerDesktopImportDialog.tsx
547514
547553
  function MCPServerDesktopImportDialog(t0) {
547515
- const $2 = import_react_compiler_runtime387.c(36);
547554
+ const $2 = import_react_compiler_runtime386.c(36);
547516
547555
  const {
547517
547556
  servers,
547518
547557
  scope,
@@ -547748,7 +547787,7 @@ No servers were imported.`);
547748
547787
  }
547749
547788
  return t18;
547750
547789
  }
547751
- var import_react_compiler_runtime387, import_react338, jsx_dev_runtime492;
547790
+ var import_react_compiler_runtime386, import_react338, jsx_dev_runtime492;
547752
547791
  var init_MCPServerDesktopImportDialog = __esm(() => {
547753
547792
  init_gracefulShutdown();
547754
547793
  init_ink2();
@@ -547759,7 +547798,7 @@ var init_MCPServerDesktopImportDialog = __esm(() => {
547759
547798
  init_Byline();
547760
547799
  init_Dialog();
547761
547800
  init_KeyboardShortcutHint();
547762
- import_react_compiler_runtime387 = __toESM(require_dist4(), 1);
547801
+ import_react_compiler_runtime386 = __toESM(require_dist4(), 1);
547763
547802
  import_react338 = __toESM(require_react(), 1);
547764
547803
  jsx_dev_runtime492 = __toESM(require_jsx_dev_runtime(), 1);
547765
547804
  });
@@ -549275,7 +549314,7 @@ function getInstallationPath2() {
549275
549314
  return "~/.local/bin/claude";
549276
549315
  }
549277
549316
  function SetupNotes(t0) {
549278
- const $2 = import_react_compiler_runtime388.c(5);
549317
+ const $2 = import_react_compiler_runtime387.c(5);
549279
549318
  const {
549280
549319
  messages
549281
549320
  } = t0;
@@ -549580,7 +549619,7 @@ function Install({
549580
549619
  ]
549581
549620
  }, undefined, true, undefined, this);
549582
549621
  }
549583
- var import_react_compiler_runtime388, import_react339, jsx_dev_runtime494, install;
549622
+ var import_react_compiler_runtime387, import_react339, jsx_dev_runtime494, install;
549584
549623
  var init_install = __esm(() => {
549585
549624
  init_analytics();
549586
549625
  init_StatusIcon();
@@ -549590,7 +549629,7 @@ var init_install = __esm(() => {
549590
549629
  init_errors();
549591
549630
  init_nativeInstaller();
549592
549631
  init_settings2();
549593
- import_react_compiler_runtime388 = __toESM(require_dist4(), 1);
549632
+ import_react_compiler_runtime387 = __toESM(require_dist4(), 1);
549594
549633
  import_react339 = __toESM(require_react(), 1);
549595
549634
  jsx_dev_runtime494 = __toESM(require_jsx_dev_runtime(), 1);
549596
549635
  install = {
@@ -549668,7 +549707,7 @@ async function setupTokenHandler(root2) {
549668
549707
  process.exit(0);
549669
549708
  }
549670
549709
  function DoctorWithPlugins(t0) {
549671
- const $2 = import_react_compiler_runtime389.c(2);
549710
+ const $2 = import_react_compiler_runtime388.c(2);
549672
549711
  const {
549673
549712
  onDone
549674
549713
  } = t0;
@@ -549728,7 +549767,7 @@ async function installHandler(target, options2) {
549728
549767
  }, {}, args);
549729
549768
  });
549730
549769
  }
549731
- var import_react_compiler_runtime389, import_react340, jsx_dev_runtime495, DoctorLazy;
549770
+ var import_react_compiler_runtime388, import_react340, jsx_dev_runtime495, DoctorLazy;
549732
549771
  var init_util4 = __esm(() => {
549733
549772
  init_WelcomeV2();
549734
549773
  init_useManagePlugins();
@@ -549739,7 +549778,7 @@ var init_util4 = __esm(() => {
549739
549778
  init_AppState();
549740
549779
  init_onChangeAppState();
549741
549780
  init_auth2();
549742
- import_react_compiler_runtime389 = __toESM(require_dist4(), 1);
549781
+ import_react_compiler_runtime388 = __toESM(require_dist4(), 1);
549743
549782
  import_react340 = __toESM(require_react(), 1);
549744
549783
  jsx_dev_runtime495 = __toESM(require_jsx_dev_runtime(), 1);
549745
549784
  DoctorLazy = import_react340.default.lazy(() => Promise.resolve().then(() => (init_Doctor(), exports_Doctor)).then((m) => ({
@@ -552120,7 +552159,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
552120
552159
  pendingHookMessages
552121
552160
  }, renderAndRun);
552122
552161
  }
552123
- }).version("0.1.3 (Open Claude)", "-v, --version", "Output the version number");
552162
+ }).version("0.1.4 (Open Claude)", "-v, --version", "Output the version number");
552124
552163
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
552125
552164
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
552126
552165
  if (canUserConfigureAdvisor()) {
@@ -552679,7 +552718,7 @@ function validateProviderEnvOrExit() {
552679
552718
  async function main2() {
552680
552719
  const args = process.argv.slice(2);
552681
552720
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
552682
- console.log(`${"0.1.3"} (PointCode)`);
552721
+ console.log(`${"0.1.4"} (PointCode)`);
552683
552722
  return;
552684
552723
  }
552685
552724
  validateProviderEnvOrExit();
@@ -552766,4 +552805,4 @@ async function main2() {
552766
552805
  }
552767
552806
  main2();
552768
552807
 
552769
- //# debugId=53DC4B04B092D38164756E2164756E21
552808
+ //# debugId=8E8ABDC9A8B939B064756E2164756E21