pointcode 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +583 -525
- 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 = [
|
|
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 || "
|
|
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
|
|
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 (
|
|
109501
|
-
|
|
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 "
|
|
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":
|
|
@@ -109638,10 +109655,19 @@ function parseUserSpecifiedModel(modelInput) {
|
|
|
109638
109655
|
case "opusplan":
|
|
109639
109656
|
return getDefaultSonnetModel() + (has1mTag ? "[1m]" : "");
|
|
109640
109657
|
case "sonnet":
|
|
109658
|
+
if (getAPIProvider() === "openai") {
|
|
109659
|
+
return modelInputTrimmed;
|
|
109660
|
+
}
|
|
109641
109661
|
return getDefaultSonnetModel() + (has1mTag ? "[1m]" : "");
|
|
109642
109662
|
case "haiku":
|
|
109663
|
+
if (getAPIProvider() === "openai") {
|
|
109664
|
+
return modelInputTrimmed;
|
|
109665
|
+
}
|
|
109643
109666
|
return getDefaultHaikuModel() + (has1mTag ? "[1m]" : "");
|
|
109644
109667
|
case "opus":
|
|
109668
|
+
if (getAPIProvider() === "openai") {
|
|
109669
|
+
return modelInputTrimmed;
|
|
109670
|
+
}
|
|
109645
109671
|
return getDefaultOpusModel() + (has1mTag ? "[1m]" : "");
|
|
109646
109672
|
case "best":
|
|
109647
109673
|
return getBestModel();
|
|
@@ -123088,7 +123114,7 @@ var init_metadata = __esm(() => {
|
|
|
123088
123114
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
123089
123115
|
version: "99.0.0",
|
|
123090
123116
|
versionBase: getVersionBase(),
|
|
123091
|
-
buildTime: "2026-04-02T16:
|
|
123117
|
+
buildTime: "2026-04-02T16:51:00.462Z",
|
|
123092
123118
|
deploymentEnvironment: env3.detectDeploymentEnvironment(),
|
|
123093
123119
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
123094
123120
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -349972,6 +349998,59 @@ function getKnownModelOption(model) {
|
|
|
349972
349998
|
};
|
|
349973
349999
|
}
|
|
349974
350000
|
function getModelOptions(fastMode = false) {
|
|
350001
|
+
const pointCodeOptions = [
|
|
350002
|
+
{
|
|
350003
|
+
value: null,
|
|
350004
|
+
label: "Default (recommended)",
|
|
350005
|
+
description: "Use the default model (currently qwen3.5-plus)"
|
|
350006
|
+
},
|
|
350007
|
+
{
|
|
350008
|
+
value: "qwen3.5-plus",
|
|
350009
|
+
label: "Qwen 3.5 Plus",
|
|
350010
|
+
description: "Tongyi Qwen · balanced quality and speed"
|
|
350011
|
+
},
|
|
350012
|
+
{
|
|
350013
|
+
value: "qwen3.5-flash",
|
|
350014
|
+
label: "Qwen 3.5 Flash",
|
|
350015
|
+
description: "Tongyi Qwen · fastest for quick tasks"
|
|
350016
|
+
},
|
|
350017
|
+
{
|
|
350018
|
+
value: "deepseek-chat",
|
|
350019
|
+
label: "DeepSeek Chat",
|
|
350020
|
+
description: "DeepSeek general model"
|
|
350021
|
+
},
|
|
350022
|
+
{
|
|
350023
|
+
value: "deepseek-reasoner",
|
|
350024
|
+
label: "DeepSeek Reasoner",
|
|
350025
|
+
description: "DeepSeek reasoning-focused model"
|
|
350026
|
+
},
|
|
350027
|
+
{
|
|
350028
|
+
value: "glm-5",
|
|
350029
|
+
label: "GLM-5",
|
|
350030
|
+
description: "Zhipu GLM flagship model"
|
|
350031
|
+
},
|
|
350032
|
+
{
|
|
350033
|
+
value: "glm-5-turbo",
|
|
350034
|
+
label: "GLM-5 Turbo",
|
|
350035
|
+
description: "Zhipu GLM fast model"
|
|
350036
|
+
},
|
|
350037
|
+
{
|
|
350038
|
+
value: "mimo-v2-pro",
|
|
350039
|
+
label: "MiMo V2 Pro",
|
|
350040
|
+
description: "Xiaomi MiMo high capability model"
|
|
350041
|
+
},
|
|
350042
|
+
{
|
|
350043
|
+
value: "mimo-v2-flash",
|
|
350044
|
+
label: "MiMo V2 Flash",
|
|
350045
|
+
description: "Xiaomi MiMo fast model"
|
|
350046
|
+
},
|
|
350047
|
+
{
|
|
350048
|
+
value: "opus",
|
|
350049
|
+
label: "Opus",
|
|
350050
|
+
description: "Anthropic Opus for complex reasoning"
|
|
350051
|
+
}
|
|
350052
|
+
];
|
|
350053
|
+
return filterModelOptionsByAllowlist(pointCodeOptions);
|
|
349975
350054
|
if (getAPIProvider() === "openai") {
|
|
349976
350055
|
const presetOptions = getOpenAIPresetOptions();
|
|
349977
350056
|
const remoteOptions = getCachedOpenAIModelOptions(presetOptions);
|
|
@@ -364117,7 +364196,7 @@ function getAnthropicEnvMetadata() {
|
|
|
364117
364196
|
function getBuildAgeMinutes() {
|
|
364118
364197
|
if (false)
|
|
364119
364198
|
;
|
|
364120
|
-
const buildTime = new Date("2026-04-02T16:
|
|
364199
|
+
const buildTime = new Date("2026-04-02T16:51:00.462Z").getTime();
|
|
364121
364200
|
if (isNaN(buildTime))
|
|
364122
364201
|
return;
|
|
364123
364202
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -392204,7 +392283,7 @@ function ModelPicker(t0) {
|
|
|
392204
392283
|
} else {
|
|
392205
392284
|
t15 = $2[41];
|
|
392206
392285
|
}
|
|
392207
|
-
const t16 = headerText ?? "Switch between
|
|
392286
|
+
const t16 = headerText ?? "Switch between PointCode models. Applies to this session and future PointCode sessions. For other/previous model names, specify with --model.";
|
|
392208
392287
|
let t17;
|
|
392209
392288
|
if ($2[42] !== t16) {
|
|
392210
392289
|
t17 = /* @__PURE__ */ jsx_dev_runtime172.jsxDEV(ThemedText, {
|
|
@@ -428413,7 +428492,7 @@ function getRecentActivitySync() {
|
|
|
428413
428492
|
return cachedActivity;
|
|
428414
428493
|
}
|
|
428415
428494
|
function getLogoDisplayData() {
|
|
428416
|
-
const version2 = process.env.DEMO_VERSION ?? "0.1.
|
|
428495
|
+
const version2 = process.env.DEMO_VERSION ?? "0.1.5" ?? "99.0.0";
|
|
428417
428496
|
const serverUrl = getDirectConnectServerUrl();
|
|
428418
428497
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
428419
428498
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -458213,7 +458292,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
458213
458292
|
var call54 = async () => {
|
|
458214
458293
|
return {
|
|
458215
458294
|
type: "text",
|
|
458216
|
-
value: `${"99.0.0"} (built ${"2026-04-02T16:
|
|
458295
|
+
value: `${"99.0.0"} (built ${"2026-04-02T16:51:00.462Z"})`
|
|
458217
458296
|
};
|
|
458218
458297
|
}, version2, version_default;
|
|
458219
458298
|
var init_version = __esm(() => {
|
|
@@ -461233,22 +461312,29 @@ var exports_model2 = {};
|
|
|
461233
461312
|
__export(exports_model2, {
|
|
461234
461313
|
call: () => call61
|
|
461235
461314
|
});
|
|
461236
|
-
|
|
461237
|
-
if (
|
|
461315
|
+
function resolveBaseUrlForModel(model) {
|
|
461316
|
+
if (!model) {
|
|
461317
|
+
return process.env.OPENAI_BASE_URL;
|
|
461318
|
+
}
|
|
461319
|
+
const provider = getCNProviderList().find((item) => item.models.some((m) => m.id === model));
|
|
461320
|
+
if (provider) {
|
|
461321
|
+
return provider.baseUrl;
|
|
461322
|
+
}
|
|
461323
|
+
return process.env.OPENAI_BASE_URL;
|
|
461324
|
+
}
|
|
461325
|
+
async function saveModelApiKey(value, onDone, modelValue) {
|
|
461326
|
+
try {
|
|
461327
|
+
const openAIModel = modelValue ?? process.env.OPENAI_MODEL ?? "qwen3.5-plus";
|
|
461328
|
+
const openAIBaseUrl = resolveBaseUrlForModel(openAIModel) ?? "https://dashscope.aliyuncs.com/compatible-mode/v1";
|
|
461238
461329
|
const profile = saveOpenAIProviderProfile({
|
|
461239
|
-
OPENAI_BASE_URL:
|
|
461240
|
-
OPENAI_MODEL:
|
|
461330
|
+
OPENAI_BASE_URL: openAIBaseUrl,
|
|
461331
|
+
OPENAI_MODEL: openAIModel,
|
|
461241
461332
|
OPENAI_API_KEY: value
|
|
461242
461333
|
});
|
|
461243
461334
|
applyProviderProfileToProcessEnv(profile);
|
|
461244
|
-
|
|
461245
|
-
|
|
461246
|
-
});
|
|
461247
|
-
return;
|
|
461248
|
-
}
|
|
461249
|
-
try {
|
|
461335
|
+
process.env.CLAUDE_CODE_USE_OPENAI = "1";
|
|
461336
|
+
delete process.env.ANTHROPIC_API_KEY;
|
|
461250
461337
|
await saveApiKey(value);
|
|
461251
|
-
process.env.ANTHROPIC_API_KEY = value;
|
|
461252
461338
|
onDone("API key saved. You can now run /model to choose a model and start using PointCode.", {
|
|
461253
461339
|
display: "system"
|
|
461254
461340
|
});
|
|
@@ -461259,7 +461345,8 @@ async function saveModelApiKey(value, onDone) {
|
|
|
461259
461345
|
}
|
|
461260
461346
|
}
|
|
461261
461347
|
function EnterApiKeyAndSave({
|
|
461262
|
-
onDone
|
|
461348
|
+
onDone,
|
|
461349
|
+
modelValue
|
|
461263
461350
|
}) {
|
|
461264
461351
|
const terminalSize = useTerminalSize();
|
|
461265
461352
|
const [apiKey, setApiKey] = import_react194.useState("");
|
|
@@ -461271,7 +461358,7 @@ function EnterApiKeyAndSave({
|
|
|
461271
461358
|
setErrorText("API key cannot be empty.");
|
|
461272
461359
|
return;
|
|
461273
461360
|
}
|
|
461274
|
-
saveModelApiKey(value, onDone);
|
|
461361
|
+
saveModelApiKey(value, onDone, modelValue);
|
|
461275
461362
|
}
|
|
461276
461363
|
return /* @__PURE__ */ jsx_dev_runtime352.jsxDEV(ThemedBox_default, {
|
|
461277
461364
|
flexDirection: "column",
|
|
@@ -461324,7 +461411,6 @@ function EnterApiKeyAndSave({
|
|
|
461324
461411
|
}, undefined, true, undefined, this);
|
|
461325
461412
|
}
|
|
461326
461413
|
function ModelPickerWrapper(t0) {
|
|
461327
|
-
const $2 = import_react_compiler_runtime272.c(18);
|
|
461328
461414
|
const {
|
|
461329
461415
|
onDone
|
|
461330
461416
|
} = t0;
|
|
@@ -461332,120 +461418,92 @@ function ModelPickerWrapper(t0) {
|
|
|
461332
461418
|
const mainLoopModelForSession = useAppState(_temp272);
|
|
461333
461419
|
const isFastMode = useAppState(_temp346);
|
|
461334
461420
|
const setAppState = useSetAppState();
|
|
461335
|
-
|
|
461336
|
-
|
|
461337
|
-
|
|
461338
|
-
|
|
461339
|
-
|
|
461340
|
-
|
|
461341
|
-
|
|
461342
|
-
|
|
461421
|
+
const [pendingSelection, setPendingSelection] = import_react194.useState(null);
|
|
461422
|
+
function applyModelAndClose(model, effort, includeKeySavedPrefix = false) {
|
|
461423
|
+
setAppState((prev) => ({
|
|
461424
|
+
...prev,
|
|
461425
|
+
mainLoopModel: model,
|
|
461426
|
+
mainLoopModelForSession: null
|
|
461427
|
+
}));
|
|
461428
|
+
let message = `${includeKeySavedPrefix ? "API key saved. " : ""}Set model to ${source_default.bold(renderModelLabel(model))}`;
|
|
461429
|
+
if (effort !== undefined) {
|
|
461430
|
+
message = message + ` with ${source_default.bold(effort)} effort`;
|
|
461431
|
+
}
|
|
461432
|
+
let wasFastModeToggledOn = undefined;
|
|
461433
|
+
if (isFastModeEnabled()) {
|
|
461434
|
+
clearFastModeCooldown();
|
|
461435
|
+
if (!isFastModeSupportedByModel(model) && isFastMode) {
|
|
461436
|
+
setAppState(_temp435);
|
|
461437
|
+
wasFastModeToggledOn = false;
|
|
461438
|
+
} else if (isFastModeSupportedByModel(model) && isFastModeAvailable() && isFastMode) {
|
|
461439
|
+
message = message + " · Fast mode ON";
|
|
461440
|
+
wasFastModeToggledOn = true;
|
|
461441
|
+
}
|
|
461442
|
+
}
|
|
461443
|
+
if (isBilledAsExtraUsage(model, wasFastModeToggledOn === true, isOpus1mMergeEnabled())) {
|
|
461444
|
+
message = message + " · Billed as extra usage";
|
|
461445
|
+
}
|
|
461446
|
+
if (wasFastModeToggledOn === false) {
|
|
461447
|
+
message = message + " · Fast mode OFF";
|
|
461448
|
+
}
|
|
461449
|
+
onDone(message);
|
|
461450
|
+
}
|
|
461451
|
+
function handleCancel() {
|
|
461452
|
+
logEvent("tengu_model_command_menu", {
|
|
461453
|
+
action: "cancel"
|
|
461454
|
+
});
|
|
461455
|
+
const displayModel = renderModelLabel(mainLoopModel);
|
|
461456
|
+
onDone(`Kept model as ${source_default.bold(displayModel)}`, {
|
|
461457
|
+
display: "system"
|
|
461458
|
+
});
|
|
461459
|
+
}
|
|
461460
|
+
function handleSelect(model, effort) {
|
|
461461
|
+
logEvent("tengu_model_command_menu", {
|
|
461462
|
+
action: model,
|
|
461463
|
+
from_model: mainLoopModel,
|
|
461464
|
+
to_model: model
|
|
461465
|
+
});
|
|
461466
|
+
if (model === "__custom__") {
|
|
461467
|
+
onDone("Custom model placeholder selected. Run /model <model-name> (for example: /model qwen3.5-plus).", {
|
|
461343
461468
|
display: "system"
|
|
461344
461469
|
});
|
|
461345
|
-
|
|
461346
|
-
|
|
461347
|
-
|
|
461348
|
-
|
|
461349
|
-
|
|
461350
|
-
|
|
461351
|
-
|
|
461352
|
-
|
|
461353
|
-
|
|
461354
|
-
|
|
461355
|
-
t2 = function handleSelect2(model, effort) {
|
|
461356
|
-
logEvent("tengu_model_command_menu", {
|
|
461357
|
-
action: model,
|
|
461358
|
-
from_model: mainLoopModel,
|
|
461359
|
-
to_model: model
|
|
461470
|
+
return;
|
|
461471
|
+
}
|
|
461472
|
+
let selectedModel = model;
|
|
461473
|
+
if (selectedModel !== null) {
|
|
461474
|
+
selectedModel = switchOpenAIModel(selectedModel);
|
|
461475
|
+
}
|
|
461476
|
+
if (selectedModel !== null) {
|
|
461477
|
+
setPendingSelection({
|
|
461478
|
+
model: selectedModel,
|
|
461479
|
+
effort
|
|
461360
461480
|
});
|
|
461361
|
-
|
|
461362
|
-
|
|
461363
|
-
|
|
461364
|
-
|
|
461365
|
-
|
|
461366
|
-
|
|
461367
|
-
|
|
461368
|
-
|
|
461369
|
-
|
|
461370
|
-
|
|
461371
|
-
|
|
461372
|
-
|
|
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
|
-
}
|
|
461481
|
+
return;
|
|
461482
|
+
}
|
|
461483
|
+
applyModelAndClose(selectedModel, effort);
|
|
461484
|
+
}
|
|
461485
|
+
const showFastModeNotice = isFastModeEnabled() && isFastMode && isFastModeSupportedByModel(mainLoopModel) && isFastModeAvailable();
|
|
461486
|
+
if (pendingSelection) {
|
|
461487
|
+
return /* @__PURE__ */ jsx_dev_runtime352.jsxDEV(EnterApiKeyAndSave, {
|
|
461488
|
+
modelValue: pendingSelection.model,
|
|
461489
|
+
onDone: (result, options2) => {
|
|
461490
|
+
if (!result || !result.startsWith("API key saved")) {
|
|
461491
|
+
onDone(result, options2);
|
|
461492
|
+
return;
|
|
461398
461493
|
}
|
|
461494
|
+
applyModelAndClose(pendingSelection.model, pendingSelection.effort, true);
|
|
461399
461495
|
}
|
|
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
461496
|
}, 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
461497
|
}
|
|
461448
|
-
return
|
|
461498
|
+
return /* @__PURE__ */ jsx_dev_runtime352.jsxDEV(ModelPicker, {
|
|
461499
|
+
initial: mainLoopModel,
|
|
461500
|
+
sessionModel: mainLoopModelForSession,
|
|
461501
|
+
onSelect: handleSelect,
|
|
461502
|
+
onCancel: handleCancel,
|
|
461503
|
+
isStandaloneCommand: true,
|
|
461504
|
+
showFastModeNotice,
|
|
461505
|
+
headerText: "Select a model. After selection, enter an API key to confirm."
|
|
461506
|
+
}, undefined, false, undefined, this);
|
|
461449
461507
|
}
|
|
461450
461508
|
function _temp435(prev_0) {
|
|
461451
461509
|
return {
|
|
@@ -461625,7 +461683,7 @@ function renderModelLabel(model) {
|
|
|
461625
461683
|
const rendered = renderDefaultModelSetting(model ?? getDefaultMainLoopModelSetting());
|
|
461626
461684
|
return model === null ? `${rendered} (default)` : rendered;
|
|
461627
461685
|
}
|
|
461628
|
-
var
|
|
461686
|
+
var React110, import_react194, jsx_dev_runtime352, call61 = async (onDone, _context, args) => {
|
|
461629
461687
|
args = args?.trim() || "";
|
|
461630
461688
|
const missingOpenAIKeyTip = getMissingOpenAIKeyTip();
|
|
461631
461689
|
if (!args && missingOpenAIKeyTip) {
|
|
@@ -461698,7 +461756,7 @@ var init_model2 = __esm(() => {
|
|
|
461698
461756
|
init_validateModel();
|
|
461699
461757
|
init_auth2();
|
|
461700
461758
|
init_providerSetup();
|
|
461701
|
-
|
|
461759
|
+
init_cnProviders();
|
|
461702
461760
|
React110 = __toESM(require_react(), 1);
|
|
461703
461761
|
import_react194 = __toESM(require_react(), 1);
|
|
461704
461762
|
jsx_dev_runtime352 = __toESM(require_jsx_dev_runtime(), 1);
|
|
@@ -461729,7 +461787,7 @@ __export(exports_tag, {
|
|
|
461729
461787
|
call: () => call62
|
|
461730
461788
|
});
|
|
461731
461789
|
function ConfirmRemoveTag(t0) {
|
|
461732
|
-
const $2 =
|
|
461790
|
+
const $2 = import_react_compiler_runtime272.c(11);
|
|
461733
461791
|
const {
|
|
461734
461792
|
tagName,
|
|
461735
461793
|
onConfirm,
|
|
@@ -461804,7 +461862,7 @@ function ConfirmRemoveTag(t0) {
|
|
|
461804
461862
|
return t6;
|
|
461805
461863
|
}
|
|
461806
461864
|
function ToggleTagAndClose(t0) {
|
|
461807
|
-
const $2 =
|
|
461865
|
+
const $2 = import_react_compiler_runtime272.c(17);
|
|
461808
461866
|
const {
|
|
461809
461867
|
tagName,
|
|
461810
461868
|
onDone
|
|
@@ -461917,7 +461975,7 @@ function ToggleTagAndClose(t0) {
|
|
|
461917
461975
|
return null;
|
|
461918
461976
|
}
|
|
461919
461977
|
function ShowHelp(t0) {
|
|
461920
|
-
const $2 =
|
|
461978
|
+
const $2 = import_react_compiler_runtime272.c(3);
|
|
461921
461979
|
const {
|
|
461922
461980
|
onDone
|
|
461923
461981
|
} = t0;
|
|
@@ -461967,7 +462025,7 @@ async function call62(onDone, _context, args) {
|
|
|
461967
462025
|
onDone
|
|
461968
462026
|
}, undefined, false, undefined, this);
|
|
461969
462027
|
}
|
|
461970
|
-
var
|
|
462028
|
+
var import_react_compiler_runtime272, React111, jsx_dev_runtime353;
|
|
461971
462029
|
var init_tag = __esm(() => {
|
|
461972
462030
|
init_source();
|
|
461973
462031
|
init_state();
|
|
@@ -461977,7 +462035,7 @@ var init_tag = __esm(() => {
|
|
|
461977
462035
|
init_ink2();
|
|
461978
462036
|
init_analytics();
|
|
461979
462037
|
init_sessionStorage();
|
|
461980
|
-
|
|
462038
|
+
import_react_compiler_runtime272 = __toESM(require_dist4(), 1);
|
|
461981
462039
|
React111 = __toESM(require_react(), 1);
|
|
461982
462040
|
jsx_dev_runtime353 = __toESM(require_jsx_dev_runtime(), 1);
|
|
461983
462041
|
});
|
|
@@ -462280,7 +462338,7 @@ var init_environmentSelection = __esm(() => {
|
|
|
462280
462338
|
|
|
462281
462339
|
// src/components/RemoteEnvironmentDialog.tsx
|
|
462282
462340
|
function RemoteEnvironmentDialog(t0) {
|
|
462283
|
-
const $2 =
|
|
462341
|
+
const $2 = import_react_compiler_runtime273.c(27);
|
|
462284
462342
|
const {
|
|
462285
462343
|
onDone
|
|
462286
462344
|
} = t0;
|
|
@@ -462480,7 +462538,7 @@ function RemoteEnvironmentDialog(t0) {
|
|
|
462480
462538
|
return t5;
|
|
462481
462539
|
}
|
|
462482
462540
|
function EnvironmentLabel(t0) {
|
|
462483
|
-
const $2 =
|
|
462541
|
+
const $2 = import_react_compiler_runtime273.c(7);
|
|
462484
462542
|
const {
|
|
462485
462543
|
environment
|
|
462486
462544
|
} = t0;
|
|
@@ -462530,7 +462588,7 @@ function EnvironmentLabel(t0) {
|
|
|
462530
462588
|
return t3;
|
|
462531
462589
|
}
|
|
462532
462590
|
function SingleEnvironmentContent(t0) {
|
|
462533
|
-
const $2 =
|
|
462591
|
+
const $2 = import_react_compiler_runtime273.c(6);
|
|
462534
462592
|
const {
|
|
462535
462593
|
environment,
|
|
462536
462594
|
onDone
|
|
@@ -462572,7 +462630,7 @@ function SingleEnvironmentContent(t0) {
|
|
|
462572
462630
|
return t3;
|
|
462573
462631
|
}
|
|
462574
462632
|
function MultipleEnvironmentsContent(t0) {
|
|
462575
|
-
const $2 =
|
|
462633
|
+
const $2 = import_react_compiler_runtime273.c(18);
|
|
462576
462634
|
const {
|
|
462577
462635
|
environments,
|
|
462578
462636
|
selectedEnvironment,
|
|
@@ -462710,7 +462768,7 @@ function _temp161(env4) {
|
|
|
462710
462768
|
value: env4.environment_id
|
|
462711
462769
|
};
|
|
462712
462770
|
}
|
|
462713
|
-
var
|
|
462771
|
+
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
462772
|
var init_RemoteEnvironmentDialog = __esm(() => {
|
|
462715
462773
|
init_source();
|
|
462716
462774
|
init_figures();
|
|
@@ -462727,7 +462785,7 @@ var init_RemoteEnvironmentDialog = __esm(() => {
|
|
|
462727
462785
|
init_Dialog();
|
|
462728
462786
|
init_KeyboardShortcutHint();
|
|
462729
462787
|
init_LoadingState();
|
|
462730
|
-
|
|
462788
|
+
import_react_compiler_runtime273 = __toESM(require_dist4(), 1);
|
|
462731
462789
|
import_react195 = __toESM(require_react(), 1);
|
|
462732
462790
|
jsx_dev_runtime354 = __toESM(require_jsx_dev_runtime(), 1);
|
|
462733
462791
|
});
|
|
@@ -462833,7 +462891,7 @@ __export(exports_rate_limit_options, {
|
|
|
462833
462891
|
call: () => call67
|
|
462834
462892
|
});
|
|
462835
462893
|
function RateLimitOptionsMenu(t0) {
|
|
462836
|
-
const $2 =
|
|
462894
|
+
const $2 = import_react_compiler_runtime274.c(25);
|
|
462837
462895
|
const {
|
|
462838
462896
|
onDone,
|
|
462839
462897
|
context: context7
|
|
@@ -463030,7 +463088,7 @@ async function call67(onDone, context7) {
|
|
|
463030
463088
|
context: context7
|
|
463031
463089
|
}, undefined, false, undefined, this);
|
|
463032
463090
|
}
|
|
463033
|
-
var
|
|
463091
|
+
var import_react_compiler_runtime274, import_react196, jsx_dev_runtime357;
|
|
463034
463092
|
var init_rate_limit_options = __esm(() => {
|
|
463035
463093
|
init_select();
|
|
463036
463094
|
init_Dialog();
|
|
@@ -463043,7 +463101,7 @@ var init_rate_limit_options = __esm(() => {
|
|
|
463043
463101
|
init_extra_usage2();
|
|
463044
463102
|
init_upgrade2();
|
|
463045
463103
|
init_upgrade();
|
|
463046
|
-
|
|
463104
|
+
import_react_compiler_runtime274 = __toESM(require_dist4(), 1);
|
|
463047
463105
|
import_react196 = __toESM(require_react(), 1);
|
|
463048
463106
|
jsx_dev_runtime357 = __toESM(require_jsx_dev_runtime(), 1);
|
|
463049
463107
|
});
|
|
@@ -463213,7 +463271,7 @@ function _temp163(s) {
|
|
|
463213
463271
|
return s.effortValue;
|
|
463214
463272
|
}
|
|
463215
463273
|
function ApplyEffortAndClose(t0) {
|
|
463216
|
-
const $2 =
|
|
463274
|
+
const $2 = import_react_compiler_runtime275.c(6);
|
|
463217
463275
|
const {
|
|
463218
463276
|
result,
|
|
463219
463277
|
onDone
|
|
@@ -463273,14 +463331,14 @@ Effort levels:
|
|
|
463273
463331
|
onDone
|
|
463274
463332
|
}, undefined, false, undefined, this);
|
|
463275
463333
|
}
|
|
463276
|
-
var
|
|
463334
|
+
var import_react_compiler_runtime275, React113, jsx_dev_runtime358, COMMON_HELP_ARGS2;
|
|
463277
463335
|
var init_effort2 = __esm(() => {
|
|
463278
463336
|
init_useMainLoopModel();
|
|
463279
463337
|
init_analytics();
|
|
463280
463338
|
init_AppState();
|
|
463281
463339
|
init_effort();
|
|
463282
463340
|
init_settings2();
|
|
463283
|
-
|
|
463341
|
+
import_react_compiler_runtime275 = __toESM(require_dist4(), 1);
|
|
463284
463342
|
React113 = __toESM(require_react(), 1);
|
|
463285
463343
|
jsx_dev_runtime358 = __toESM(require_jsx_dev_runtime(), 1);
|
|
463286
463344
|
COMMON_HELP_ARGS2 = ["help", "-h", "--help"];
|
|
@@ -464693,7 +464751,7 @@ function createAllTimeStatsPromise() {
|
|
|
464693
464751
|
});
|
|
464694
464752
|
}
|
|
464695
464753
|
function Stats(t0) {
|
|
464696
|
-
const $2 =
|
|
464754
|
+
const $2 = import_react_compiler_runtime276.c(4);
|
|
464697
464755
|
const {
|
|
464698
464756
|
onClose
|
|
464699
464757
|
} = t0;
|
|
@@ -464737,7 +464795,7 @@ function Stats(t0) {
|
|
|
464737
464795
|
return t3;
|
|
464738
464796
|
}
|
|
464739
464797
|
function StatsContent(t0) {
|
|
464740
|
-
const $2 =
|
|
464798
|
+
const $2 = import_react_compiler_runtime276.c(34);
|
|
464741
464799
|
const {
|
|
464742
464800
|
allTimePromise,
|
|
464743
464801
|
onClose
|
|
@@ -464997,7 +465055,7 @@ function _temp165(prev_0) {
|
|
|
464997
465055
|
return prev_0 === "Overview" ? "Models" : "Overview";
|
|
464998
465056
|
}
|
|
464999
465057
|
function DateRangeSelector(t0) {
|
|
465000
|
-
const $2 =
|
|
465058
|
+
const $2 = import_react_compiler_runtime276.c(9);
|
|
465001
465059
|
const {
|
|
465002
465060
|
dateRange,
|
|
465003
465061
|
isLoading
|
|
@@ -465429,7 +465487,7 @@ function generateFunFactoid(stats, totalTokens) {
|
|
|
465429
465487
|
return factoids[randomIndex];
|
|
465430
465488
|
}
|
|
465431
465489
|
function ModelsTab(t0) {
|
|
465432
|
-
const $2 =
|
|
465490
|
+
const $2 = import_react_compiler_runtime276.c(15);
|
|
465433
465491
|
const {
|
|
465434
465492
|
stats,
|
|
465435
465493
|
dateRange,
|
|
@@ -465634,7 +465692,7 @@ function _temp718(t0, t1) {
|
|
|
465634
465692
|
return b.inputTokens + b.outputTokens - (a2.inputTokens + a2.outputTokens);
|
|
465635
465693
|
}
|
|
465636
465694
|
function ModelEntry(t0) {
|
|
465637
|
-
const $2 =
|
|
465695
|
+
const $2 = import_react_compiler_runtime276.c(21);
|
|
465638
465696
|
const {
|
|
465639
465697
|
model,
|
|
465640
465698
|
usage,
|
|
@@ -465945,7 +466003,7 @@ function renderModelsToAnsi(stats) {
|
|
|
465945
466003
|
}
|
|
465946
466004
|
return lines;
|
|
465947
466005
|
}
|
|
465948
|
-
var
|
|
466006
|
+
var import_react_compiler_runtime276, import_react197, jsx_dev_runtime359, DATE_RANGE_LABELS, DATE_RANGE_ORDER, BOOK_COMPARISONS, TIME_COMPARISONS;
|
|
465949
466007
|
var init_Stats = __esm(() => {
|
|
465950
466008
|
init_asciichart();
|
|
465951
466009
|
init_source();
|
|
@@ -465966,7 +466024,7 @@ var init_Stats = __esm(() => {
|
|
|
465966
466024
|
init_Pane();
|
|
465967
466025
|
init_Tabs();
|
|
465968
466026
|
init_Spinner2();
|
|
465969
|
-
|
|
466027
|
+
import_react_compiler_runtime276 = __toESM(require_dist4(), 1);
|
|
465970
466028
|
import_react197 = __toESM(require_react(), 1);
|
|
465971
466029
|
jsx_dev_runtime359 = __toESM(require_jsx_dev_runtime(), 1);
|
|
465972
466030
|
DATE_RANGE_LABELS = {
|
|
@@ -483865,7 +483923,7 @@ __export(exports_InvalidConfigDialog, {
|
|
|
483865
483923
|
showInvalidConfigDialog: () => showInvalidConfigDialog
|
|
483866
483924
|
});
|
|
483867
483925
|
function InvalidConfigDialog(t0) {
|
|
483868
|
-
const $2 =
|
|
483926
|
+
const $2 = import_react_compiler_runtime277.c(19);
|
|
483869
483927
|
const {
|
|
483870
483928
|
filePath,
|
|
483871
483929
|
errorDescription,
|
|
@@ -484027,7 +484085,7 @@ async function showInvalidConfigDialog({
|
|
|
484027
484085
|
}, undefined, false, undefined, this), renderOptions);
|
|
484028
484086
|
});
|
|
484029
484087
|
}
|
|
484030
|
-
var
|
|
484088
|
+
var import_react_compiler_runtime277, jsx_dev_runtime361, SAFE_ERROR_THEME_NAME = "dark";
|
|
484031
484089
|
var init_InvalidConfigDialog = __esm(() => {
|
|
484032
484090
|
init_ink2();
|
|
484033
484091
|
init_KeybindingProviderSetup();
|
|
@@ -484036,7 +484094,7 @@ var init_InvalidConfigDialog = __esm(() => {
|
|
|
484036
484094
|
init_slowOperations();
|
|
484037
484095
|
init_CustomSelect();
|
|
484038
484096
|
init_Dialog();
|
|
484039
|
-
|
|
484097
|
+
import_react_compiler_runtime277 = __toESM(require_dist4(), 1);
|
|
484040
484098
|
jsx_dev_runtime361 = __toESM(require_jsx_dev_runtime(), 1);
|
|
484041
484099
|
});
|
|
484042
484100
|
|
|
@@ -484229,7 +484287,7 @@ var init_init2 = __esm(() => {
|
|
|
484229
484287
|
|
|
484230
484288
|
// src/context/fpsMetrics.tsx
|
|
484231
484289
|
function FpsMetricsProvider(t0) {
|
|
484232
|
-
const $2 =
|
|
484290
|
+
const $2 = import_react_compiler_runtime278.c(3);
|
|
484233
484291
|
const {
|
|
484234
484292
|
getFpsMetrics,
|
|
484235
484293
|
children
|
|
@@ -484251,9 +484309,9 @@ function FpsMetricsProvider(t0) {
|
|
|
484251
484309
|
function useFpsMetrics() {
|
|
484252
484310
|
return import_react198.useContext(FpsMetricsContext);
|
|
484253
484311
|
}
|
|
484254
|
-
var
|
|
484312
|
+
var import_react_compiler_runtime278, import_react198, jsx_dev_runtime362, FpsMetricsContext;
|
|
484255
484313
|
var init_fpsMetrics = __esm(() => {
|
|
484256
|
-
|
|
484314
|
+
import_react_compiler_runtime278 = __toESM(require_dist4(), 1);
|
|
484257
484315
|
import_react198 = __toESM(require_react(), 1);
|
|
484258
484316
|
jsx_dev_runtime362 = __toESM(require_jsx_dev_runtime(), 1);
|
|
484259
484317
|
FpsMetricsContext = import_react198.createContext(undefined);
|
|
@@ -484340,7 +484398,7 @@ function createStatsStore() {
|
|
|
484340
484398
|
};
|
|
484341
484399
|
}
|
|
484342
484400
|
function StatsProvider(t0) {
|
|
484343
|
-
const $2 =
|
|
484401
|
+
const $2 = import_react_compiler_runtime279.c(7);
|
|
484344
484402
|
const {
|
|
484345
484403
|
store: externalStore,
|
|
484346
484404
|
children
|
|
@@ -484395,10 +484453,10 @@ function StatsProvider(t0) {
|
|
|
484395
484453
|
}
|
|
484396
484454
|
return t4;
|
|
484397
484455
|
}
|
|
484398
|
-
var
|
|
484456
|
+
var import_react_compiler_runtime279, import_react199, jsx_dev_runtime363, RESERVOIR_SIZE = 1024, StatsContext;
|
|
484399
484457
|
var init_stats4 = __esm(() => {
|
|
484400
484458
|
init_config2();
|
|
484401
|
-
|
|
484459
|
+
import_react_compiler_runtime279 = __toESM(require_dist4(), 1);
|
|
484402
484460
|
import_react199 = __toESM(require_react(), 1);
|
|
484403
484461
|
jsx_dev_runtime363 = __toESM(require_jsx_dev_runtime(), 1);
|
|
484404
484462
|
StatsContext = import_react199.createContext(null);
|
|
@@ -484546,7 +484604,7 @@ __export(exports_App, {
|
|
|
484546
484604
|
App: () => App2
|
|
484547
484605
|
});
|
|
484548
484606
|
function App2(t0) {
|
|
484549
|
-
const $2 =
|
|
484607
|
+
const $2 = import_react_compiler_runtime280.c(9);
|
|
484550
484608
|
const {
|
|
484551
484609
|
getFpsMetrics,
|
|
484552
484610
|
stats: stats2,
|
|
@@ -484592,13 +484650,13 @@ function App2(t0) {
|
|
|
484592
484650
|
}
|
|
484593
484651
|
return t3;
|
|
484594
484652
|
}
|
|
484595
|
-
var
|
|
484653
|
+
var import_react_compiler_runtime280, jsx_dev_runtime364;
|
|
484596
484654
|
var init_App2 = __esm(() => {
|
|
484597
484655
|
init_fpsMetrics();
|
|
484598
484656
|
init_stats4();
|
|
484599
484657
|
init_AppState();
|
|
484600
484658
|
init_onChangeAppState();
|
|
484601
|
-
|
|
484659
|
+
import_react_compiler_runtime280 = __toESM(require_dist4(), 1);
|
|
484602
484660
|
jsx_dev_runtime364 = __toESM(require_jsx_dev_runtime(), 1);
|
|
484603
484661
|
});
|
|
484604
484662
|
|
|
@@ -484630,7 +484688,7 @@ var init_use_search_highlight = __esm(() => {
|
|
|
484630
484688
|
|
|
484631
484689
|
// src/components/CostThresholdDialog.tsx
|
|
484632
484690
|
function CostThresholdDialog(t0) {
|
|
484633
|
-
const $2 =
|
|
484691
|
+
const $2 = import_react_compiler_runtime281.c(7);
|
|
484634
484692
|
const {
|
|
484635
484693
|
onDone
|
|
484636
484694
|
} = t0;
|
|
@@ -484690,18 +484748,18 @@ function CostThresholdDialog(t0) {
|
|
|
484690
484748
|
}
|
|
484691
484749
|
return t4;
|
|
484692
484750
|
}
|
|
484693
|
-
var
|
|
484751
|
+
var import_react_compiler_runtime281, jsx_dev_runtime365;
|
|
484694
484752
|
var init_CostThresholdDialog = __esm(() => {
|
|
484695
484753
|
init_ink2();
|
|
484696
484754
|
init_CustomSelect();
|
|
484697
484755
|
init_Dialog();
|
|
484698
|
-
|
|
484756
|
+
import_react_compiler_runtime281 = __toESM(require_dist4(), 1);
|
|
484699
484757
|
jsx_dev_runtime365 = __toESM(require_jsx_dev_runtime(), 1);
|
|
484700
484758
|
});
|
|
484701
484759
|
|
|
484702
484760
|
// src/components/IdleReturnDialog.tsx
|
|
484703
484761
|
function IdleReturnDialog(t0) {
|
|
484704
|
-
const $2 =
|
|
484762
|
+
const $2 = import_react_compiler_runtime282.c(16);
|
|
484705
484763
|
const {
|
|
484706
484764
|
idleMinutes,
|
|
484707
484765
|
totalInputTokens,
|
|
@@ -484820,13 +484878,13 @@ function formatIdleDuration(minutes) {
|
|
|
484820
484878
|
}
|
|
484821
484879
|
return `${hours}h ${remainingMinutes}m`;
|
|
484822
484880
|
}
|
|
484823
|
-
var
|
|
484881
|
+
var import_react_compiler_runtime282, jsx_dev_runtime366;
|
|
484824
484882
|
var init_IdleReturnDialog = __esm(() => {
|
|
484825
484883
|
init_ink2();
|
|
484826
484884
|
init_format();
|
|
484827
484885
|
init_CustomSelect();
|
|
484828
484886
|
init_Dialog();
|
|
484829
|
-
|
|
484887
|
+
import_react_compiler_runtime282 = __toESM(require_dist4(), 1);
|
|
484830
484888
|
jsx_dev_runtime366 = __toESM(require_jsx_dev_runtime(), 1);
|
|
484831
484889
|
});
|
|
484832
484890
|
|
|
@@ -484985,7 +485043,7 @@ var init_QueryGuard = () => {};
|
|
|
484985
485043
|
|
|
484986
485044
|
// src/components/permissions/WorkerBadge.tsx
|
|
484987
485045
|
function WorkerBadge(t0) {
|
|
484988
|
-
const $2 =
|
|
485046
|
+
const $2 = import_react_compiler_runtime283.c(7);
|
|
484989
485047
|
const {
|
|
484990
485048
|
name,
|
|
484991
485049
|
color: color3
|
|
@@ -485035,18 +485093,18 @@ function WorkerBadge(t0) {
|
|
|
485035
485093
|
}
|
|
485036
485094
|
return t3;
|
|
485037
485095
|
}
|
|
485038
|
-
var
|
|
485096
|
+
var import_react_compiler_runtime283, jsx_dev_runtime367;
|
|
485039
485097
|
var init_WorkerBadge = __esm(() => {
|
|
485040
485098
|
init_figures2();
|
|
485041
485099
|
init_ink2();
|
|
485042
485100
|
init_ink3();
|
|
485043
|
-
|
|
485101
|
+
import_react_compiler_runtime283 = __toESM(require_dist4(), 1);
|
|
485044
485102
|
jsx_dev_runtime367 = __toESM(require_jsx_dev_runtime(), 1);
|
|
485045
485103
|
});
|
|
485046
485104
|
|
|
485047
485105
|
// src/components/permissions/WorkerPendingPermission.tsx
|
|
485048
485106
|
function WorkerPendingPermission(t0) {
|
|
485049
|
-
const $2 =
|
|
485107
|
+
const $2 = import_react_compiler_runtime284.c(15);
|
|
485050
485108
|
const {
|
|
485051
485109
|
toolName,
|
|
485052
485110
|
description
|
|
@@ -485197,13 +485255,13 @@ function WorkerPendingPermission(t0) {
|
|
|
485197
485255
|
}
|
|
485198
485256
|
return t11;
|
|
485199
485257
|
}
|
|
485200
|
-
var
|
|
485258
|
+
var import_react_compiler_runtime284, jsx_dev_runtime368;
|
|
485201
485259
|
var init_WorkerPendingPermission = __esm(() => {
|
|
485202
485260
|
init_ink2();
|
|
485203
485261
|
init_teammate();
|
|
485204
485262
|
init_Spinner2();
|
|
485205
485263
|
init_WorkerBadge();
|
|
485206
|
-
|
|
485264
|
+
import_react_compiler_runtime284 = __toESM(require_dist4(), 1);
|
|
485207
485265
|
jsx_dev_runtime368 = __toESM(require_jsx_dev_runtime(), 1);
|
|
485208
485266
|
});
|
|
485209
485267
|
|
|
@@ -485896,7 +485954,7 @@ function getRestoreOptionConversationText(option) {
|
|
|
485896
485954
|
}
|
|
485897
485955
|
}
|
|
485898
485956
|
function RestoreOptionDescription(t0) {
|
|
485899
|
-
const $2 =
|
|
485957
|
+
const $2 = import_react_compiler_runtime285.c(11);
|
|
485900
485958
|
const {
|
|
485901
485959
|
selectedRestoreOption,
|
|
485902
485960
|
canRestoreCode,
|
|
@@ -485955,7 +486013,7 @@ function RestoreOptionDescription(t0) {
|
|
|
485955
486013
|
return t4;
|
|
485956
486014
|
}
|
|
485957
486015
|
function RestoreCodeConfirmation(t0) {
|
|
485958
|
-
const $2 =
|
|
486016
|
+
const $2 = import_react_compiler_runtime285.c(14);
|
|
485959
486017
|
const {
|
|
485960
486018
|
diffStatsForRestore
|
|
485961
486019
|
} = t0;
|
|
@@ -486055,7 +486113,7 @@ function RestoreCodeConfirmation(t0) {
|
|
|
486055
486113
|
return t2;
|
|
486056
486114
|
}
|
|
486057
486115
|
function DiffStatsText(t0) {
|
|
486058
|
-
const $2 =
|
|
486116
|
+
const $2 = import_react_compiler_runtime285.c(7);
|
|
486059
486117
|
const {
|
|
486060
486118
|
diffStats
|
|
486061
486119
|
} = t0;
|
|
@@ -486108,7 +486166,7 @@ function DiffStatsText(t0) {
|
|
|
486108
486166
|
return t3;
|
|
486109
486167
|
}
|
|
486110
486168
|
function UserMessageOption(t0) {
|
|
486111
|
-
const $2 =
|
|
486169
|
+
const $2 = import_react_compiler_runtime285.c(31);
|
|
486112
486170
|
const {
|
|
486113
486171
|
userMessage,
|
|
486114
486172
|
color: color3,
|
|
@@ -486416,7 +486474,7 @@ function messagesAfterAreOnlySynthetic(messages, fromIndex) {
|
|
|
486416
486474
|
}
|
|
486417
486475
|
return true;
|
|
486418
486476
|
}
|
|
486419
|
-
var
|
|
486477
|
+
var import_react_compiler_runtime285, import_react203, jsx_dev_runtime370, MAX_VISIBLE_MESSAGES = 7;
|
|
486420
486478
|
var init_MessageSelector = __esm(() => {
|
|
486421
486479
|
init_figures();
|
|
486422
486480
|
init_analytics();
|
|
@@ -486434,7 +486492,7 @@ var init_MessageSelector = __esm(() => {
|
|
|
486434
486492
|
init_xml();
|
|
486435
486493
|
init_format();
|
|
486436
486494
|
init_Divider();
|
|
486437
|
-
|
|
486495
|
+
import_react_compiler_runtime285 = __toESM(require_dist4(), 1);
|
|
486438
486496
|
import_react203 = __toESM(require_react(), 1);
|
|
486439
486497
|
jsx_dev_runtime370 = __toESM(require_jsx_dev_runtime(), 1);
|
|
486440
486498
|
});
|
|
@@ -486506,7 +486564,7 @@ var init_useNotifyAfterTimeout = __esm(() => {
|
|
|
486506
486564
|
|
|
486507
486565
|
// src/components/permissions/AskUserQuestionPermissionRequest/PreviewBox.tsx
|
|
486508
486566
|
function PreviewBox(props) {
|
|
486509
|
-
const $2 =
|
|
486567
|
+
const $2 = import_react_compiler_runtime286.c(4);
|
|
486510
486568
|
const settings = useSettings();
|
|
486511
486569
|
if (settings.syntaxHighlightingDisabled) {
|
|
486512
486570
|
let t02;
|
|
@@ -486541,7 +486599,7 @@ function PreviewBox(props) {
|
|
|
486541
486599
|
return t0;
|
|
486542
486600
|
}
|
|
486543
486601
|
function PreviewBoxWithHighlight(props) {
|
|
486544
|
-
const $2 =
|
|
486602
|
+
const $2 = import_react_compiler_runtime286.c(4);
|
|
486545
486603
|
let t0;
|
|
486546
486604
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
486547
486605
|
t0 = getCliHighlightPromise();
|
|
@@ -486565,7 +486623,7 @@ function PreviewBoxWithHighlight(props) {
|
|
|
486565
486623
|
return t1;
|
|
486566
486624
|
}
|
|
486567
486625
|
function PreviewBoxBody(t0) {
|
|
486568
|
-
const $2 =
|
|
486626
|
+
const $2 = import_react_compiler_runtime286.c(34);
|
|
486569
486627
|
const {
|
|
486570
486628
|
content,
|
|
486571
486629
|
maxLines,
|
|
@@ -486749,7 +486807,7 @@ function PreviewBoxBody(t0) {
|
|
|
486749
486807
|
function _temp166(line) {
|
|
486750
486808
|
return stringWidth(line);
|
|
486751
486809
|
}
|
|
486752
|
-
var
|
|
486810
|
+
var import_react_compiler_runtime286, import_react206, jsx_dev_runtime371, BOX_CHARS;
|
|
486753
486811
|
var init_PreviewBox = __esm(() => {
|
|
486754
486812
|
init_useSettings();
|
|
486755
486813
|
init_useTerminalSize();
|
|
@@ -486758,7 +486816,7 @@ var init_PreviewBox = __esm(() => {
|
|
|
486758
486816
|
init_cliHighlight();
|
|
486759
486817
|
init_markdown();
|
|
486760
486818
|
init_sliceAnsi();
|
|
486761
|
-
|
|
486819
|
+
import_react_compiler_runtime286 = __toESM(require_dist4(), 1);
|
|
486762
486820
|
import_react206 = __toESM(require_react(), 1);
|
|
486763
486821
|
jsx_dev_runtime371 = __toESM(require_jsx_dev_runtime(), 1);
|
|
486764
486822
|
BOX_CHARS = {
|
|
@@ -486775,7 +486833,7 @@ var init_PreviewBox = __esm(() => {
|
|
|
486775
486833
|
|
|
486776
486834
|
// src/components/permissions/AskUserQuestionPermissionRequest/QuestionNavigationBar.tsx
|
|
486777
486835
|
function QuestionNavigationBar(t0) {
|
|
486778
|
-
const $2 =
|
|
486836
|
+
const $2 = import_react_compiler_runtime287.c(39);
|
|
486779
486837
|
const {
|
|
486780
486838
|
questions,
|
|
486781
486839
|
currentQuestionIndex,
|
|
@@ -486995,14 +487053,14 @@ function _temp273(header_0) {
|
|
|
486995
487053
|
function _temp167(q_0, index_0) {
|
|
486996
487054
|
return q_0?.header || `Q${index_0 + 1}`;
|
|
486997
487055
|
}
|
|
486998
|
-
var
|
|
487056
|
+
var import_react_compiler_runtime287, jsx_dev_runtime372;
|
|
486999
487057
|
var init_QuestionNavigationBar = __esm(() => {
|
|
487000
487058
|
init_figures();
|
|
487001
487059
|
init_useTerminalSize();
|
|
487002
487060
|
init_stringWidth();
|
|
487003
487061
|
init_ink2();
|
|
487004
487062
|
init_format();
|
|
487005
|
-
|
|
487063
|
+
import_react_compiler_runtime287 = __toESM(require_dist4(), 1);
|
|
487006
487064
|
jsx_dev_runtime372 = __toESM(require_jsx_dev_runtime(), 1);
|
|
487007
487065
|
});
|
|
487008
487066
|
|
|
@@ -487398,7 +487456,7 @@ var init_PreviewQuestionView = __esm(() => {
|
|
|
487398
487456
|
|
|
487399
487457
|
// src/components/permissions/AskUserQuestionPermissionRequest/QuestionView.tsx
|
|
487400
487458
|
function QuestionView(t0) {
|
|
487401
|
-
const $2 =
|
|
487459
|
+
const $2 = import_react_compiler_runtime288.c(114);
|
|
487402
487460
|
const {
|
|
487403
487461
|
question,
|
|
487404
487462
|
questions,
|
|
@@ -487994,7 +488052,7 @@ function _temp274(opt) {
|
|
|
487994
488052
|
function _temp168(s) {
|
|
487995
488053
|
return s.toolPermissionContext.mode;
|
|
487996
488054
|
}
|
|
487997
|
-
var
|
|
488055
|
+
var import_react_compiler_runtime288, import_react208, jsx_dev_runtime374;
|
|
487998
488056
|
var init_QuestionView = __esm(() => {
|
|
487999
488057
|
init_figures();
|
|
488000
488058
|
init_ink2();
|
|
@@ -488008,7 +488066,7 @@ var init_QuestionView = __esm(() => {
|
|
|
488008
488066
|
init_PermissionRequestTitle();
|
|
488009
488067
|
init_PreviewQuestionView();
|
|
488010
488068
|
init_QuestionNavigationBar();
|
|
488011
|
-
|
|
488069
|
+
import_react_compiler_runtime288 = __toESM(require_dist4(), 1);
|
|
488012
488070
|
import_react208 = __toESM(require_react(), 1);
|
|
488013
488071
|
jsx_dev_runtime374 = __toESM(require_jsx_dev_runtime(), 1);
|
|
488014
488072
|
});
|
|
@@ -488050,7 +488108,7 @@ ${reason.reason}` : ".";
|
|
|
488050
488108
|
}
|
|
488051
488109
|
}
|
|
488052
488110
|
function PermissionRuleExplanation(t0) {
|
|
488053
|
-
const $2 =
|
|
488111
|
+
const $2 = import_react_compiler_runtime289.c(11);
|
|
488054
488112
|
const {
|
|
488055
488113
|
permissionResult,
|
|
488056
488114
|
toolType
|
|
@@ -488119,20 +488177,20 @@ function PermissionRuleExplanation(t0) {
|
|
|
488119
488177
|
function _temp169(s) {
|
|
488120
488178
|
return s.toolPermissionContext.mode;
|
|
488121
488179
|
}
|
|
488122
|
-
var
|
|
488180
|
+
var import_react_compiler_runtime289, jsx_dev_runtime375;
|
|
488123
488181
|
var init_PermissionRuleExplanation = __esm(() => {
|
|
488124
488182
|
init_source();
|
|
488125
488183
|
init_ink2();
|
|
488126
488184
|
init_AppState();
|
|
488127
488185
|
init_permissionRuleParser();
|
|
488128
488186
|
init_ThemedText();
|
|
488129
|
-
|
|
488187
|
+
import_react_compiler_runtime289 = __toESM(require_dist4(), 1);
|
|
488130
488188
|
jsx_dev_runtime375 = __toESM(require_jsx_dev_runtime(), 1);
|
|
488131
488189
|
});
|
|
488132
488190
|
|
|
488133
488191
|
// src/components/permissions/AskUserQuestionPermissionRequest/SubmitQuestionsView.tsx
|
|
488134
488192
|
function SubmitQuestionsView(t0) {
|
|
488135
|
-
const $2 =
|
|
488193
|
+
const $2 = import_react_compiler_runtime290.c(27);
|
|
488136
488194
|
const {
|
|
488137
488195
|
questions,
|
|
488138
488196
|
currentQuestionIndex,
|
|
@@ -488340,7 +488398,7 @@ function SubmitQuestionsView(t0) {
|
|
|
488340
488398
|
}
|
|
488341
488399
|
return t12;
|
|
488342
488400
|
}
|
|
488343
|
-
var
|
|
488401
|
+
var import_react_compiler_runtime290, jsx_dev_runtime376;
|
|
488344
488402
|
var init_SubmitQuestionsView = __esm(() => {
|
|
488345
488403
|
init_figures();
|
|
488346
488404
|
init_ink2();
|
|
@@ -488349,7 +488407,7 @@ var init_SubmitQuestionsView = __esm(() => {
|
|
|
488349
488407
|
init_PermissionRequestTitle();
|
|
488350
488408
|
init_PermissionRuleExplanation();
|
|
488351
488409
|
init_QuestionNavigationBar();
|
|
488352
|
-
|
|
488410
|
+
import_react_compiler_runtime290 = __toESM(require_dist4(), 1);
|
|
488353
488411
|
jsx_dev_runtime376 = __toESM(require_jsx_dev_runtime(), 1);
|
|
488354
488412
|
});
|
|
488355
488413
|
|
|
@@ -488458,7 +488516,7 @@ var init_use_multiple_choice_state = __esm(() => {
|
|
|
488458
488516
|
|
|
488459
488517
|
// src/components/permissions/AskUserQuestionPermissionRequest/AskUserQuestionPermissionRequest.tsx
|
|
488460
488518
|
function AskUserQuestionPermissionRequest(props) {
|
|
488461
|
-
const $2 =
|
|
488519
|
+
const $2 = import_react_compiler_runtime291.c(4);
|
|
488462
488520
|
const settings = useSettings();
|
|
488463
488521
|
if (settings.syntaxHighlightingDisabled) {
|
|
488464
488522
|
let t02;
|
|
@@ -488493,7 +488551,7 @@ function AskUserQuestionPermissionRequest(props) {
|
|
|
488493
488551
|
return t0;
|
|
488494
488552
|
}
|
|
488495
488553
|
function AskUserQuestionWithHighlight(props) {
|
|
488496
|
-
const $2 =
|
|
488554
|
+
const $2 = import_react_compiler_runtime291.c(4);
|
|
488497
488555
|
let t0;
|
|
488498
488556
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
488499
488557
|
t0 = getCliHighlightPromise();
|
|
@@ -488517,7 +488575,7 @@ function AskUserQuestionWithHighlight(props) {
|
|
|
488517
488575
|
return t1;
|
|
488518
488576
|
}
|
|
488519
488577
|
function AskUserQuestionPermissionRequestBody(t0) {
|
|
488520
|
-
const $2 =
|
|
488578
|
+
const $2 = import_react_compiler_runtime291.c(115);
|
|
488521
488579
|
const {
|
|
488522
488580
|
toolUseConfirm,
|
|
488523
488581
|
onDone,
|
|
@@ -489130,7 +489188,7 @@ async function convertImagesToBlocks(images) {
|
|
|
489130
489188
|
return resized.block;
|
|
489131
489189
|
}));
|
|
489132
489190
|
}
|
|
489133
|
-
var
|
|
489191
|
+
var import_react_compiler_runtime291, import_react210, jsx_dev_runtime377, MIN_CONTENT_HEIGHT = 12, MIN_CONTENT_WIDTH = 40, CONTENT_CHROME_OVERHEAD = 15;
|
|
489134
489192
|
var init_AskUserQuestionPermissionRequest = __esm(() => {
|
|
489135
489193
|
init_useSettings();
|
|
489136
489194
|
init_useTerminalSize();
|
|
@@ -489150,7 +489208,7 @@ var init_AskUserQuestionPermissionRequest = __esm(() => {
|
|
|
489150
489208
|
init_QuestionView();
|
|
489151
489209
|
init_SubmitQuestionsView();
|
|
489152
489210
|
init_use_multiple_choice_state();
|
|
489153
|
-
|
|
489211
|
+
import_react_compiler_runtime291 = __toESM(require_dist4(), 1);
|
|
489154
489212
|
import_react210 = __toESM(require_react(), 1);
|
|
489155
489213
|
jsx_dev_runtime377 = __toESM(require_jsx_dev_runtime(), 1);
|
|
489156
489214
|
});
|
|
@@ -489939,7 +489997,7 @@ function decisionReasonDisplayString(decisionReason) {
|
|
|
489939
489997
|
}
|
|
489940
489998
|
}
|
|
489941
489999
|
function PermissionDecisionInfoItem(t0) {
|
|
489942
|
-
const $2 =
|
|
490000
|
+
const $2 = import_react_compiler_runtime292.c(10);
|
|
489943
490001
|
const {
|
|
489944
490002
|
title,
|
|
489945
490003
|
decisionReason
|
|
@@ -490040,7 +490098,7 @@ function PermissionDecisionInfoItem(t0) {
|
|
|
490040
490098
|
return t4;
|
|
490041
490099
|
}
|
|
490042
490100
|
function SuggestedRules(t0) {
|
|
490043
|
-
const $2 =
|
|
490101
|
+
const $2 = import_react_compiler_runtime292.c(18);
|
|
490044
490102
|
const {
|
|
490045
490103
|
suggestions
|
|
490046
490104
|
} = t0;
|
|
@@ -490152,7 +490210,7 @@ function extractMode(updates) {
|
|
|
490152
490210
|
return update?.type === "setMode" ? update.mode : undefined;
|
|
490153
490211
|
}
|
|
490154
490212
|
function SuggestionDisplay(t0) {
|
|
490155
|
-
const $2 =
|
|
490213
|
+
const $2 = import_react_compiler_runtime292.c(22);
|
|
490156
490214
|
const {
|
|
490157
490215
|
suggestions,
|
|
490158
490216
|
width
|
|
@@ -490396,7 +490454,7 @@ function _temp276(rule, index) {
|
|
|
490396
490454
|
}, index, true, undefined, this);
|
|
490397
490455
|
}
|
|
490398
490456
|
function PermissionDecisionDebugInfo(t0) {
|
|
490399
|
-
const $2 =
|
|
490457
|
+
const $2 = import_react_compiler_runtime292.c(25);
|
|
490400
490458
|
const {
|
|
490401
490459
|
permissionResult,
|
|
490402
490460
|
toolName
|
|
@@ -490611,7 +490669,7 @@ function _temp527(u_1, i3) {
|
|
|
490611
490669
|
function _temp438(s) {
|
|
490612
490670
|
return s.toolPermissionContext;
|
|
490613
490671
|
}
|
|
490614
|
-
var
|
|
490672
|
+
var import_react_compiler_runtime292, jsx_dev_runtime378;
|
|
490615
490673
|
var init_PermissionDecisionDebugInfo = __esm(() => {
|
|
490616
490674
|
init_source();
|
|
490617
490675
|
init_figures();
|
|
@@ -490623,7 +490681,7 @@ var init_PermissionDecisionDebugInfo = __esm(() => {
|
|
|
490623
490681
|
init_shadowedRuleDetection();
|
|
490624
490682
|
init_sandbox_adapter();
|
|
490625
490683
|
init_constants2();
|
|
490626
|
-
|
|
490684
|
+
import_react_compiler_runtime292 = __toESM(require_dist4(), 1);
|
|
490627
490685
|
jsx_dev_runtime378 = __toESM(require_jsx_dev_runtime(), 1);
|
|
490628
490686
|
});
|
|
490629
490687
|
|
|
@@ -490791,7 +490849,7 @@ var init_permissionExplainer = __esm(() => {
|
|
|
490791
490849
|
|
|
490792
490850
|
// src/components/permissions/PermissionExplanation.tsx
|
|
490793
490851
|
function ShimmerLoadingText() {
|
|
490794
|
-
const $2 =
|
|
490852
|
+
const $2 = import_react_compiler_runtime293.c(7);
|
|
490795
490853
|
const [ref, glimmerIndex] = useShimmerAnimation("responding", LOADING_MESSAGE, false);
|
|
490796
490854
|
let t0;
|
|
490797
490855
|
if ($2[0] !== glimmerIndex) {
|
|
@@ -490861,7 +490919,7 @@ function createExplanationPromise(props) {
|
|
|
490861
490919
|
}).catch(() => null);
|
|
490862
490920
|
}
|
|
490863
490921
|
function usePermissionExplainerUI(props) {
|
|
490864
|
-
const $2 =
|
|
490922
|
+
const $2 = import_react_compiler_runtime293.c(9);
|
|
490865
490923
|
let t0;
|
|
490866
490924
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
490867
490925
|
t0 = isPermissionExplainerEnabled();
|
|
@@ -490920,7 +490978,7 @@ function _temp173(v) {
|
|
|
490920
490978
|
return !v;
|
|
490921
490979
|
}
|
|
490922
490980
|
function ExplanationResult(t0) {
|
|
490923
|
-
const $2 =
|
|
490981
|
+
const $2 = import_react_compiler_runtime293.c(21);
|
|
490924
490982
|
const {
|
|
490925
490983
|
promise: promise3
|
|
490926
490984
|
} = t0;
|
|
@@ -491046,7 +491104,7 @@ function ExplanationResult(t0) {
|
|
|
491046
491104
|
return t8;
|
|
491047
491105
|
}
|
|
491048
491106
|
function PermissionExplainerContent(t0) {
|
|
491049
|
-
const $2 =
|
|
491107
|
+
const $2 = import_react_compiler_runtime293.c(3);
|
|
491050
491108
|
const {
|
|
491051
491109
|
visible,
|
|
491052
491110
|
promise: promise3
|
|
@@ -491079,7 +491137,7 @@ function PermissionExplainerContent(t0) {
|
|
|
491079
491137
|
}
|
|
491080
491138
|
return t2;
|
|
491081
491139
|
}
|
|
491082
|
-
var
|
|
491140
|
+
var import_react_compiler_runtime293, import_react212, jsx_dev_runtime379, LOADING_MESSAGE = "Loading explanation…";
|
|
491083
491141
|
var init_PermissionExplanation = __esm(() => {
|
|
491084
491142
|
init_ink2();
|
|
491085
491143
|
init_useKeybinding();
|
|
@@ -491087,14 +491145,14 @@ var init_PermissionExplanation = __esm(() => {
|
|
|
491087
491145
|
init_permissionExplainer();
|
|
491088
491146
|
init_ShimmerChar();
|
|
491089
491147
|
init_useShimmerAnimation();
|
|
491090
|
-
|
|
491148
|
+
import_react_compiler_runtime293 = __toESM(require_dist4(), 1);
|
|
491091
491149
|
import_react212 = __toESM(require_react(), 1);
|
|
491092
491150
|
jsx_dev_runtime379 = __toESM(require_jsx_dev_runtime(), 1);
|
|
491093
491151
|
});
|
|
491094
491152
|
|
|
491095
491153
|
// src/components/FileEditToolDiff.tsx
|
|
491096
491154
|
function FileEditToolDiff(props) {
|
|
491097
|
-
const $2 =
|
|
491155
|
+
const $2 = import_react_compiler_runtime294.c(7);
|
|
491098
491156
|
let t0;
|
|
491099
491157
|
if ($2[0] !== props.edits || $2[1] !== props.file_path) {
|
|
491100
491158
|
t0 = () => loadDiffData(props.file_path, props.edits);
|
|
@@ -491132,7 +491190,7 @@ function FileEditToolDiff(props) {
|
|
|
491132
491190
|
return t2;
|
|
491133
491191
|
}
|
|
491134
491192
|
function DiffBody(t0) {
|
|
491135
|
-
const $2 =
|
|
491193
|
+
const $2 = import_react_compiler_runtime294.c(6);
|
|
491136
491194
|
const {
|
|
491137
491195
|
promise: promise3,
|
|
491138
491196
|
file_path
|
|
@@ -491169,7 +491227,7 @@ function DiffBody(t0) {
|
|
|
491169
491227
|
return t1;
|
|
491170
491228
|
}
|
|
491171
491229
|
function DiffFrame(t0) {
|
|
491172
|
-
const $2 =
|
|
491230
|
+
const $2 = import_react_compiler_runtime294.c(5);
|
|
491173
491231
|
const {
|
|
491174
491232
|
children,
|
|
491175
491233
|
placeholder
|
|
@@ -491275,7 +491333,7 @@ function normalizeEdit(fileContent, edit2) {
|
|
|
491275
491333
|
new_string: actualNew
|
|
491276
491334
|
};
|
|
491277
491335
|
}
|
|
491278
|
-
var
|
|
491336
|
+
var import_react_compiler_runtime294, import_react213, jsx_dev_runtime380;
|
|
491279
491337
|
var init_FileEditToolDiff = __esm(() => {
|
|
491280
491338
|
init_useTerminalSize();
|
|
491281
491339
|
init_ink2();
|
|
@@ -491285,7 +491343,7 @@ var init_FileEditToolDiff = __esm(() => {
|
|
|
491285
491343
|
init_readEditContext();
|
|
491286
491344
|
init_stringUtils();
|
|
491287
491345
|
init_StructuredDiffList();
|
|
491288
|
-
|
|
491346
|
+
import_react_compiler_runtime294 = __toESM(require_dist4(), 1);
|
|
491289
491347
|
import_react213 = __toESM(require_react(), 1);
|
|
491290
491348
|
jsx_dev_runtime380 = __toESM(require_jsx_dev_runtime(), 1);
|
|
491291
491349
|
});
|
|
@@ -491487,7 +491545,7 @@ var init_useDiffInIDE = __esm(() => {
|
|
|
491487
491545
|
// src/components/ShowInIDEPrompt.tsx
|
|
491488
491546
|
import { basename as basename45, relative as relative27 } from "path";
|
|
491489
491547
|
function ShowInIDEPrompt(t0) {
|
|
491490
|
-
const $2 =
|
|
491548
|
+
const $2 = import_react_compiler_runtime295.c(36);
|
|
491491
491549
|
const {
|
|
491492
491550
|
onChange,
|
|
491493
491551
|
options: options2,
|
|
@@ -491690,14 +491748,14 @@ function ShowInIDEPrompt(t0) {
|
|
|
491690
491748
|
}
|
|
491691
491749
|
return t13;
|
|
491692
491750
|
}
|
|
491693
|
-
var
|
|
491751
|
+
var import_react_compiler_runtime295, jsx_dev_runtime381;
|
|
491694
491752
|
var init_ShowInIDEPrompt = __esm(() => {
|
|
491695
491753
|
init_ink2();
|
|
491696
491754
|
init_cwd2();
|
|
491697
491755
|
init_ide();
|
|
491698
491756
|
init_CustomSelect();
|
|
491699
491757
|
init_Pane();
|
|
491700
|
-
|
|
491758
|
+
import_react_compiler_runtime295 = __toESM(require_dist4(), 1);
|
|
491701
491759
|
jsx_dev_runtime381 = __toESM(require_jsx_dev_runtime(), 1);
|
|
491702
491760
|
});
|
|
491703
491761
|
|
|
@@ -492286,7 +492344,7 @@ var init_FilePermissionDialog = __esm(() => {
|
|
|
492286
492344
|
// src/components/permissions/SedEditPermissionRequest/SedEditPermissionRequest.tsx
|
|
492287
492345
|
import { basename as basename47, relative as relative29 } from "path";
|
|
492288
492346
|
function SedEditPermissionRequest(t0) {
|
|
492289
|
-
const $2 =
|
|
492347
|
+
const $2 = import_react_compiler_runtime296.c(9);
|
|
492290
492348
|
let props;
|
|
492291
492349
|
let sedInfo;
|
|
492292
492350
|
if ($2[0] !== t0) {
|
|
@@ -492353,7 +492411,7 @@ function _temp175(e) {
|
|
|
492353
492411
|
};
|
|
492354
492412
|
}
|
|
492355
492413
|
function SedEditPermissionRequestInner(t0) {
|
|
492356
|
-
const $2 =
|
|
492414
|
+
const $2 = import_react_compiler_runtime296.c(35);
|
|
492357
492415
|
let contentPromise;
|
|
492358
492416
|
let props;
|
|
492359
492417
|
let sedInfo;
|
|
@@ -492532,7 +492590,7 @@ function SedEditPermissionRequestInner(t0) {
|
|
|
492532
492590
|
}
|
|
492533
492591
|
return t13;
|
|
492534
492592
|
}
|
|
492535
|
-
var
|
|
492593
|
+
var import_react_compiler_runtime296, import_react217, jsx_dev_runtime384;
|
|
492536
492594
|
var init_SedEditPermissionRequest = __esm(() => {
|
|
492537
492595
|
init_FileEditToolDiff();
|
|
492538
492596
|
init_cwd2();
|
|
@@ -492543,7 +492601,7 @@ var init_SedEditPermissionRequest = __esm(() => {
|
|
|
492543
492601
|
init_BashTool();
|
|
492544
492602
|
init_sedEditParser();
|
|
492545
492603
|
init_FilePermissionDialog();
|
|
492546
|
-
|
|
492604
|
+
import_react_compiler_runtime296 = __toESM(require_dist4(), 1);
|
|
492547
492605
|
import_react217 = __toESM(require_react(), 1);
|
|
492548
492606
|
jsx_dev_runtime384 = __toESM(require_jsx_dev_runtime(), 1);
|
|
492549
492607
|
});
|
|
@@ -492985,7 +493043,7 @@ var init_bashToolUseOptions = __esm(() => {
|
|
|
492985
493043
|
|
|
492986
493044
|
// src/components/permissions/BashPermissionRequest/BashPermissionRequest.tsx
|
|
492987
493045
|
function BashPermissionRequest(props) {
|
|
492988
|
-
const $2 =
|
|
493046
|
+
const $2 = import_react_compiler_runtime297.c(21);
|
|
492989
493047
|
const {
|
|
492990
493048
|
toolUseConfirm,
|
|
492991
493049
|
toolUseContext,
|
|
@@ -493371,7 +493429,7 @@ function BashPermissionRequestInner({
|
|
|
493371
493429
|
]
|
|
493372
493430
|
}, undefined, true, undefined, this);
|
|
493373
493431
|
}
|
|
493374
|
-
var
|
|
493432
|
+
var import_react_compiler_runtime297, import_react219, jsx_dev_runtime386;
|
|
493375
493433
|
var init_BashPermissionRequest = __esm(() => {
|
|
493376
493434
|
init_ink2();
|
|
493377
493435
|
init_useKeybinding();
|
|
@@ -493399,14 +493457,14 @@ var init_BashPermissionRequest = __esm(() => {
|
|
|
493399
493457
|
init_useShellPermissionFeedback();
|
|
493400
493458
|
init_utils12();
|
|
493401
493459
|
init_bashToolUseOptions();
|
|
493402
|
-
|
|
493460
|
+
import_react_compiler_runtime297 = __toESM(require_dist4(), 1);
|
|
493403
493461
|
import_react219 = __toESM(require_react(), 1);
|
|
493404
493462
|
jsx_dev_runtime386 = __toESM(require_jsx_dev_runtime(), 1);
|
|
493405
493463
|
});
|
|
493406
493464
|
|
|
493407
493465
|
// src/components/permissions/EnterPlanModePermissionRequest/EnterPlanModePermissionRequest.tsx
|
|
493408
493466
|
function EnterPlanModePermissionRequest(t0) {
|
|
493409
|
-
const $2 =
|
|
493467
|
+
const $2 = import_react_compiler_runtime298.c(18);
|
|
493410
493468
|
const {
|
|
493411
493469
|
toolUseConfirm,
|
|
493412
493470
|
onDone,
|
|
@@ -493571,7 +493629,7 @@ function EnterPlanModePermissionRequest(t0) {
|
|
|
493571
493629
|
function _temp176(s) {
|
|
493572
493630
|
return s.toolPermissionContext.mode;
|
|
493573
493631
|
}
|
|
493574
|
-
var
|
|
493632
|
+
var import_react_compiler_runtime298, jsx_dev_runtime387;
|
|
493575
493633
|
var init_EnterPlanModePermissionRequest = __esm(() => {
|
|
493576
493634
|
init_state();
|
|
493577
493635
|
init_ink2();
|
|
@@ -493580,7 +493638,7 @@ var init_EnterPlanModePermissionRequest = __esm(() => {
|
|
|
493580
493638
|
init_planModeV2();
|
|
493581
493639
|
init_CustomSelect();
|
|
493582
493640
|
init_PermissionDialog();
|
|
493583
|
-
|
|
493641
|
+
import_react_compiler_runtime298 = __toESM(require_dist4(), 1);
|
|
493584
493642
|
jsx_dev_runtime387 = __toESM(require_jsx_dev_runtime(), 1);
|
|
493585
493643
|
});
|
|
493586
493644
|
|
|
@@ -494316,7 +494374,7 @@ var init_ExitPlanModePermissionRequest = __esm(() => {
|
|
|
494316
494374
|
|
|
494317
494375
|
// src/components/permissions/PermissionPrompt.tsx
|
|
494318
494376
|
function PermissionPrompt(t0) {
|
|
494319
|
-
const $2 =
|
|
494377
|
+
const $2 = import_react_compiler_runtime299.c(54);
|
|
494320
494378
|
const {
|
|
494321
494379
|
options: options2,
|
|
494322
494380
|
onSelect,
|
|
@@ -494631,14 +494689,14 @@ function _temp177(prev) {
|
|
|
494631
494689
|
}
|
|
494632
494690
|
};
|
|
494633
494691
|
}
|
|
494634
|
-
var
|
|
494692
|
+
var import_react_compiler_runtime299, import_react221, jsx_dev_runtime389, DEFAULT_PLACEHOLDERS;
|
|
494635
494693
|
var init_PermissionPrompt = __esm(() => {
|
|
494636
494694
|
init_ink2();
|
|
494637
494695
|
init_useKeybinding();
|
|
494638
494696
|
init_analytics();
|
|
494639
494697
|
init_AppState();
|
|
494640
494698
|
init_select();
|
|
494641
|
-
|
|
494699
|
+
import_react_compiler_runtime299 = __toESM(require_dist4(), 1);
|
|
494642
494700
|
import_react221 = __toESM(require_react(), 1);
|
|
494643
494701
|
jsx_dev_runtime389 = __toESM(require_jsx_dev_runtime(), 1);
|
|
494644
494702
|
DEFAULT_PLACEHOLDERS = {
|
|
@@ -494649,7 +494707,7 @@ var init_PermissionPrompt = __esm(() => {
|
|
|
494649
494707
|
|
|
494650
494708
|
// src/components/permissions/FallbackPermissionRequest.tsx
|
|
494651
494709
|
function FallbackPermissionRequest(t0) {
|
|
494652
|
-
const $2 =
|
|
494710
|
+
const $2 = import_react_compiler_runtime300.c(58);
|
|
494653
494711
|
const {
|
|
494654
494712
|
toolUseConfirm,
|
|
494655
494713
|
onDone,
|
|
@@ -495020,7 +495078,7 @@ function FallbackPermissionRequest(t0) {
|
|
|
495020
495078
|
}
|
|
495021
495079
|
return t20;
|
|
495022
495080
|
}
|
|
495023
|
-
var
|
|
495081
|
+
var import_react_compiler_runtime300, jsx_dev_runtime390;
|
|
495024
495082
|
var init_FallbackPermissionRequest = __esm(() => {
|
|
495025
495083
|
init_state();
|
|
495026
495084
|
init_ink2();
|
|
@@ -495033,7 +495091,7 @@ var init_FallbackPermissionRequest = __esm(() => {
|
|
|
495033
495091
|
init_PermissionDialog();
|
|
495034
495092
|
init_PermissionPrompt();
|
|
495035
495093
|
init_PermissionRuleExplanation();
|
|
495036
|
-
|
|
495094
|
+
import_react_compiler_runtime300 = __toESM(require_dist4(), 1);
|
|
495037
495095
|
jsx_dev_runtime390 = __toESM(require_jsx_dev_runtime(), 1);
|
|
495038
495096
|
});
|
|
495039
495097
|
|
|
@@ -495055,7 +495113,7 @@ function createSingleEditDiffConfig(filePath, oldString, newString, replaceAll)
|
|
|
495055
495113
|
// src/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.tsx
|
|
495056
495114
|
import { basename as basename49, relative as relative30 } from "path";
|
|
495057
495115
|
function FileEditPermissionRequest(props) {
|
|
495058
|
-
const $2 =
|
|
495116
|
+
const $2 = import_react_compiler_runtime301.c(51);
|
|
495059
495117
|
const parseInput = _temp178;
|
|
495060
495118
|
let T0;
|
|
495061
495119
|
let T1;
|
|
@@ -495235,14 +495293,14 @@ function FileEditPermissionRequest(props) {
|
|
|
495235
495293
|
function _temp178(input) {
|
|
495236
495294
|
return FileEditTool.inputSchema.parse(input);
|
|
495237
495295
|
}
|
|
495238
|
-
var
|
|
495296
|
+
var import_react_compiler_runtime301, jsx_dev_runtime391, ideDiffSupport;
|
|
495239
495297
|
var init_FileEditPermissionRequest = __esm(() => {
|
|
495240
495298
|
init_FileEditToolDiff();
|
|
495241
495299
|
init_cwd2();
|
|
495242
495300
|
init_ink2();
|
|
495243
495301
|
init_FileEditTool();
|
|
495244
495302
|
init_FilePermissionDialog();
|
|
495245
|
-
|
|
495303
|
+
import_react_compiler_runtime301 = __toESM(require_dist4(), 1);
|
|
495246
495304
|
jsx_dev_runtime391 = __toESM(require_jsx_dev_runtime(), 1);
|
|
495247
495305
|
ideDiffSupport = {
|
|
495248
495306
|
getConfig: (input) => createSingleEditDiffConfig(input.file_path, input.old_string, input.new_string, input.replace_all),
|
|
@@ -495274,7 +495332,7 @@ function pathFromToolUse(toolUseConfirm) {
|
|
|
495274
495332
|
return null;
|
|
495275
495333
|
}
|
|
495276
495334
|
function FilesystemPermissionRequest(t0) {
|
|
495277
|
-
const $2 =
|
|
495335
|
+
const $2 = import_react_compiler_runtime302.c(30);
|
|
495278
495336
|
const {
|
|
495279
495337
|
toolUseConfirm,
|
|
495280
495338
|
onDone,
|
|
@@ -495400,18 +495458,18 @@ function FilesystemPermissionRequest(t0) {
|
|
|
495400
495458
|
function _temp179(input) {
|
|
495401
495459
|
return input;
|
|
495402
495460
|
}
|
|
495403
|
-
var
|
|
495461
|
+
var import_react_compiler_runtime302, jsx_dev_runtime392;
|
|
495404
495462
|
var init_FilesystemPermissionRequest = __esm(() => {
|
|
495405
495463
|
init_ink2();
|
|
495406
495464
|
init_FallbackPermissionRequest();
|
|
495407
495465
|
init_FilePermissionDialog();
|
|
495408
|
-
|
|
495466
|
+
import_react_compiler_runtime302 = __toESM(require_dist4(), 1);
|
|
495409
495467
|
jsx_dev_runtime392 = __toESM(require_jsx_dev_runtime(), 1);
|
|
495410
495468
|
});
|
|
495411
495469
|
|
|
495412
495470
|
// src/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.tsx
|
|
495413
495471
|
function FileWriteToolDiff(t0) {
|
|
495414
|
-
const $2 =
|
|
495472
|
+
const $2 = import_react_compiler_runtime303.c(15);
|
|
495415
495473
|
const {
|
|
495416
495474
|
file_path,
|
|
495417
495475
|
content,
|
|
@@ -495511,21 +495569,21 @@ function _temp180(i3) {
|
|
|
495511
495569
|
}, undefined, false, undefined, this)
|
|
495512
495570
|
}, `ellipsis-${i3}`, false, undefined, this);
|
|
495513
495571
|
}
|
|
495514
|
-
var
|
|
495572
|
+
var import_react_compiler_runtime303, jsx_dev_runtime393;
|
|
495515
495573
|
var init_FileWriteToolDiff = __esm(() => {
|
|
495516
495574
|
init_useTerminalSize();
|
|
495517
495575
|
init_ink2();
|
|
495518
495576
|
init_diff2();
|
|
495519
495577
|
init_HighlightedCode();
|
|
495520
495578
|
init_StructuredDiff();
|
|
495521
|
-
|
|
495579
|
+
import_react_compiler_runtime303 = __toESM(require_dist4(), 1);
|
|
495522
495580
|
jsx_dev_runtime393 = __toESM(require_jsx_dev_runtime(), 1);
|
|
495523
495581
|
});
|
|
495524
495582
|
|
|
495525
495583
|
// src/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.tsx
|
|
495526
495584
|
import { basename as basename50, relative as relative31 } from "path";
|
|
495527
495585
|
function FileWritePermissionRequest(props) {
|
|
495528
|
-
const $2 =
|
|
495586
|
+
const $2 = import_react_compiler_runtime304.c(30);
|
|
495529
495587
|
const parseInput = _temp181;
|
|
495530
495588
|
let t0;
|
|
495531
495589
|
if ($2[0] !== props.toolUseConfirm.input) {
|
|
@@ -495676,7 +495734,7 @@ function FileWritePermissionRequest(props) {
|
|
|
495676
495734
|
function _temp181(input) {
|
|
495677
495735
|
return FileWriteTool.inputSchema.parse(input);
|
|
495678
495736
|
}
|
|
495679
|
-
var
|
|
495737
|
+
var import_react_compiler_runtime304, jsx_dev_runtime394, ideDiffSupport2;
|
|
495680
495738
|
var init_FileWritePermissionRequest = __esm(() => {
|
|
495681
495739
|
init_ink2();
|
|
495682
495740
|
init_FileWriteTool();
|
|
@@ -495685,7 +495743,7 @@ var init_FileWritePermissionRequest = __esm(() => {
|
|
|
495685
495743
|
init_fileRead();
|
|
495686
495744
|
init_FilePermissionDialog();
|
|
495687
495745
|
init_FileWriteToolDiff();
|
|
495688
|
-
|
|
495746
|
+
import_react_compiler_runtime304 = __toESM(require_dist4(), 1);
|
|
495689
495747
|
jsx_dev_runtime394 = __toESM(require_jsx_dev_runtime(), 1);
|
|
495690
495748
|
ideDiffSupport2 = {
|
|
495691
495749
|
getConfig: (input) => {
|
|
@@ -495715,7 +495773,7 @@ var init_FileWritePermissionRequest = __esm(() => {
|
|
|
495715
495773
|
// src/components/permissions/NotebookEditPermissionRequest/NotebookEditToolDiff.tsx
|
|
495716
495774
|
import { relative as relative32 } from "path";
|
|
495717
495775
|
function NotebookEditToolDiff(props) {
|
|
495718
|
-
const $2 =
|
|
495776
|
+
const $2 = import_react_compiler_runtime305.c(5);
|
|
495719
495777
|
let t0;
|
|
495720
495778
|
if ($2[0] !== props.notebook_path) {
|
|
495721
495779
|
t0 = getFsImplementation().readFile(props.notebook_path, {
|
|
@@ -495751,7 +495809,7 @@ function _temp183(content) {
|
|
|
495751
495809
|
return safeParseJSON(content);
|
|
495752
495810
|
}
|
|
495753
495811
|
function NotebookEditToolDiffInner(t0) {
|
|
495754
|
-
const $2 =
|
|
495812
|
+
const $2 = import_react_compiler_runtime305.c(34);
|
|
495755
495813
|
const {
|
|
495756
495814
|
notebook_path,
|
|
495757
495815
|
cell_id,
|
|
@@ -495979,7 +496037,7 @@ function _temp351(i3) {
|
|
|
495979
496037
|
}, undefined, false, undefined, this)
|
|
495980
496038
|
}, `ellipsis-${i3}`, false, undefined, this);
|
|
495981
496039
|
}
|
|
495982
|
-
var
|
|
496040
|
+
var import_react_compiler_runtime305, import_react222, jsx_dev_runtime395;
|
|
495983
496041
|
var init_NotebookEditToolDiff = __esm(() => {
|
|
495984
496042
|
init_ink2();
|
|
495985
496043
|
init_cwd2();
|
|
@@ -495989,7 +496047,7 @@ var init_NotebookEditToolDiff = __esm(() => {
|
|
|
495989
496047
|
init_notebook();
|
|
495990
496048
|
init_HighlightedCode();
|
|
495991
496049
|
init_StructuredDiff();
|
|
495992
|
-
|
|
496050
|
+
import_react_compiler_runtime305 = __toESM(require_dist4(), 1);
|
|
495993
496051
|
import_react222 = __toESM(require_react(), 1);
|
|
495994
496052
|
jsx_dev_runtime395 = __toESM(require_jsx_dev_runtime(), 1);
|
|
495995
496053
|
});
|
|
@@ -495997,7 +496055,7 @@ var init_NotebookEditToolDiff = __esm(() => {
|
|
|
495997
496055
|
// src/components/permissions/NotebookEditPermissionRequest/NotebookEditPermissionRequest.tsx
|
|
495998
496056
|
import { basename as basename51 } from "path";
|
|
495999
496057
|
function NotebookEditPermissionRequest(props) {
|
|
496000
|
-
const $2 =
|
|
496058
|
+
const $2 = import_react_compiler_runtime306.c(52);
|
|
496001
496059
|
const parseInput = _temp185;
|
|
496002
496060
|
let T0;
|
|
496003
496061
|
let T1;
|
|
@@ -496182,14 +496240,14 @@ function _temp185(input) {
|
|
|
496182
496240
|
}
|
|
496183
496241
|
return result.data;
|
|
496184
496242
|
}
|
|
496185
|
-
var
|
|
496243
|
+
var import_react_compiler_runtime306, jsx_dev_runtime396;
|
|
496186
496244
|
var init_NotebookEditPermissionRequest = __esm(() => {
|
|
496187
496245
|
init_ink2();
|
|
496188
496246
|
init_NotebookEditTool();
|
|
496189
496247
|
init_log3();
|
|
496190
496248
|
init_FilePermissionDialog();
|
|
496191
496249
|
init_NotebookEditToolDiff();
|
|
496192
|
-
|
|
496250
|
+
import_react_compiler_runtime306 = __toESM(require_dist4(), 1);
|
|
496193
496251
|
jsx_dev_runtime396 = __toESM(require_jsx_dev_runtime(), 1);
|
|
496194
496252
|
});
|
|
496195
496253
|
|
|
@@ -496744,7 +496802,7 @@ var init_PowerShellPermissionRequest = __esm(() => {
|
|
|
496744
496802
|
|
|
496745
496803
|
// src/components/permissions/SkillPermissionRequest/SkillPermissionRequest.tsx
|
|
496746
496804
|
function SkillPermissionRequest(props) {
|
|
496747
|
-
const $2 =
|
|
496805
|
+
const $2 = import_react_compiler_runtime307.c(51);
|
|
496748
496806
|
const {
|
|
496749
496807
|
toolUseConfirm,
|
|
496750
496808
|
onDone,
|
|
@@ -497152,7 +497210,7 @@ function _temp186(input) {
|
|
|
497152
497210
|
}
|
|
497153
497211
|
return result.data.skill;
|
|
497154
497212
|
}
|
|
497155
|
-
var
|
|
497213
|
+
var import_react_compiler_runtime307, jsx_dev_runtime398;
|
|
497156
497214
|
var init_SkillPermissionRequest = __esm(() => {
|
|
497157
497215
|
init_log3();
|
|
497158
497216
|
init_state();
|
|
@@ -497166,7 +497224,7 @@ var init_SkillPermissionRequest = __esm(() => {
|
|
|
497166
497224
|
init_PermissionDialog();
|
|
497167
497225
|
init_PermissionPrompt();
|
|
497168
497226
|
init_PermissionRuleExplanation();
|
|
497169
|
-
|
|
497227
|
+
import_react_compiler_runtime307 = __toESM(require_dist4(), 1);
|
|
497170
497228
|
jsx_dev_runtime398 = __toESM(require_jsx_dev_runtime(), 1);
|
|
497171
497229
|
});
|
|
497172
497230
|
|
|
@@ -497187,7 +497245,7 @@ function inputToPermissionRuleContent(input) {
|
|
|
497187
497245
|
}
|
|
497188
497246
|
}
|
|
497189
497247
|
function WebFetchPermissionRequest(t0) {
|
|
497190
|
-
const $2 =
|
|
497248
|
+
const $2 = import_react_compiler_runtime308.c(41);
|
|
497191
497249
|
const {
|
|
497192
497250
|
toolUseConfirm,
|
|
497193
497251
|
onDone,
|
|
@@ -497460,7 +497518,7 @@ function WebFetchPermissionRequest(t0) {
|
|
|
497460
497518
|
}
|
|
497461
497519
|
return t15;
|
|
497462
497520
|
}
|
|
497463
|
-
var
|
|
497521
|
+
var import_react_compiler_runtime308, jsx_dev_runtime399;
|
|
497464
497522
|
var init_WebFetchPermissionRequest = __esm(() => {
|
|
497465
497523
|
init_ink2();
|
|
497466
497524
|
init_WebFetchTool();
|
|
@@ -497470,7 +497528,7 @@ var init_WebFetchPermissionRequest = __esm(() => {
|
|
|
497470
497528
|
init_PermissionDialog();
|
|
497471
497529
|
init_PermissionRuleExplanation();
|
|
497472
497530
|
init_utils12();
|
|
497473
|
-
|
|
497531
|
+
import_react_compiler_runtime308 = __toESM(require_dist4(), 1);
|
|
497474
497532
|
jsx_dev_runtime399 = __toESM(require_jsx_dev_runtime(), 1);
|
|
497475
497533
|
});
|
|
497476
497534
|
|
|
@@ -497526,7 +497584,7 @@ function getNotificationMessage(toolUseConfirm) {
|
|
|
497526
497584
|
return `PointCode needs your permission to use ${toolName}`;
|
|
497527
497585
|
}
|
|
497528
497586
|
function PermissionRequest(t0) {
|
|
497529
|
-
const $2 =
|
|
497587
|
+
const $2 = import_react_compiler_runtime309.c(18);
|
|
497530
497588
|
const {
|
|
497531
497589
|
toolUseConfirm,
|
|
497532
497590
|
toolUseContext,
|
|
@@ -497604,7 +497662,7 @@ function PermissionRequest(t0) {
|
|
|
497604
497662
|
}
|
|
497605
497663
|
return t5;
|
|
497606
497664
|
}
|
|
497607
|
-
var
|
|
497665
|
+
var import_react_compiler_runtime309, jsx_dev_runtime400, ReviewArtifactTool = null, ReviewArtifactPermissionRequest = null, WorkflowTool2 = null, WorkflowPermissionRequest = null, MonitorTool2 = null, MonitorPermissionRequest = null;
|
|
497608
497666
|
var init_PermissionRequest = __esm(() => {
|
|
497609
497667
|
init_EnterPlanModeTool();
|
|
497610
497668
|
init_ExitPlanModeV2Tool();
|
|
@@ -497633,7 +497691,7 @@ var init_PermissionRequest = __esm(() => {
|
|
|
497633
497691
|
init_PowerShellPermissionRequest();
|
|
497634
497692
|
init_SkillPermissionRequest();
|
|
497635
497693
|
init_WebFetchPermissionRequest();
|
|
497636
|
-
|
|
497694
|
+
import_react_compiler_runtime309 = __toESM(require_dist4(), 1);
|
|
497637
497695
|
jsx_dev_runtime400 = __toESM(require_jsx_dev_runtime(), 1);
|
|
497638
497696
|
});
|
|
497639
497697
|
|
|
@@ -497883,7 +497941,7 @@ function resetTypeahead(ta) {
|
|
|
497883
497941
|
ta.timer = undefined;
|
|
497884
497942
|
}
|
|
497885
497943
|
function ResolvingSpinner() {
|
|
497886
|
-
const $2 =
|
|
497944
|
+
const $2 = import_react_compiler_runtime310.c(4);
|
|
497887
497945
|
const [frame, setFrame] = import_react224.useState(0);
|
|
497888
497946
|
let t0;
|
|
497889
497947
|
let t1;
|
|
@@ -497947,7 +498005,7 @@ function formatDateDisplay(isoValue, schema) {
|
|
|
497947
498005
|
}
|
|
497948
498006
|
}
|
|
497949
498007
|
function ElicitationDialog(t0) {
|
|
497950
|
-
const $2 =
|
|
498008
|
+
const $2 = import_react_compiler_runtime310.c(7);
|
|
497951
498009
|
const {
|
|
497952
498010
|
event,
|
|
497953
498011
|
onResponse,
|
|
@@ -499189,7 +499247,7 @@ ${message}`,
|
|
|
499189
499247
|
}, undefined, true, undefined, this)
|
|
499190
499248
|
}, undefined, false, undefined, this);
|
|
499191
499249
|
}
|
|
499192
|
-
var
|
|
499250
|
+
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
499251
|
var init_ElicitationDialog = __esm(() => {
|
|
499194
499252
|
init_figures();
|
|
499195
499253
|
init_overlayContext();
|
|
@@ -499205,14 +499263,14 @@ var init_ElicitationDialog = __esm(() => {
|
|
|
499205
499263
|
init_Dialog();
|
|
499206
499264
|
init_KeyboardShortcutHint();
|
|
499207
499265
|
init_TextInput();
|
|
499208
|
-
|
|
499266
|
+
import_react_compiler_runtime310 = __toESM(require_dist4(), 1);
|
|
499209
499267
|
import_react224 = __toESM(require_react(), 1);
|
|
499210
499268
|
jsx_dev_runtime401 = __toESM(require_jsx_dev_runtime(), 1);
|
|
499211
499269
|
});
|
|
499212
499270
|
|
|
499213
499271
|
// src/components/hooks/PromptDialog.tsx
|
|
499214
499272
|
function PromptDialog(t0) {
|
|
499215
|
-
const $2 =
|
|
499273
|
+
const $2 = import_react_compiler_runtime311.c(15);
|
|
499216
499274
|
const {
|
|
499217
499275
|
title,
|
|
499218
499276
|
toolInputSummary,
|
|
@@ -499301,13 +499359,13 @@ function _temp187(opt) {
|
|
|
499301
499359
|
description: opt.description
|
|
499302
499360
|
};
|
|
499303
499361
|
}
|
|
499304
|
-
var
|
|
499362
|
+
var import_react_compiler_runtime311, jsx_dev_runtime402;
|
|
499305
499363
|
var init_PromptDialog = __esm(() => {
|
|
499306
499364
|
init_ink2();
|
|
499307
499365
|
init_useKeybinding();
|
|
499308
499366
|
init_select();
|
|
499309
499367
|
init_PermissionDialog();
|
|
499310
|
-
|
|
499368
|
+
import_react_compiler_runtime311 = __toESM(require_dist4(), 1);
|
|
499311
499369
|
jsx_dev_runtime402 = __toESM(require_jsx_dev_runtime(), 1);
|
|
499312
499370
|
});
|
|
499313
499371
|
|
|
@@ -499382,7 +499440,7 @@ function companionReservedColumns(terminalColumns, speaking) {
|
|
|
499382
499440
|
const bubble = speaking && !isFullscreenActive() ? BUBBLE_WIDTH : 0;
|
|
499383
499441
|
return spriteColWidth(nameWidth) + SPRITE_PADDING_X + bubble;
|
|
499384
499442
|
}
|
|
499385
|
-
var
|
|
499443
|
+
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
499444
|
var init_CompanionSprite = __esm(() => {
|
|
499387
499445
|
init_figures();
|
|
499388
499446
|
init_useTerminalSize();
|
|
@@ -499394,7 +499452,7 @@ var init_CompanionSprite = __esm(() => {
|
|
|
499394
499452
|
init_companion();
|
|
499395
499453
|
init_sprites();
|
|
499396
499454
|
init_types4();
|
|
499397
|
-
|
|
499455
|
+
import_react_compiler_runtime312 = __toESM(require_dist4(), 1);
|
|
499398
499456
|
import_react227 = __toESM(require_react(), 1);
|
|
499399
499457
|
jsx_dev_runtime403 = __toESM(require_jsx_dev_runtime(), 1);
|
|
499400
499458
|
H2 = figures_default.heart;
|
|
@@ -499409,7 +499467,7 @@ function isBuddyTeaserWindow() {
|
|
|
499409
499467
|
return d.getFullYear() === 2026 && d.getMonth() === 3 && d.getDate() <= 7;
|
|
499410
499468
|
}
|
|
499411
499469
|
function RainbowText2(t0) {
|
|
499412
|
-
const $2 =
|
|
499470
|
+
const $2 = import_react_compiler_runtime313.c(2);
|
|
499413
499471
|
const {
|
|
499414
499472
|
text
|
|
499415
499473
|
} = t0;
|
|
@@ -499432,7 +499490,7 @@ function _temp188(ch2, i3) {
|
|
|
499432
499490
|
}, i3, false, undefined, this);
|
|
499433
499491
|
}
|
|
499434
499492
|
function useBuddyNotification() {
|
|
499435
|
-
const $2 =
|
|
499493
|
+
const $2 = import_react_compiler_runtime313.c(4);
|
|
499436
499494
|
const {
|
|
499437
499495
|
addNotification,
|
|
499438
499496
|
removeNotification
|
|
@@ -499483,13 +499541,13 @@ function findBuddyTriggerPositions(text) {
|
|
|
499483
499541
|
}
|
|
499484
499542
|
return triggers;
|
|
499485
499543
|
}
|
|
499486
|
-
var
|
|
499544
|
+
var import_react_compiler_runtime313, import_react228, jsx_dev_runtime404;
|
|
499487
499545
|
var init_useBuddyNotification = __esm(() => {
|
|
499488
499546
|
init_notifications();
|
|
499489
499547
|
init_ink2();
|
|
499490
499548
|
init_config2();
|
|
499491
499549
|
init_thinking();
|
|
499492
|
-
|
|
499550
|
+
import_react_compiler_runtime313 = __toESM(require_dist4(), 1);
|
|
499493
499551
|
import_react228 = __toESM(require_react(), 1);
|
|
499494
499552
|
jsx_dev_runtime404 = __toESM(require_jsx_dev_runtime(), 1);
|
|
499495
499553
|
});
|
|
@@ -499906,7 +499964,7 @@ var init_NativeAutoUpdater = __esm(() => {
|
|
|
499906
499964
|
|
|
499907
499965
|
// src/components/PackageManagerAutoUpdater.tsx
|
|
499908
499966
|
function PackageManagerAutoUpdater(t0) {
|
|
499909
|
-
const $2 =
|
|
499967
|
+
const $2 = import_react_compiler_runtime314.c(10);
|
|
499910
499968
|
const {
|
|
499911
499969
|
verbose
|
|
499912
499970
|
} = t0;
|
|
@@ -500010,7 +500068,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
500010
500068
|
}
|
|
500011
500069
|
return t6;
|
|
500012
500070
|
}
|
|
500013
|
-
var
|
|
500071
|
+
var import_react_compiler_runtime314, React134, import_react234, jsx_dev_runtime407;
|
|
500014
500072
|
var init_PackageManagerAutoUpdater = __esm(() => {
|
|
500015
500073
|
init_dist();
|
|
500016
500074
|
init_ink2();
|
|
@@ -500019,7 +500077,7 @@ var init_PackageManagerAutoUpdater = __esm(() => {
|
|
|
500019
500077
|
init_debug();
|
|
500020
500078
|
init_packageManagers();
|
|
500021
500079
|
init_settings2();
|
|
500022
|
-
|
|
500080
|
+
import_react_compiler_runtime314 = __toESM(require_dist4(), 1);
|
|
500023
500081
|
React134 = __toESM(require_react(), 1);
|
|
500024
500082
|
import_react234 = __toESM(require_react(), 1);
|
|
500025
500083
|
jsx_dev_runtime407 = __toESM(require_jsx_dev_runtime(), 1);
|
|
@@ -500027,7 +500085,7 @@ var init_PackageManagerAutoUpdater = __esm(() => {
|
|
|
500027
500085
|
|
|
500028
500086
|
// src/components/AutoUpdaterWrapper.tsx
|
|
500029
500087
|
function AutoUpdaterWrapper(t0) {
|
|
500030
|
-
const $2 =
|
|
500088
|
+
const $2 = import_react_compiler_runtime315.c(17);
|
|
500031
500089
|
const {
|
|
500032
500090
|
isUpdating,
|
|
500033
500091
|
onChangeIsUpdating,
|
|
@@ -500109,7 +500167,7 @@ function AutoUpdaterWrapper(t0) {
|
|
|
500109
500167
|
}
|
|
500110
500168
|
return t3;
|
|
500111
500169
|
}
|
|
500112
|
-
var
|
|
500170
|
+
var import_react_compiler_runtime315, React135, jsx_dev_runtime408;
|
|
500113
500171
|
var init_AutoUpdaterWrapper = __esm(() => {
|
|
500114
500172
|
init_config2();
|
|
500115
500173
|
init_debug();
|
|
@@ -500117,7 +500175,7 @@ var init_AutoUpdaterWrapper = __esm(() => {
|
|
|
500117
500175
|
init_AutoUpdater();
|
|
500118
500176
|
init_NativeAutoUpdater();
|
|
500119
500177
|
init_PackageManagerAutoUpdater();
|
|
500120
|
-
|
|
500178
|
+
import_react_compiler_runtime315 = __toESM(require_dist4(), 1);
|
|
500121
500179
|
React135 = __toESM(require_react(), 1);
|
|
500122
500180
|
jsx_dev_runtime408 = __toESM(require_jsx_dev_runtime(), 1);
|
|
500123
500181
|
});
|
|
@@ -500125,7 +500183,7 @@ var init_AutoUpdaterWrapper = __esm(() => {
|
|
|
500125
500183
|
// src/components/IdeStatusIndicator.tsx
|
|
500126
500184
|
import { basename as basename52 } from "path";
|
|
500127
500185
|
function IdeStatusIndicator(t0) {
|
|
500128
|
-
const $2 =
|
|
500186
|
+
const $2 = import_react_compiler_runtime316.c(7);
|
|
500129
500187
|
const {
|
|
500130
500188
|
ideSelection,
|
|
500131
500189
|
mcpClients
|
|
@@ -500187,11 +500245,11 @@ function IdeStatusIndicator(t0) {
|
|
|
500187
500245
|
return t2;
|
|
500188
500246
|
}
|
|
500189
500247
|
}
|
|
500190
|
-
var
|
|
500248
|
+
var import_react_compiler_runtime316, jsx_dev_runtime409;
|
|
500191
500249
|
var init_IdeStatusIndicator = __esm(() => {
|
|
500192
500250
|
init_useIdeConnectionStatus();
|
|
500193
500251
|
init_ink2();
|
|
500194
|
-
|
|
500252
|
+
import_react_compiler_runtime316 = __toESM(require_dist4(), 1);
|
|
500195
500253
|
jsx_dev_runtime409 = __toESM(require_jsx_dev_runtime(), 1);
|
|
500196
500254
|
});
|
|
500197
500255
|
|
|
@@ -500267,7 +500325,7 @@ var init_compactWarningHook = __esm(() => {
|
|
|
500267
500325
|
|
|
500268
500326
|
// src/components/TokenWarning.tsx
|
|
500269
500327
|
function TokenWarning(t0) {
|
|
500270
|
-
const $2 =
|
|
500328
|
+
const $2 = import_react_compiler_runtime317.c(13);
|
|
500271
500329
|
const {
|
|
500272
500330
|
tokenUsage,
|
|
500273
500331
|
model
|
|
@@ -500349,21 +500407,21 @@ function TokenWarning(t0) {
|
|
|
500349
500407
|
}
|
|
500350
500408
|
return t4;
|
|
500351
500409
|
}
|
|
500352
|
-
var
|
|
500410
|
+
var import_react_compiler_runtime317, import_react237, jsx_dev_runtime411;
|
|
500353
500411
|
var init_TokenWarning = __esm(() => {
|
|
500354
500412
|
init_ink2();
|
|
500355
500413
|
init_growthbook();
|
|
500356
500414
|
init_autoCompact();
|
|
500357
500415
|
init_compactWarningHook();
|
|
500358
500416
|
init_contextWindowUpgradeCheck();
|
|
500359
|
-
|
|
500417
|
+
import_react_compiler_runtime317 = __toESM(require_dist4(), 1);
|
|
500360
500418
|
import_react237 = __toESM(require_react(), 1);
|
|
500361
500419
|
jsx_dev_runtime411 = __toESM(require_jsx_dev_runtime(), 1);
|
|
500362
500420
|
});
|
|
500363
500421
|
|
|
500364
500422
|
// src/components/PromptInput/SandboxPromptFooterHint.tsx
|
|
500365
500423
|
function SandboxPromptFooterHint() {
|
|
500366
|
-
const $2 =
|
|
500424
|
+
const $2 = import_react_compiler_runtime318.c(6);
|
|
500367
500425
|
const [recentViolationCount, setRecentViolationCount] = import_react238.useState(0);
|
|
500368
500426
|
const timerRef = import_react238.useRef(null);
|
|
500369
500427
|
const detailsShortcut = useShortcutDisplay("app:toggleTranscript", "Global", "ctrl+o");
|
|
@@ -500436,19 +500494,19 @@ function SandboxPromptFooterHint() {
|
|
|
500436
500494
|
}
|
|
500437
500495
|
return t3;
|
|
500438
500496
|
}
|
|
500439
|
-
var
|
|
500497
|
+
var import_react_compiler_runtime318, import_react238, jsx_dev_runtime412;
|
|
500440
500498
|
var init_SandboxPromptFooterHint = __esm(() => {
|
|
500441
500499
|
init_ink2();
|
|
500442
500500
|
init_useShortcutDisplay();
|
|
500443
500501
|
init_sandbox_adapter();
|
|
500444
|
-
|
|
500502
|
+
import_react_compiler_runtime318 = __toESM(require_dist4(), 1);
|
|
500445
500503
|
import_react238 = __toESM(require_react(), 1);
|
|
500446
500504
|
jsx_dev_runtime412 = __toESM(require_jsx_dev_runtime(), 1);
|
|
500447
500505
|
});
|
|
500448
500506
|
|
|
500449
500507
|
// src/components/PromptInput/Notifications.tsx
|
|
500450
500508
|
function Notifications(t0) {
|
|
500451
|
-
const $2 =
|
|
500509
|
+
const $2 = import_react_compiler_runtime319.c(34);
|
|
500452
500510
|
const {
|
|
500453
500511
|
apiKeyStatus,
|
|
500454
500512
|
autoUpdaterResult,
|
|
@@ -500760,7 +500818,7 @@ function NotificationContent({
|
|
|
500760
500818
|
]
|
|
500761
500819
|
}, undefined, true, undefined, this);
|
|
500762
500820
|
}
|
|
500763
|
-
var
|
|
500821
|
+
var import_react_compiler_runtime319, import_react239, jsx_dev_runtime413, FOOTER_TEMPORARY_STATUS_TIMEOUT = 5000;
|
|
500764
500822
|
var init_Notifications = __esm(() => {
|
|
500765
500823
|
init_notifications();
|
|
500766
500824
|
init_analytics();
|
|
@@ -500787,7 +500845,7 @@ var init_Notifications = __esm(() => {
|
|
|
500787
500845
|
init_SentryErrorBoundary();
|
|
500788
500846
|
init_TokenWarning();
|
|
500789
500847
|
init_SandboxPromptFooterHint();
|
|
500790
|
-
|
|
500848
|
+
import_react_compiler_runtime319 = __toESM(require_dist4(), 1);
|
|
500791
500849
|
import_react239 = __toESM(require_react(), 1);
|
|
500792
500850
|
jsx_dev_runtime413 = __toESM(require_jsx_dev_runtime(), 1);
|
|
500793
500851
|
});
|
|
@@ -504565,14 +504623,14 @@ var init_keyword = __esm(() => {
|
|
|
504565
504623
|
});
|
|
504566
504624
|
|
|
504567
504625
|
// src/components/AutoModeOptInDialog.tsx
|
|
504568
|
-
var
|
|
504626
|
+
var import_react_compiler_runtime320, import_react245, jsx_dev_runtime416;
|
|
504569
504627
|
var init_AutoModeOptInDialog = __esm(() => {
|
|
504570
504628
|
init_analytics();
|
|
504571
504629
|
init_ink2();
|
|
504572
504630
|
init_settings2();
|
|
504573
504631
|
init_CustomSelect();
|
|
504574
504632
|
init_Dialog();
|
|
504575
|
-
|
|
504633
|
+
import_react_compiler_runtime320 = __toESM(require_dist4(), 1);
|
|
504576
504634
|
import_react245 = __toESM(require_react(), 1);
|
|
504577
504635
|
jsx_dev_runtime416 = __toESM(require_jsx_dev_runtime(), 1);
|
|
504578
504636
|
});
|
|
@@ -504580,7 +504638,7 @@ var init_AutoModeOptInDialog = __esm(() => {
|
|
|
504580
504638
|
// src/components/BridgeDialog.tsx
|
|
504581
504639
|
import { basename as basename54 } from "path";
|
|
504582
504640
|
function BridgeDialog(t0) {
|
|
504583
|
-
const $2 =
|
|
504641
|
+
const $2 = import_react_compiler_runtime321.c(87);
|
|
504584
504642
|
const {
|
|
504585
504643
|
onDone
|
|
504586
504644
|
} = t0;
|
|
@@ -505024,7 +505082,7 @@ function _temp279(s_0) {
|
|
|
505024
505082
|
function _temp190(s) {
|
|
505025
505083
|
return s.replBridgeConnected;
|
|
505026
505084
|
}
|
|
505027
|
-
var
|
|
505085
|
+
var import_react_compiler_runtime321, import_react246, jsx_dev_runtime417;
|
|
505028
505086
|
var init_BridgeDialog = __esm(() => {
|
|
505029
505087
|
init_server();
|
|
505030
505088
|
init_state();
|
|
@@ -505037,7 +505095,7 @@ var init_BridgeDialog = __esm(() => {
|
|
|
505037
505095
|
init_config2();
|
|
505038
505096
|
init_git();
|
|
505039
505097
|
init_Dialog();
|
|
505040
|
-
|
|
505098
|
+
import_react_compiler_runtime321 = __toESM(require_dist4(), 1);
|
|
505041
505099
|
import_react246 = __toESM(require_react(), 1);
|
|
505042
505100
|
jsx_dev_runtime417 = __toESM(require_jsx_dev_runtime(), 1);
|
|
505043
505101
|
});
|
|
@@ -505055,7 +505113,7 @@ function useCoordinatorTaskCount() {
|
|
|
505055
505113
|
function _temp191(s) {
|
|
505056
505114
|
return s.tasks;
|
|
505057
505115
|
}
|
|
505058
|
-
var
|
|
505116
|
+
var import_react_compiler_runtime322, React138, jsx_dev_runtime418;
|
|
505059
505117
|
var init_CoordinatorAgentStatus = __esm(() => {
|
|
505060
505118
|
init_figures2();
|
|
505061
505119
|
init_useTerminalSize();
|
|
@@ -505067,7 +505125,7 @@ var init_CoordinatorAgentStatus = __esm(() => {
|
|
|
505067
505125
|
init_format();
|
|
505068
505126
|
init_framework();
|
|
505069
505127
|
init_taskStatusUtils();
|
|
505070
|
-
|
|
505128
|
+
import_react_compiler_runtime322 = __toESM(require_dist4(), 1);
|
|
505071
505129
|
React138 = __toESM(require_react(), 1);
|
|
505072
505130
|
jsx_dev_runtime418 = __toESM(require_jsx_dev_runtime(), 1);
|
|
505073
505131
|
});
|
|
@@ -505080,7 +505138,7 @@ var init_highlightMatch = __esm(() => {
|
|
|
505080
505138
|
});
|
|
505081
505139
|
|
|
505082
505140
|
// src/components/design-system/FuzzyPicker.tsx
|
|
505083
|
-
var
|
|
505141
|
+
var import_react_compiler_runtime323, import_react247, jsx_dev_runtime420;
|
|
505084
505142
|
var init_FuzzyPicker = __esm(() => {
|
|
505085
505143
|
init_useSearchInput();
|
|
505086
505144
|
init_useTerminalSize();
|
|
@@ -505091,13 +505149,13 @@ var init_FuzzyPicker = __esm(() => {
|
|
|
505091
505149
|
init_KeyboardShortcutHint();
|
|
505092
505150
|
init_ListItem();
|
|
505093
505151
|
init_Pane();
|
|
505094
|
-
|
|
505152
|
+
import_react_compiler_runtime323 = __toESM(require_dist4(), 1);
|
|
505095
505153
|
import_react247 = __toESM(require_react(), 1);
|
|
505096
505154
|
jsx_dev_runtime420 = __toESM(require_jsx_dev_runtime(), 1);
|
|
505097
505155
|
});
|
|
505098
505156
|
|
|
505099
505157
|
// src/components/GlobalSearchDialog.tsx
|
|
505100
|
-
var
|
|
505158
|
+
var import_react_compiler_runtime324, import_react248, jsx_dev_runtime421;
|
|
505101
505159
|
var init_GlobalSearchDialog = __esm(() => {
|
|
505102
505160
|
init_overlayContext();
|
|
505103
505161
|
init_useTerminalSize();
|
|
@@ -505112,7 +505170,7 @@ var init_GlobalSearchDialog = __esm(() => {
|
|
|
505112
505170
|
init_ripgrep();
|
|
505113
505171
|
init_FuzzyPicker();
|
|
505114
505172
|
init_LoadingState();
|
|
505115
|
-
|
|
505173
|
+
import_react_compiler_runtime324 = __toESM(require_dist4(), 1);
|
|
505116
505174
|
import_react248 = __toESM(require_react(), 1);
|
|
505117
505175
|
jsx_dev_runtime421 = __toESM(require_jsx_dev_runtime(), 1);
|
|
505118
505176
|
});
|
|
@@ -505134,7 +505192,7 @@ var init_HistorySearchDialog = __esm(() => {
|
|
|
505134
505192
|
});
|
|
505135
505193
|
|
|
505136
505194
|
// src/components/QuickOpenDialog.tsx
|
|
505137
|
-
var
|
|
505195
|
+
var import_react_compiler_runtime325, import_react250, jsx_dev_runtime423;
|
|
505138
505196
|
var init_QuickOpenDialog = __esm(() => {
|
|
505139
505197
|
init_overlayContext();
|
|
505140
505198
|
init_fileSuggestions();
|
|
@@ -505148,14 +505206,14 @@ var init_QuickOpenDialog = __esm(() => {
|
|
|
505148
505206
|
init_readFileInRange();
|
|
505149
505207
|
init_FuzzyPicker();
|
|
505150
505208
|
init_LoadingState();
|
|
505151
|
-
|
|
505209
|
+
import_react_compiler_runtime325 = __toESM(require_dist4(), 1);
|
|
505152
505210
|
import_react250 = __toESM(require_react(), 1);
|
|
505153
505211
|
jsx_dev_runtime423 = __toESM(require_jsx_dev_runtime(), 1);
|
|
505154
505212
|
});
|
|
505155
505213
|
|
|
505156
505214
|
// src/components/ThinkingToggle.tsx
|
|
505157
505215
|
function ThinkingToggle(t0) {
|
|
505158
|
-
const $2 =
|
|
505216
|
+
const $2 = import_react_compiler_runtime326.c(27);
|
|
505159
505217
|
const {
|
|
505160
505218
|
currentValue,
|
|
505161
505219
|
onSelect,
|
|
@@ -505376,7 +505434,7 @@ function ThinkingToggle(t0) {
|
|
|
505376
505434
|
return t11;
|
|
505377
505435
|
}
|
|
505378
505436
|
function _temp192() {}
|
|
505379
|
-
var
|
|
505437
|
+
var import_react_compiler_runtime326, import_react251, jsx_dev_runtime424;
|
|
505380
505438
|
var init_ThinkingToggle = __esm(() => {
|
|
505381
505439
|
init_useExitOnCtrlCDWithKeybindings();
|
|
505382
505440
|
init_ink2();
|
|
@@ -505386,7 +505444,7 @@ var init_ThinkingToggle = __esm(() => {
|
|
|
505386
505444
|
init_Byline();
|
|
505387
505445
|
init_KeyboardShortcutHint();
|
|
505388
505446
|
init_Pane();
|
|
505389
|
-
|
|
505447
|
+
import_react_compiler_runtime326 = __toESM(require_dist4(), 1);
|
|
505390
505448
|
import_react251 = __toESM(require_react(), 1);
|
|
505391
505449
|
jsx_dev_runtime424 = __toESM(require_jsx_dev_runtime(), 1);
|
|
505392
505450
|
});
|
|
@@ -505584,7 +505642,7 @@ function TeamsDialog({
|
|
|
505584
505642
|
return null;
|
|
505585
505643
|
}
|
|
505586
505644
|
function TeamDetailView(t0) {
|
|
505587
|
-
const $2 =
|
|
505645
|
+
const $2 = import_react_compiler_runtime327.c(13);
|
|
505588
505646
|
const {
|
|
505589
505647
|
teamName,
|
|
505590
505648
|
teammates,
|
|
@@ -505671,7 +505729,7 @@ function TeamDetailView(t0) {
|
|
|
505671
505729
|
return t5;
|
|
505672
505730
|
}
|
|
505673
505731
|
function TeammateListItem(t0) {
|
|
505674
|
-
const $2 =
|
|
505732
|
+
const $2 = import_react_compiler_runtime327.c(21);
|
|
505675
505733
|
const {
|
|
505676
505734
|
teammate,
|
|
505677
505735
|
isSelected
|
|
@@ -505776,7 +505834,7 @@ function TeammateListItem(t0) {
|
|
|
505776
505834
|
return t8;
|
|
505777
505835
|
}
|
|
505778
505836
|
function TeammateDetailView(t0) {
|
|
505779
|
-
const $2 =
|
|
505837
|
+
const $2 = import_react_compiler_runtime327.c(39);
|
|
505780
505838
|
const {
|
|
505781
505839
|
teammate,
|
|
505782
505840
|
teamName,
|
|
@@ -506134,7 +506192,7 @@ function cycleAllTeammateModes(teammates, teamName, isBypassAvailable) {
|
|
|
506134
506192
|
}
|
|
506135
506193
|
logForDebugging2(`[TeamsDialog] Sent mode change to all ${teammates.length} teammates: ${targetMode}`);
|
|
506136
506194
|
}
|
|
506137
|
-
var
|
|
506195
|
+
var import_react_compiler_runtime327, import_react252, jsx_dev_runtime425;
|
|
506138
506196
|
var init_TeamsDialog = __esm(() => {
|
|
506139
506197
|
init_figures();
|
|
506140
506198
|
init_dist();
|
|
@@ -506160,7 +506218,7 @@ var init_TeamsDialog = __esm(() => {
|
|
|
506160
506218
|
init_teammateMailbox();
|
|
506161
506219
|
init_Dialog();
|
|
506162
506220
|
init_ThemedText();
|
|
506163
|
-
|
|
506221
|
+
import_react_compiler_runtime327 = __toESM(require_dist4(), 1);
|
|
506164
506222
|
import_react252 = __toESM(require_react(), 1);
|
|
506165
506223
|
jsx_dev_runtime425 = __toESM(require_jsx_dev_runtime(), 1);
|
|
506166
506224
|
});
|
|
@@ -507259,7 +507317,7 @@ var init_useVimInput = __esm(() => {
|
|
|
507259
507317
|
|
|
507260
507318
|
// src/components/VimTextInput.tsx
|
|
507261
507319
|
function VimTextInput(props) {
|
|
507262
|
-
const $2 =
|
|
507320
|
+
const $2 = import_react_compiler_runtime328.c(38);
|
|
507263
507321
|
const [theme2] = useTheme();
|
|
507264
507322
|
const isTerminalFocused = useTerminalFocus();
|
|
507265
507323
|
useClipboardImageHint(isTerminalFocused, !!props.onImagePaste);
|
|
@@ -507393,14 +507451,14 @@ function VimTextInput(props) {
|
|
|
507393
507451
|
function _temp194(text) {
|
|
507394
507452
|
return text;
|
|
507395
507453
|
}
|
|
507396
|
-
var
|
|
507454
|
+
var import_react_compiler_runtime328, import_react254, jsx_dev_runtime426;
|
|
507397
507455
|
var init_VimTextInput = __esm(() => {
|
|
507398
507456
|
init_source();
|
|
507399
507457
|
init_useClipboardImageHint();
|
|
507400
507458
|
init_useVimInput();
|
|
507401
507459
|
init_ink2();
|
|
507402
507460
|
init_BaseTextInput();
|
|
507403
|
-
|
|
507461
|
+
import_react_compiler_runtime328 = __toESM(require_dist4(), 1);
|
|
507404
507462
|
import_react254 = __toESM(require_react(), 1);
|
|
507405
507463
|
jsx_dev_runtime426 = __toESM(require_jsx_dev_runtime(), 1);
|
|
507406
507464
|
});
|
|
@@ -507750,7 +507808,7 @@ function calculateHorizontalScrollWindow(itemWidths, availableWidth, arrowWidth,
|
|
|
507750
507808
|
|
|
507751
507809
|
// src/components/tasks/BackgroundTaskStatus.tsx
|
|
507752
507810
|
function BackgroundTaskStatus(t0) {
|
|
507753
|
-
const $2 =
|
|
507811
|
+
const $2 = import_react_compiler_runtime329.c(48);
|
|
507754
507812
|
const {
|
|
507755
507813
|
tasksSelected,
|
|
507756
507814
|
isViewingTeammate,
|
|
@@ -508063,7 +508121,7 @@ function _temp195(s) {
|
|
|
508063
508121
|
return s.tasks;
|
|
508064
508122
|
}
|
|
508065
508123
|
function AgentPill(t0) {
|
|
508066
|
-
const $2 =
|
|
508124
|
+
const $2 = import_react_compiler_runtime329.c(19);
|
|
508067
508125
|
const {
|
|
508068
508126
|
name,
|
|
508069
508127
|
color: color3,
|
|
@@ -508195,7 +508253,7 @@ function AgentPill(t0) {
|
|
|
508195
508253
|
return t3;
|
|
508196
508254
|
}
|
|
508197
508255
|
function SummaryPill(t0) {
|
|
508198
|
-
const $2 =
|
|
508256
|
+
const $2 = import_react_compiler_runtime329.c(8);
|
|
508199
508257
|
const {
|
|
508200
508258
|
selected,
|
|
508201
508259
|
onClick,
|
|
@@ -508255,7 +508313,7 @@ function getAgentThemeColor(colorName) {
|
|
|
508255
508313
|
}
|
|
508256
508314
|
return;
|
|
508257
508315
|
}
|
|
508258
|
-
var
|
|
508316
|
+
var import_react_compiler_runtime329, React141, import_react256, jsx_dev_runtime428;
|
|
508259
508317
|
var init_BackgroundTaskStatus = __esm(() => {
|
|
508260
508318
|
init_figures();
|
|
508261
508319
|
init_useTerminalSize();
|
|
@@ -508268,7 +508326,7 @@ var init_BackgroundTaskStatus = __esm(() => {
|
|
|
508268
508326
|
init_agentColorManager();
|
|
508269
508327
|
init_KeyboardShortcutHint();
|
|
508270
508328
|
init_taskStatusUtils();
|
|
508271
|
-
|
|
508329
|
+
import_react_compiler_runtime329 = __toESM(require_dist4(), 1);
|
|
508272
508330
|
React141 = __toESM(require_react(), 1);
|
|
508273
508331
|
import_react256 = __toESM(require_react(), 1);
|
|
508274
508332
|
jsx_dev_runtime428 = __toESM(require_jsx_dev_runtime(), 1);
|
|
@@ -508276,7 +508334,7 @@ var init_BackgroundTaskStatus = __esm(() => {
|
|
|
508276
508334
|
|
|
508277
508335
|
// src/components/teams/TeamStatus.tsx
|
|
508278
508336
|
function TeamStatus(t0) {
|
|
508279
|
-
const $2 =
|
|
508337
|
+
const $2 = import_react_compiler_runtime330.c(14);
|
|
508280
508338
|
const {
|
|
508281
508339
|
teamsSelected,
|
|
508282
508340
|
showHint
|
|
@@ -508366,17 +508424,17 @@ function _temp282(t) {
|
|
|
508366
508424
|
function _temp196(s) {
|
|
508367
508425
|
return s.teamContext;
|
|
508368
508426
|
}
|
|
508369
|
-
var
|
|
508427
|
+
var import_react_compiler_runtime330, jsx_dev_runtime429;
|
|
508370
508428
|
var init_TeamStatus = __esm(() => {
|
|
508371
508429
|
init_ink2();
|
|
508372
508430
|
init_AppState();
|
|
508373
|
-
|
|
508431
|
+
import_react_compiler_runtime330 = __toESM(require_dist4(), 1);
|
|
508374
508432
|
jsx_dev_runtime429 = __toESM(require_jsx_dev_runtime(), 1);
|
|
508375
508433
|
});
|
|
508376
508434
|
|
|
508377
508435
|
// src/components/PromptInput/HistorySearchInput.tsx
|
|
508378
508436
|
function HistorySearchInput(t0) {
|
|
508379
|
-
const $2 =
|
|
508437
|
+
const $2 = import_react_compiler_runtime331.c(9);
|
|
508380
508438
|
const {
|
|
508381
508439
|
value,
|
|
508382
508440
|
onChange,
|
|
@@ -508433,12 +508491,12 @@ function HistorySearchInput(t0) {
|
|
|
508433
508491
|
return t5;
|
|
508434
508492
|
}
|
|
508435
508493
|
function _temp197() {}
|
|
508436
|
-
var
|
|
508494
|
+
var import_react_compiler_runtime331, jsx_dev_runtime430, HistorySearchInput_default;
|
|
508437
508495
|
var init_HistorySearchInput = __esm(() => {
|
|
508438
508496
|
init_stringWidth();
|
|
508439
508497
|
init_ink2();
|
|
508440
508498
|
init_TextInput();
|
|
508441
|
-
|
|
508499
|
+
import_react_compiler_runtime331 = __toESM(require_dist4(), 1);
|
|
508442
508500
|
jsx_dev_runtime430 = __toESM(require_jsx_dev_runtime(), 1);
|
|
508443
508501
|
HistorySearchInput_default = HistorySearchInput;
|
|
508444
508502
|
});
|
|
@@ -508579,18 +508637,18 @@ var init_usePrStatus = __esm(() => {
|
|
|
508579
508637
|
});
|
|
508580
508638
|
|
|
508581
508639
|
// src/components/PromptInput/VoiceIndicator.tsx
|
|
508582
|
-
var
|
|
508640
|
+
var import_react_compiler_runtime332, jsx_dev_runtime431;
|
|
508583
508641
|
var init_VoiceIndicator = __esm(() => {
|
|
508584
508642
|
init_useSettings();
|
|
508585
508643
|
init_ink2();
|
|
508586
508644
|
init_utils5();
|
|
508587
|
-
|
|
508645
|
+
import_react_compiler_runtime332 = __toESM(require_dist4(), 1);
|
|
508588
508646
|
jsx_dev_runtime431 = __toESM(require_jsx_dev_runtime(), 1);
|
|
508589
508647
|
});
|
|
508590
508648
|
|
|
508591
508649
|
// src/components/PromptInput/PromptInputFooterLeftSide.tsx
|
|
508592
508650
|
function PromptInputFooterLeftSide(t0) {
|
|
508593
|
-
const $2 =
|
|
508651
|
+
const $2 = import_react_compiler_runtime333.c(27);
|
|
508594
508652
|
const {
|
|
508595
508653
|
exitMessage,
|
|
508596
508654
|
vimMode,
|
|
@@ -508993,7 +509051,7 @@ function getSpinnerHintParts(isLoading, escShortcut, todosShortcut, killAgentsSh
|
|
|
508993
509051
|
function isPrStatusEnabled() {
|
|
508994
509052
|
return getGlobalConfig().prStatusFooterEnabled ?? true;
|
|
508995
509053
|
}
|
|
508996
|
-
var
|
|
509054
|
+
var import_react_compiler_runtime333, import_react258, jsx_dev_runtime432, proactiveModule3 = null, NO_OP_SUBSCRIBE = (_cb) => () => {}, NULL = () => null;
|
|
508997
509055
|
var init_PromptInputFooterLeftSide = __esm(() => {
|
|
508998
509056
|
init_ink2();
|
|
508999
509057
|
init_figures();
|
|
@@ -509025,7 +509083,7 @@ var init_PromptInputFooterLeftSide = __esm(() => {
|
|
|
509025
509083
|
init_config2();
|
|
509026
509084
|
init_platform2();
|
|
509027
509085
|
init_PrBadge();
|
|
509028
|
-
|
|
509086
|
+
import_react_compiler_runtime333 = __toESM(require_dist4(), 1);
|
|
509029
509087
|
import_react258 = __toESM(require_react(), 1);
|
|
509030
509088
|
jsx_dev_runtime432 = __toESM(require_jsx_dev_runtime(), 1);
|
|
509031
509089
|
});
|
|
@@ -509242,7 +509300,7 @@ function getTeammateThemeColor() {
|
|
|
509242
509300
|
return;
|
|
509243
509301
|
}
|
|
509244
509302
|
function PromptChar(t0) {
|
|
509245
|
-
const $2 =
|
|
509303
|
+
const $2 = import_react_compiler_runtime334.c(3);
|
|
509246
509304
|
const {
|
|
509247
509305
|
isLoading,
|
|
509248
509306
|
themeColor
|
|
@@ -509268,7 +509326,7 @@ function PromptChar(t0) {
|
|
|
509268
509326
|
return t1;
|
|
509269
509327
|
}
|
|
509270
509328
|
function PromptInputModeIndicator(t0) {
|
|
509271
|
-
const $2 =
|
|
509329
|
+
const $2 = import_react_compiler_runtime334.c(6);
|
|
509272
509330
|
const {
|
|
509273
509331
|
mode,
|
|
509274
509332
|
isLoading,
|
|
@@ -509313,14 +509371,14 @@ function PromptInputModeIndicator(t0) {
|
|
|
509313
509371
|
}
|
|
509314
509372
|
return t2;
|
|
509315
509373
|
}
|
|
509316
|
-
var
|
|
509374
|
+
var import_react_compiler_runtime334, jsx_dev_runtime434;
|
|
509317
509375
|
var init_PromptInputModeIndicator = __esm(() => {
|
|
509318
509376
|
init_figures();
|
|
509319
509377
|
init_ink2();
|
|
509320
509378
|
init_agentColorManager();
|
|
509321
509379
|
init_teammate();
|
|
509322
509380
|
init_agentSwarmsEnabled();
|
|
509323
|
-
|
|
509381
|
+
import_react_compiler_runtime334 = __toESM(require_dist4(), 1);
|
|
509324
509382
|
jsx_dev_runtime434 = __toESM(require_jsx_dev_runtime(), 1);
|
|
509325
509383
|
});
|
|
509326
509384
|
|
|
@@ -509421,7 +509479,7 @@ var init_PromptInputQueuedCommands = __esm(() => {
|
|
|
509421
509479
|
|
|
509422
509480
|
// src/components/PromptInput/PromptInputStashNotice.tsx
|
|
509423
509481
|
function PromptInputStashNotice(t0) {
|
|
509424
|
-
const $2 =
|
|
509482
|
+
const $2 = import_react_compiler_runtime335.c(1);
|
|
509425
509483
|
const {
|
|
509426
509484
|
hasStash
|
|
509427
509485
|
} = t0;
|
|
@@ -509446,11 +509504,11 @@ function PromptInputStashNotice(t0) {
|
|
|
509446
509504
|
}
|
|
509447
509505
|
return t1;
|
|
509448
509506
|
}
|
|
509449
|
-
var
|
|
509507
|
+
var import_react_compiler_runtime335, jsx_dev_runtime436;
|
|
509450
509508
|
var init_PromptInputStashNotice = __esm(() => {
|
|
509451
509509
|
init_figures();
|
|
509452
509510
|
init_ink2();
|
|
509453
|
-
|
|
509511
|
+
import_react_compiler_runtime335 = __toESM(require_dist4(), 1);
|
|
509454
509512
|
jsx_dev_runtime436 = __toESM(require_jsx_dev_runtime(), 1);
|
|
509455
509513
|
});
|
|
509456
509514
|
|
|
@@ -513353,7 +513411,7 @@ var init_useDebouncedDigitInput = __esm(() => {
|
|
|
513353
513411
|
|
|
513354
513412
|
// src/components/FeedbackSurvey/FeedbackSurveyView.tsx
|
|
513355
513413
|
function FeedbackSurveyView(t0) {
|
|
513356
|
-
const $2 =
|
|
513414
|
+
const $2 = import_react_compiler_runtime336.c(15);
|
|
513357
513415
|
const {
|
|
513358
513416
|
onSelect,
|
|
513359
513417
|
inputValue,
|
|
@@ -513507,11 +513565,11 @@ function FeedbackSurveyView(t0) {
|
|
|
513507
513565
|
}
|
|
513508
513566
|
return t10;
|
|
513509
513567
|
}
|
|
513510
|
-
var
|
|
513568
|
+
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
513569
|
var init_FeedbackSurveyView = __esm(() => {
|
|
513512
513570
|
init_ink2();
|
|
513513
513571
|
init_useDebouncedDigitInput();
|
|
513514
|
-
|
|
513572
|
+
import_react_compiler_runtime336 = __toESM(require_dist4(), 1);
|
|
513515
513573
|
jsx_dev_runtime438 = __toESM(require_jsx_dev_runtime(), 1);
|
|
513516
513574
|
RESPONSE_INPUTS = ["0", "1", "2", "3"];
|
|
513517
513575
|
inputToResponse = {
|
|
@@ -513523,13 +513581,13 @@ var init_FeedbackSurveyView = __esm(() => {
|
|
|
513523
513581
|
});
|
|
513524
513582
|
|
|
513525
513583
|
// src/components/SkillImprovementSurvey.tsx
|
|
513526
|
-
var
|
|
513584
|
+
var import_react_compiler_runtime337, import_react270, jsx_dev_runtime439;
|
|
513527
513585
|
var init_SkillImprovementSurvey = __esm(() => {
|
|
513528
513586
|
init_figures2();
|
|
513529
513587
|
init_ink2();
|
|
513530
513588
|
init_stringUtils();
|
|
513531
513589
|
init_FeedbackSurveyView();
|
|
513532
|
-
|
|
513590
|
+
import_react_compiler_runtime337 = __toESM(require_dist4(), 1);
|
|
513533
513591
|
import_react270 = __toESM(require_react(), 1);
|
|
513534
513592
|
jsx_dev_runtime439 = __toESM(require_jsx_dev_runtime(), 1);
|
|
513535
513593
|
});
|
|
@@ -514559,7 +514617,7 @@ var init_useGlobalKeybindings = __esm(() => {
|
|
|
514559
514617
|
|
|
514560
514618
|
// src/hooks/useCommandKeybindings.tsx
|
|
514561
514619
|
function CommandKeybindingHandlers(t0) {
|
|
514562
|
-
const $2 =
|
|
514620
|
+
const $2 = import_react_compiler_runtime338.c(8);
|
|
514563
514621
|
const {
|
|
514564
514622
|
onSubmit,
|
|
514565
514623
|
isActive: t1
|
|
@@ -514629,12 +514687,12 @@ function CommandKeybindingHandlers(t0) {
|
|
|
514629
514687
|
useKeybindings(handlers, t4);
|
|
514630
514688
|
return null;
|
|
514631
514689
|
}
|
|
514632
|
-
var
|
|
514690
|
+
var import_react_compiler_runtime338, NOOP_HELPERS;
|
|
514633
514691
|
var init_useCommandKeybindings = __esm(() => {
|
|
514634
514692
|
init_overlayContext();
|
|
514635
514693
|
init_KeybindingContext();
|
|
514636
514694
|
init_useKeybinding();
|
|
514637
|
-
|
|
514695
|
+
import_react_compiler_runtime338 = __toESM(require_dist4(), 1);
|
|
514638
514696
|
NOOP_HELPERS = {
|
|
514639
514697
|
setCursorOffset: () => {},
|
|
514640
514698
|
clearBuffer: () => {},
|
|
@@ -515621,7 +515679,7 @@ var init_swarmWorkerHandler = __esm(() => {
|
|
|
515621
515679
|
|
|
515622
515680
|
// src/hooks/useCanUseTool.tsx
|
|
515623
515681
|
function useCanUseTool(setToolUseConfirmQueue, setToolPermissionContext) {
|
|
515624
|
-
const $2 =
|
|
515682
|
+
const $2 = import_react_compiler_runtime339.c(3);
|
|
515625
515683
|
let t0;
|
|
515626
515684
|
if ($2[0] !== setToolPermissionContext || $2[1] !== setToolUseConfirmQueue) {
|
|
515627
515685
|
t0 = async (tool, input, toolUseContext, assistantMessage, toolUseID, forceDecision) => new Promise((resolve39) => {
|
|
@@ -515731,7 +515789,7 @@ function useCanUseTool(setToolUseConfirmQueue, setToolPermissionContext) {
|
|
|
515731
515789
|
}
|
|
515732
515790
|
return t0;
|
|
515733
515791
|
}
|
|
515734
|
-
var
|
|
515792
|
+
var import_react_compiler_runtime339, jsx_dev_runtime440, useCanUseTool_default;
|
|
515735
515793
|
var init_useCanUseTool = __esm(() => {
|
|
515736
515794
|
init_sdk();
|
|
515737
515795
|
init_ink2();
|
|
@@ -515747,7 +515805,7 @@ var init_useCanUseTool = __esm(() => {
|
|
|
515747
515805
|
init_swarmWorkerHandler();
|
|
515748
515806
|
init_PermissionContext();
|
|
515749
515807
|
init_permissionLogging();
|
|
515750
|
-
|
|
515808
|
+
import_react_compiler_runtime339 = __toESM(require_dist4(), 1);
|
|
515751
515809
|
jsx_dev_runtime440 = __toESM(require_jsx_dev_runtime(), 1);
|
|
515752
515810
|
useCanUseTool_default = useCanUseTool;
|
|
515753
515811
|
});
|
|
@@ -515823,7 +515881,7 @@ var init_processTextPrompt = __esm(() => {
|
|
|
515823
515881
|
|
|
515824
515882
|
// src/components/BashModeProgress.tsx
|
|
515825
515883
|
function BashModeProgress(t0) {
|
|
515826
|
-
const $2 =
|
|
515884
|
+
const $2 = import_react_compiler_runtime340.c(8);
|
|
515827
515885
|
const {
|
|
515828
515886
|
input,
|
|
515829
515887
|
progress,
|
|
@@ -515881,13 +515939,13 @@ function BashModeProgress(t0) {
|
|
|
515881
515939
|
}
|
|
515882
515940
|
return t4;
|
|
515883
515941
|
}
|
|
515884
|
-
var
|
|
515942
|
+
var import_react_compiler_runtime340, jsx_dev_runtime441;
|
|
515885
515943
|
var init_BashModeProgress = __esm(() => {
|
|
515886
515944
|
init_ink2();
|
|
515887
515945
|
init_BashTool();
|
|
515888
515946
|
init_UserBashInputMessage();
|
|
515889
515947
|
init_ShellProgressMessage();
|
|
515890
|
-
|
|
515948
|
+
import_react_compiler_runtime340 = __toESM(require_dist4(), 1);
|
|
515891
515949
|
jsx_dev_runtime441 = __toESM(require_jsx_dev_runtime(), 1);
|
|
515892
515950
|
});
|
|
515893
515951
|
|
|
@@ -517181,7 +517239,7 @@ var init_useManagePlugins = __esm(() => {
|
|
|
517181
517239
|
|
|
517182
517240
|
// src/components/TeammateViewHeader.tsx
|
|
517183
517241
|
function TeammateViewHeader() {
|
|
517184
|
-
const $2 =
|
|
517242
|
+
const $2 = import_react_compiler_runtime341.c(14);
|
|
517185
517243
|
const viewedTeammate = useAppState(_temp198);
|
|
517186
517244
|
if (!viewedTeammate) {
|
|
517187
517245
|
return null;
|
|
@@ -517284,7 +517342,7 @@ function TeammateViewHeader() {
|
|
|
517284
517342
|
function _temp198(s) {
|
|
517285
517343
|
return getViewedTeammateTask(s);
|
|
517286
517344
|
}
|
|
517287
|
-
var
|
|
517345
|
+
var import_react_compiler_runtime341, jsx_dev_runtime443;
|
|
517288
517346
|
var init_TeammateViewHeader = __esm(() => {
|
|
517289
517347
|
init_ink2();
|
|
517290
517348
|
init_AppState();
|
|
@@ -517292,7 +517350,7 @@ var init_TeammateViewHeader = __esm(() => {
|
|
|
517292
517350
|
init_ink3();
|
|
517293
517351
|
init_KeyboardShortcutHint();
|
|
517294
517352
|
init_OffscreenFreeze();
|
|
517295
|
-
|
|
517353
|
+
import_react_compiler_runtime341 = __toESM(require_dist4(), 1);
|
|
517296
517354
|
jsx_dev_runtime443 = __toESM(require_jsx_dev_runtime(), 1);
|
|
517297
517355
|
});
|
|
517298
517356
|
|
|
@@ -518321,7 +518379,7 @@ var init_useTaskListWatcher = __esm(() => {
|
|
|
518321
518379
|
|
|
518322
518380
|
// src/hooks/useIDEIntegration.tsx
|
|
518323
518381
|
function useIDEIntegration(t0) {
|
|
518324
|
-
const $2 =
|
|
518382
|
+
const $2 = import_react_compiler_runtime342.c(7);
|
|
518325
518383
|
const {
|
|
518326
518384
|
autoConnectIdeFlag,
|
|
518327
518385
|
ideToInstallExtension,
|
|
@@ -518375,18 +518433,18 @@ function useIDEIntegration(t0) {
|
|
|
518375
518433
|
}
|
|
518376
518434
|
import_react290.useEffect(t1, t2);
|
|
518377
518435
|
}
|
|
518378
|
-
var
|
|
518436
|
+
var import_react_compiler_runtime342, import_react290;
|
|
518379
518437
|
var init_useIDEIntegration = __esm(() => {
|
|
518380
518438
|
init_config2();
|
|
518381
518439
|
init_envUtils();
|
|
518382
518440
|
init_ide();
|
|
518383
|
-
|
|
518441
|
+
import_react_compiler_runtime342 = __toESM(require_dist4(), 1);
|
|
518384
518442
|
import_react290 = __toESM(require_react(), 1);
|
|
518385
518443
|
});
|
|
518386
518444
|
|
|
518387
518445
|
// src/components/SessionBackgroundHint.tsx
|
|
518388
518446
|
function SessionBackgroundHint(t0) {
|
|
518389
|
-
const $2 =
|
|
518447
|
+
const $2 = import_react_compiler_runtime343.c(10);
|
|
518390
518448
|
const {
|
|
518391
518449
|
onBackgroundSession,
|
|
518392
518450
|
isLoading
|
|
@@ -518475,7 +518533,7 @@ function _temp283(c6) {
|
|
|
518475
518533
|
};
|
|
518476
518534
|
}
|
|
518477
518535
|
function _temp199() {}
|
|
518478
|
-
var
|
|
518536
|
+
var import_react_compiler_runtime343, import_react291, jsx_dev_runtime444;
|
|
518479
518537
|
var init_SessionBackgroundHint = __esm(() => {
|
|
518480
518538
|
init_useDoublePress();
|
|
518481
518539
|
init_ink2();
|
|
@@ -518487,7 +518545,7 @@ var init_SessionBackgroundHint = __esm(() => {
|
|
|
518487
518545
|
init_env();
|
|
518488
518546
|
init_envUtils();
|
|
518489
518547
|
init_KeyboardShortcutHint();
|
|
518490
|
-
|
|
518548
|
+
import_react_compiler_runtime343 = __toESM(require_dist4(), 1);
|
|
518491
518549
|
import_react291 = __toESM(require_react(), 1);
|
|
518492
518550
|
jsx_dev_runtime444 = __toESM(require_jsx_dev_runtime(), 1);
|
|
518493
518551
|
});
|
|
@@ -518619,7 +518677,7 @@ var init_useSessionBackgrounding = __esm(() => {
|
|
|
518619
518677
|
|
|
518620
518678
|
// src/components/EffortCallout.tsx
|
|
518621
518679
|
function EffortCallout(t0) {
|
|
518622
|
-
const $2 =
|
|
518680
|
+
const $2 = import_react_compiler_runtime344.c(18);
|
|
518623
518681
|
const {
|
|
518624
518682
|
model,
|
|
518625
518683
|
onDone
|
|
@@ -518815,7 +518873,7 @@ function _temp200() {
|
|
|
518815
518873
|
markV2Dismissed();
|
|
518816
518874
|
}
|
|
518817
518875
|
function EffortIndicatorSymbol(t0) {
|
|
518818
|
-
const $2 =
|
|
518876
|
+
const $2 = import_react_compiler_runtime344.c(4);
|
|
518819
518877
|
const {
|
|
518820
518878
|
level
|
|
518821
518879
|
} = t0;
|
|
@@ -518841,7 +518899,7 @@ function EffortIndicatorSymbol(t0) {
|
|
|
518841
518899
|
return t2;
|
|
518842
518900
|
}
|
|
518843
518901
|
function EffortOptionLabel(t0) {
|
|
518844
|
-
const $2 =
|
|
518902
|
+
const $2 = import_react_compiler_runtime344.c(5);
|
|
518845
518903
|
const {
|
|
518846
518904
|
level,
|
|
518847
518905
|
text
|
|
@@ -518908,7 +518966,7 @@ function markV2Dismissed() {
|
|
|
518908
518966
|
};
|
|
518909
518967
|
});
|
|
518910
518968
|
}
|
|
518911
|
-
var
|
|
518969
|
+
var import_react_compiler_runtime344, import_react293, jsx_dev_runtime445, AUTO_DISMISS_MS = 30000;
|
|
518912
518970
|
var init_EffortCallout = __esm(() => {
|
|
518913
518971
|
init_ink2();
|
|
518914
518972
|
init_auth2();
|
|
@@ -518919,7 +518977,7 @@ var init_EffortCallout = __esm(() => {
|
|
|
518919
518977
|
init_select();
|
|
518920
518978
|
init_EffortIndicator();
|
|
518921
518979
|
init_PermissionDialog();
|
|
518922
|
-
|
|
518980
|
+
import_react_compiler_runtime344 = __toESM(require_dist4(), 1);
|
|
518923
518981
|
import_react293 = __toESM(require_react(), 1);
|
|
518924
518982
|
jsx_dev_runtime445 = __toESM(require_jsx_dev_runtime(), 1);
|
|
518925
518983
|
});
|
|
@@ -519620,7 +519678,7 @@ function hasMessageAfterBoundary(messages, boundaryUuid) {
|
|
|
519620
519678
|
return false;
|
|
519621
519679
|
}
|
|
519622
519680
|
function usePostCompactSurvey(messages, isLoading, t0, t1) {
|
|
519623
|
-
const $2 =
|
|
519681
|
+
const $2 = import_react_compiler_runtime345.c(23);
|
|
519624
519682
|
const hasActivePrompt = t0 === undefined ? false : t0;
|
|
519625
519683
|
let t2;
|
|
519626
519684
|
if ($2[0] !== t1) {
|
|
@@ -519793,7 +519851,7 @@ function _temp201(appearanceId) {
|
|
|
519793
519851
|
survey_type: "post_compact"
|
|
519794
519852
|
});
|
|
519795
519853
|
}
|
|
519796
|
-
var
|
|
519854
|
+
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
519855
|
var init_usePostCompactSurvey = __esm(() => {
|
|
519798
519856
|
init_config();
|
|
519799
519857
|
init_growthbook();
|
|
@@ -519803,13 +519861,13 @@ var init_usePostCompactSurvey = __esm(() => {
|
|
|
519803
519861
|
init_messages3();
|
|
519804
519862
|
init_events();
|
|
519805
519863
|
init_useSurveyState();
|
|
519806
|
-
|
|
519864
|
+
import_react_compiler_runtime345 = __toESM(require_dist4(), 1);
|
|
519807
519865
|
import_react299 = __toESM(require_react(), 1);
|
|
519808
519866
|
});
|
|
519809
519867
|
|
|
519810
519868
|
// src/components/FeedbackSurvey/TranscriptSharePrompt.tsx
|
|
519811
519869
|
function TranscriptSharePrompt(t0) {
|
|
519812
|
-
const $2 =
|
|
519870
|
+
const $2 = import_react_compiler_runtime346.c(11);
|
|
519813
519871
|
const {
|
|
519814
519872
|
onSelect,
|
|
519815
519873
|
inputValue,
|
|
@@ -519943,12 +520001,12 @@ function TranscriptSharePrompt(t0) {
|
|
|
519943
520001
|
}
|
|
519944
520002
|
return t7;
|
|
519945
520003
|
}
|
|
519946
|
-
var
|
|
520004
|
+
var import_react_compiler_runtime346, jsx_dev_runtime447, RESPONSE_INPUTS2, inputToResponse2, isValidResponseInput2 = (input) => RESPONSE_INPUTS2.includes(input);
|
|
519947
520005
|
var init_TranscriptSharePrompt = __esm(() => {
|
|
519948
520006
|
init_figures2();
|
|
519949
520007
|
init_ink2();
|
|
519950
520008
|
init_useDebouncedDigitInput();
|
|
519951
|
-
|
|
520009
|
+
import_react_compiler_runtime346 = __toESM(require_dist4(), 1);
|
|
519952
520010
|
jsx_dev_runtime447 = __toESM(require_jsx_dev_runtime(), 1);
|
|
519953
520011
|
RESPONSE_INPUTS2 = ["1", "2", "3"];
|
|
519954
520012
|
inputToResponse2 = {
|
|
@@ -519960,7 +520018,7 @@ var init_TranscriptSharePrompt = __esm(() => {
|
|
|
519960
520018
|
|
|
519961
520019
|
// src/components/FeedbackSurvey/FeedbackSurvey.tsx
|
|
519962
520020
|
function FeedbackSurvey(t0) {
|
|
519963
|
-
const $2 =
|
|
520021
|
+
const $2 = import_react_compiler_runtime347.c(16);
|
|
519964
520022
|
const {
|
|
519965
520023
|
state: state2,
|
|
519966
520024
|
lastResponse,
|
|
@@ -520076,7 +520134,7 @@ function FeedbackSurvey(t0) {
|
|
|
520076
520134
|
return t1;
|
|
520077
520135
|
}
|
|
520078
520136
|
function FeedbackSurveyThanks(t0) {
|
|
520079
|
-
const $2 =
|
|
520137
|
+
const $2 = import_react_compiler_runtime347.c(12);
|
|
520080
520138
|
const {
|
|
520081
520139
|
lastResponse,
|
|
520082
520140
|
inputValue,
|
|
@@ -520170,14 +520228,14 @@ function FeedbackSurveyThanks(t0) {
|
|
|
520170
520228
|
}
|
|
520171
520229
|
return t5;
|
|
520172
520230
|
}
|
|
520173
|
-
var
|
|
520231
|
+
var import_react_compiler_runtime347, jsx_dev_runtime448, isFollowUpDigit = (char) => char === "1";
|
|
520174
520232
|
var init_FeedbackSurvey = __esm(() => {
|
|
520175
520233
|
init_analytics();
|
|
520176
520234
|
init_ink2();
|
|
520177
520235
|
init_FeedbackSurveyView();
|
|
520178
520236
|
init_TranscriptSharePrompt();
|
|
520179
520237
|
init_useDebouncedDigitInput();
|
|
520180
|
-
|
|
520238
|
+
import_react_compiler_runtime347 = __toESM(require_dist4(), 1);
|
|
520181
520239
|
jsx_dev_runtime448 = __toESM(require_jsx_dev_runtime(), 1);
|
|
520182
520240
|
});
|
|
520183
520241
|
|
|
@@ -520634,7 +520692,7 @@ var init_useOfficialMarketplaceNotification = __esm(() => {
|
|
|
520634
520692
|
|
|
520635
520693
|
// src/hooks/usePromptsFromClaudeInChrome.tsx
|
|
520636
520694
|
function usePromptsFromClaudeInChrome(mcpClients, toolPermissionMode) {
|
|
520637
|
-
const $2 =
|
|
520695
|
+
const $2 = import_react_compiler_runtime348.c(6);
|
|
520638
520696
|
import_react302.useRef(undefined);
|
|
520639
520697
|
let t0;
|
|
520640
520698
|
if ($2[0] !== mcpClients) {
|
|
@@ -520673,12 +520731,12 @@ function _temp205() {}
|
|
|
520673
520731
|
function findChromeClient(clients) {
|
|
520674
520732
|
return clients.find((client3) => client3.type === "connected" && client3.name === CLAUDE_IN_CHROME_MCP_SERVER_NAME);
|
|
520675
520733
|
}
|
|
520676
|
-
var
|
|
520734
|
+
var import_react_compiler_runtime348, import_react302, ClaudeInChromePromptNotificationSchema;
|
|
520677
520735
|
var init_usePromptsFromClaudeInChrome = __esm(() => {
|
|
520678
520736
|
init_v4();
|
|
520679
520737
|
init_client7();
|
|
520680
520738
|
init_common2();
|
|
520681
|
-
|
|
520739
|
+
import_react_compiler_runtime348 = __toESM(require_dist4(), 1);
|
|
520682
520740
|
import_react302 = __toESM(require_react(), 1);
|
|
520683
520741
|
ClaudeInChromePromptNotificationSchema = lazySchema(() => exports_external.object({
|
|
520684
520742
|
method: exports_external.literal("notifications/message"),
|
|
@@ -520735,7 +520793,7 @@ function shouldShowDesktopUpsellStartup() {
|
|
|
520735
520793
|
return true;
|
|
520736
520794
|
}
|
|
520737
520795
|
function DesktopUpsellStartup(t0) {
|
|
520738
|
-
const $2 =
|
|
520796
|
+
const $2 = import_react_compiler_runtime349.c(14);
|
|
520739
520797
|
const {
|
|
520740
520798
|
onDone
|
|
520741
520799
|
} = t0;
|
|
@@ -520887,7 +520945,7 @@ function _temp206() {
|
|
|
520887
520945
|
seen_count: newCount
|
|
520888
520946
|
});
|
|
520889
520947
|
}
|
|
520890
|
-
var
|
|
520948
|
+
var import_react_compiler_runtime349, import_react303, jsx_dev_runtime451, DESKTOP_UPSELL_DEFAULT;
|
|
520891
520949
|
var init_DesktopUpsellStartup = __esm(() => {
|
|
520892
520950
|
init_ink2();
|
|
520893
520951
|
init_growthbook();
|
|
@@ -520896,7 +520954,7 @@ var init_DesktopUpsellStartup = __esm(() => {
|
|
|
520896
520954
|
init_select();
|
|
520897
520955
|
init_DesktopHandoff();
|
|
520898
520956
|
init_PermissionDialog();
|
|
520899
|
-
|
|
520957
|
+
import_react_compiler_runtime349 = __toESM(require_dist4(), 1);
|
|
520900
520958
|
import_react303 = __toESM(require_react(), 1);
|
|
520901
520959
|
jsx_dev_runtime451 = __toESM(require_jsx_dev_runtime(), 1);
|
|
520902
520960
|
DESKTOP_UPSELL_DEFAULT = {
|
|
@@ -522409,7 +522467,7 @@ var init_useFileHistorySnapshotInit = __esm(() => {
|
|
|
522409
522467
|
|
|
522410
522468
|
// src/components/permissions/SandboxPermissionRequest.tsx
|
|
522411
522469
|
function SandboxPermissionRequest(t0) {
|
|
522412
|
-
const $2 =
|
|
522470
|
+
const $2 = import_react_compiler_runtime350.c(22);
|
|
522413
522471
|
const {
|
|
522414
522472
|
hostPattern: t1,
|
|
522415
522473
|
onUserResponse
|
|
@@ -522606,13 +522664,13 @@ function SandboxPermissionRequest(t0) {
|
|
|
522606
522664
|
}
|
|
522607
522665
|
return t13;
|
|
522608
522666
|
}
|
|
522609
|
-
var
|
|
522667
|
+
var import_react_compiler_runtime350, jsx_dev_runtime452;
|
|
522610
522668
|
var init_SandboxPermissionRequest = __esm(() => {
|
|
522611
522669
|
init_ink2();
|
|
522612
522670
|
init_sandbox_adapter();
|
|
522613
522671
|
init_select();
|
|
522614
522672
|
init_PermissionDialog();
|
|
522615
|
-
|
|
522673
|
+
import_react_compiler_runtime350 = __toESM(require_dist4(), 1);
|
|
522616
522674
|
jsx_dev_runtime452 = __toESM(require_jsx_dev_runtime(), 1);
|
|
522617
522675
|
});
|
|
522618
522676
|
|
|
@@ -522625,7 +522683,7 @@ function formatTime(date6) {
|
|
|
522625
522683
|
return `${h2}:${m}:${s}${ampm}`;
|
|
522626
522684
|
}
|
|
522627
522685
|
function SandboxViolationExpandedView() {
|
|
522628
|
-
const $2 =
|
|
522686
|
+
const $2 = import_react_compiler_runtime351.c(15);
|
|
522629
522687
|
let t0;
|
|
522630
522688
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
522631
522689
|
t0 = [];
|
|
@@ -522745,19 +522803,19 @@ function _temp207(v, i3) {
|
|
|
522745
522803
|
}, undefined, true, undefined, this)
|
|
522746
522804
|
}, `${v.timestamp.getTime()}-${i3}`, false, undefined, this);
|
|
522747
522805
|
}
|
|
522748
|
-
var
|
|
522806
|
+
var import_react_compiler_runtime351, import_react305, jsx_dev_runtime453;
|
|
522749
522807
|
var init_SandboxViolationExpandedView = __esm(() => {
|
|
522750
522808
|
init_ink2();
|
|
522751
522809
|
init_sandbox_adapter();
|
|
522752
522810
|
init_platform2();
|
|
522753
|
-
|
|
522811
|
+
import_react_compiler_runtime351 = __toESM(require_dist4(), 1);
|
|
522754
522812
|
import_react305 = __toESM(require_react(), 1);
|
|
522755
522813
|
jsx_dev_runtime453 = __toESM(require_jsx_dev_runtime(), 1);
|
|
522756
522814
|
});
|
|
522757
522815
|
|
|
522758
522816
|
// src/hooks/notifs/useMcpConnectivityStatus.tsx
|
|
522759
522817
|
function useMcpConnectivityStatus(t0) {
|
|
522760
|
-
const $2 =
|
|
522818
|
+
const $2 = import_react_compiler_runtime352.c(4);
|
|
522761
522819
|
const {
|
|
522762
522820
|
mcpClients: t1
|
|
522763
522821
|
} = t0;
|
|
@@ -522902,13 +522960,13 @@ function _temp287(client_0) {
|
|
|
522902
522960
|
function _temp208(client3) {
|
|
522903
522961
|
return client3.type === "failed" && client3.config.type !== "sse-ide" && client3.config.type !== "ws-ide" && client3.config.type !== "claudeai-proxy";
|
|
522904
522962
|
}
|
|
522905
|
-
var
|
|
522963
|
+
var import_react_compiler_runtime352, import_react306, jsx_dev_runtime454, EMPTY_MCP_CLIENTS;
|
|
522906
522964
|
var init_useMcpConnectivityStatus = __esm(() => {
|
|
522907
522965
|
init_notifications();
|
|
522908
522966
|
init_state();
|
|
522909
522967
|
init_ink2();
|
|
522910
522968
|
init_claudeai();
|
|
522911
|
-
|
|
522969
|
+
import_react_compiler_runtime352 = __toESM(require_dist4(), 1);
|
|
522912
522970
|
import_react306 = __toESM(require_react(), 1);
|
|
522913
522971
|
jsx_dev_runtime454 = __toESM(require_jsx_dev_runtime(), 1);
|
|
522914
522972
|
EMPTY_MCP_CLIENTS = [];
|
|
@@ -522957,7 +523015,7 @@ var init_useAutoModeUnavailableNotification = __esm(() => {
|
|
|
522957
523015
|
|
|
522958
523016
|
// src/hooks/notifs/useLspInitializationNotification.tsx
|
|
522959
523017
|
function useLspInitializationNotification() {
|
|
522960
|
-
const $2 =
|
|
523018
|
+
const $2 = import_react_compiler_runtime353.c(10);
|
|
522961
523019
|
const {
|
|
522962
523020
|
addNotification
|
|
522963
523021
|
} = useNotifications();
|
|
@@ -523092,7 +523150,7 @@ function _temp288(e) {
|
|
|
523092
523150
|
function _temp209() {
|
|
523093
523151
|
return isEnvTruthy("true");
|
|
523094
523152
|
}
|
|
523095
|
-
var
|
|
523153
|
+
var import_react_compiler_runtime353, React149, jsx_dev_runtime455, LSP_POLL_INTERVAL_MS = 5000;
|
|
523096
523154
|
var init_useLspInitializationNotification = __esm(() => {
|
|
523097
523155
|
init_dist();
|
|
523098
523156
|
init_state();
|
|
@@ -523102,7 +523160,7 @@ var init_useLspInitializationNotification = __esm(() => {
|
|
|
523102
523160
|
init_AppState();
|
|
523103
523161
|
init_debug();
|
|
523104
523162
|
init_envUtils();
|
|
523105
|
-
|
|
523163
|
+
import_react_compiler_runtime353 = __toESM(require_dist4(), 1);
|
|
523106
523164
|
React149 = __toESM(require_react(), 1);
|
|
523107
523165
|
jsx_dev_runtime455 = __toESM(require_jsx_dev_runtime(), 1);
|
|
523108
523166
|
});
|
|
@@ -523315,7 +523373,7 @@ var init_lspRecommendation = __esm(() => {
|
|
|
523315
523373
|
|
|
523316
523374
|
// src/hooks/usePluginRecommendationBase.tsx
|
|
523317
523375
|
function usePluginRecommendationBase() {
|
|
523318
|
-
const $2 =
|
|
523376
|
+
const $2 = import_react_compiler_runtime354.c(6);
|
|
523319
523377
|
const [recommendation, setRecommendation] = React150.useState(null);
|
|
523320
523378
|
const isCheckingRef = React150.useRef(false);
|
|
523321
523379
|
let t0;
|
|
@@ -523405,14 +523463,14 @@ async function installPluginAndNotify(pluginId, pluginName, keyPrefix, addNotifi
|
|
|
523405
523463
|
});
|
|
523406
523464
|
}
|
|
523407
523465
|
}
|
|
523408
|
-
var
|
|
523466
|
+
var import_react_compiler_runtime354, React150, jsx_dev_runtime456;
|
|
523409
523467
|
var init_usePluginRecommendationBase = __esm(() => {
|
|
523410
523468
|
init_figures();
|
|
523411
523469
|
init_state();
|
|
523412
523470
|
init_ink2();
|
|
523413
523471
|
init_log3();
|
|
523414
523472
|
init_marketplaceManager();
|
|
523415
|
-
|
|
523473
|
+
import_react_compiler_runtime354 = __toESM(require_dist4(), 1);
|
|
523416
523474
|
React150 = __toESM(require_react(), 1);
|
|
523417
523475
|
jsx_dev_runtime456 = __toESM(require_jsx_dev_runtime(), 1);
|
|
523418
523476
|
});
|
|
@@ -523420,7 +523478,7 @@ var init_usePluginRecommendationBase = __esm(() => {
|
|
|
523420
523478
|
// src/hooks/useLspPluginRecommendation.tsx
|
|
523421
523479
|
import { extname as extname16, join as join144 } from "path";
|
|
523422
523480
|
function useLspPluginRecommendation() {
|
|
523423
|
-
const $2 =
|
|
523481
|
+
const $2 = import_react_compiler_runtime355.c(12);
|
|
523424
523482
|
const trackedFiles = useAppState(_temp224);
|
|
523425
523483
|
const {
|
|
523426
523484
|
addNotification
|
|
@@ -523568,7 +523626,7 @@ function _temp289(current) {
|
|
|
523568
523626
|
function _temp224(s) {
|
|
523569
523627
|
return s.fileHistory.trackedFiles;
|
|
523570
523628
|
}
|
|
523571
|
-
var
|
|
523629
|
+
var import_react_compiler_runtime355, React151, TIMEOUT_THRESHOLD_MS = 28000;
|
|
523572
523630
|
var init_useLspPluginRecommendation = __esm(() => {
|
|
523573
523631
|
init_state();
|
|
523574
523632
|
init_notifications();
|
|
@@ -523580,7 +523638,7 @@ var init_useLspPluginRecommendation = __esm(() => {
|
|
|
523580
523638
|
init_pluginInstallationHelpers();
|
|
523581
523639
|
init_settings2();
|
|
523582
523640
|
init_usePluginRecommendationBase();
|
|
523583
|
-
|
|
523641
|
+
import_react_compiler_runtime355 = __toESM(require_dist4(), 1);
|
|
523584
523642
|
React151 = __toESM(require_react(), 1);
|
|
523585
523643
|
});
|
|
523586
523644
|
|
|
@@ -523719,7 +523777,7 @@ var init_LspRecommendationMenu = __esm(() => {
|
|
|
523719
523777
|
|
|
523720
523778
|
// src/hooks/useClaudeCodeHintRecommendation.tsx
|
|
523721
523779
|
function useClaudeCodeHintRecommendation() {
|
|
523722
|
-
const $2 =
|
|
523780
|
+
const $2 = import_react_compiler_runtime356.c(11);
|
|
523723
523781
|
const pendingHint2 = React153.useSyncExternalStore(subscribeToPendingHint, getPendingHintSnapshot);
|
|
523724
523782
|
const {
|
|
523725
523783
|
addNotification
|
|
@@ -523822,7 +523880,7 @@ function useClaudeCodeHintRecommendation() {
|
|
|
523822
523880
|
}
|
|
523823
523881
|
return t3;
|
|
523824
523882
|
}
|
|
523825
|
-
var
|
|
523883
|
+
var import_react_compiler_runtime356, React153;
|
|
523826
523884
|
var init_useClaudeCodeHintRecommendation = __esm(() => {
|
|
523827
523885
|
init_notifications();
|
|
523828
523886
|
init_analytics();
|
|
@@ -523831,7 +523889,7 @@ var init_useClaudeCodeHintRecommendation = __esm(() => {
|
|
|
523831
523889
|
init_hintRecommendation();
|
|
523832
523890
|
init_pluginInstallationHelpers();
|
|
523833
523891
|
init_usePluginRecommendationBase();
|
|
523834
|
-
|
|
523892
|
+
import_react_compiler_runtime356 = __toESM(require_dist4(), 1);
|
|
523835
523893
|
React153 = __toESM(require_react(), 1);
|
|
523836
523894
|
});
|
|
523837
523895
|
|
|
@@ -523962,7 +524020,7 @@ var init_PluginHintMenu = __esm(() => {
|
|
|
523962
524020
|
|
|
523963
524021
|
// src/hooks/notifs/usePluginInstallationStatus.tsx
|
|
523964
524022
|
function usePluginInstallationStatus() {
|
|
523965
|
-
const $2 =
|
|
524023
|
+
const $2 = import_react_compiler_runtime357.c(20);
|
|
523966
524024
|
const {
|
|
523967
524025
|
addNotification
|
|
523968
524026
|
} = useNotifications();
|
|
@@ -524095,7 +524153,7 @@ function _temp290(m) {
|
|
|
524095
524153
|
function _temp234(s) {
|
|
524096
524154
|
return s.plugins.installationStatus;
|
|
524097
524155
|
}
|
|
524098
|
-
var
|
|
524156
|
+
var import_react_compiler_runtime357, import_react308, jsx_dev_runtime459;
|
|
524099
524157
|
var init_usePluginInstallationStatus = __esm(() => {
|
|
524100
524158
|
init_state();
|
|
524101
524159
|
init_notifications();
|
|
@@ -524103,14 +524161,14 @@ var init_usePluginInstallationStatus = __esm(() => {
|
|
|
524103
524161
|
init_AppState();
|
|
524104
524162
|
init_debug();
|
|
524105
524163
|
init_stringUtils();
|
|
524106
|
-
|
|
524164
|
+
import_react_compiler_runtime357 = __toESM(require_dist4(), 1);
|
|
524107
524165
|
import_react308 = __toESM(require_react(), 1);
|
|
524108
524166
|
jsx_dev_runtime459 = __toESM(require_jsx_dev_runtime(), 1);
|
|
524109
524167
|
});
|
|
524110
524168
|
|
|
524111
524169
|
// src/hooks/notifs/usePluginAutoupdateNotification.tsx
|
|
524112
524170
|
function usePluginAutoupdateNotification() {
|
|
524113
|
-
const $2 =
|
|
524171
|
+
const $2 = import_react_compiler_runtime358.c(7);
|
|
524114
524172
|
const {
|
|
524115
524173
|
addNotification
|
|
524116
524174
|
} = useNotifications();
|
|
@@ -524194,14 +524252,14 @@ function _temp244(id) {
|
|
|
524194
524252
|
const atIndex = id.indexOf("@");
|
|
524195
524253
|
return atIndex > 0 ? id.substring(0, atIndex) : id;
|
|
524196
524254
|
}
|
|
524197
|
-
var
|
|
524255
|
+
var import_react_compiler_runtime358, import_react309, jsx_dev_runtime460;
|
|
524198
524256
|
var init_usePluginAutoupdateNotification = __esm(() => {
|
|
524199
524257
|
init_state();
|
|
524200
524258
|
init_notifications();
|
|
524201
524259
|
init_ink2();
|
|
524202
524260
|
init_debug();
|
|
524203
524261
|
init_pluginAutoupdate();
|
|
524204
|
-
|
|
524262
|
+
import_react_compiler_runtime358 = __toESM(require_dist4(), 1);
|
|
524205
524263
|
import_react309 = __toESM(require_react(), 1);
|
|
524206
524264
|
jsx_dev_runtime460 = __toESM(require_jsx_dev_runtime(), 1);
|
|
524207
524265
|
});
|
|
@@ -524485,7 +524543,7 @@ var init_performStartupChecks = __esm(() => {
|
|
|
524485
524543
|
|
|
524486
524544
|
// src/components/AwsAuthStatusBox.tsx
|
|
524487
524545
|
function AwsAuthStatusBox() {
|
|
524488
|
-
const $2 =
|
|
524546
|
+
const $2 = import_react_compiler_runtime359.c(11);
|
|
524489
524547
|
let t0;
|
|
524490
524548
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
524491
524549
|
t0 = AwsAuthStatusManager.getInstance().getStatus();
|
|
@@ -524598,11 +524656,11 @@ function _temp254(line, index) {
|
|
|
524598
524656
|
]
|
|
524599
524657
|
}, index, true, undefined, this);
|
|
524600
524658
|
}
|
|
524601
|
-
var
|
|
524659
|
+
var import_react_compiler_runtime359, import_react310, jsx_dev_runtime461, URL_RE;
|
|
524602
524660
|
var init_AwsAuthStatusBox = __esm(() => {
|
|
524603
524661
|
init_ink2();
|
|
524604
524662
|
init_awsAuthStatusManager();
|
|
524605
|
-
|
|
524663
|
+
import_react_compiler_runtime359 = __toESM(require_dist4(), 1);
|
|
524606
524664
|
import_react310 = __toESM(require_react(), 1);
|
|
524607
524665
|
jsx_dev_runtime461 = __toESM(require_jsx_dev_runtime(), 1);
|
|
524608
524666
|
URL_RE = /https?:\/\/\S+/;
|
|
@@ -524610,7 +524668,7 @@ var init_AwsAuthStatusBox = __esm(() => {
|
|
|
524610
524668
|
|
|
524611
524669
|
// src/hooks/notifs/useRateLimitWarningNotification.tsx
|
|
524612
524670
|
function useRateLimitWarningNotification(model) {
|
|
524613
|
-
const $2 =
|
|
524671
|
+
const $2 = import_react_compiler_runtime360.c(17);
|
|
524614
524672
|
const {
|
|
524615
524673
|
addNotification
|
|
524616
524674
|
} = useNotifications();
|
|
@@ -524717,7 +524775,7 @@ function useRateLimitWarningNotification(model) {
|
|
|
524717
524775
|
}
|
|
524718
524776
|
import_react311.useEffect(t6, t7);
|
|
524719
524777
|
}
|
|
524720
|
-
var
|
|
524778
|
+
var import_react_compiler_runtime360, import_react311, jsx_dev_runtime462;
|
|
524721
524779
|
var init_useRateLimitWarningNotification = __esm(() => {
|
|
524722
524780
|
init_notifications();
|
|
524723
524781
|
init_ink2();
|
|
@@ -524726,7 +524784,7 @@ var init_useRateLimitWarningNotification = __esm(() => {
|
|
|
524726
524784
|
init_auth2();
|
|
524727
524785
|
init_billing();
|
|
524728
524786
|
init_state();
|
|
524729
|
-
|
|
524787
|
+
import_react_compiler_runtime360 = __toESM(require_dist4(), 1);
|
|
524730
524788
|
import_react311 = __toESM(require_react(), 1);
|
|
524731
524789
|
jsx_dev_runtime462 = __toESM(require_jsx_dev_runtime(), 1);
|
|
524732
524790
|
});
|
|
@@ -524794,7 +524852,7 @@ var init_deprecation = __esm(() => {
|
|
|
524794
524852
|
|
|
524795
524853
|
// src/hooks/notifs/useDeprecationWarningNotification.tsx
|
|
524796
524854
|
function useDeprecationWarningNotification(model) {
|
|
524797
|
-
const $2 =
|
|
524855
|
+
const $2 = import_react_compiler_runtime361.c(4);
|
|
524798
524856
|
const {
|
|
524799
524857
|
addNotification
|
|
524800
524858
|
} = useNotifications();
|
|
@@ -524831,12 +524889,12 @@ function useDeprecationWarningNotification(model) {
|
|
|
524831
524889
|
}
|
|
524832
524890
|
import_react312.useEffect(t0, t1);
|
|
524833
524891
|
}
|
|
524834
|
-
var
|
|
524892
|
+
var import_react_compiler_runtime361, import_react312;
|
|
524835
524893
|
var init_useDeprecationWarningNotification = __esm(() => {
|
|
524836
524894
|
init_notifications();
|
|
524837
524895
|
init_deprecation();
|
|
524838
524896
|
init_state();
|
|
524839
|
-
|
|
524897
|
+
import_react_compiler_runtime361 = __toESM(require_dist4(), 1);
|
|
524840
524898
|
import_react312 = __toESM(require_react(), 1);
|
|
524841
524899
|
});
|
|
524842
524900
|
|
|
@@ -524869,7 +524927,7 @@ var init_useNpmDeprecationNotification = __esm(() => {
|
|
|
524869
524927
|
|
|
524870
524928
|
// src/hooks/notifs/useIDEStatusIndicator.tsx
|
|
524871
524929
|
function useIDEStatusIndicator(t0) {
|
|
524872
|
-
const $2 =
|
|
524930
|
+
const $2 = import_react_compiler_runtime362.c(26);
|
|
524873
524931
|
const {
|
|
524874
524932
|
ideSelection,
|
|
524875
524933
|
mcpClients,
|
|
@@ -525046,7 +525104,7 @@ function _temp293(current) {
|
|
|
525046
525104
|
ideHintShownCount: (current.ideHintShownCount ?? 0) + 1
|
|
525047
525105
|
};
|
|
525048
525106
|
}
|
|
525049
|
-
var
|
|
525107
|
+
var import_react_compiler_runtime362, import_react313, jsx_dev_runtime463, MAX_IDE_HINT_SHOW_COUNT = 5;
|
|
525050
525108
|
var init_useIDEStatusIndicator = __esm(() => {
|
|
525051
525109
|
init_notifications();
|
|
525052
525110
|
init_ink2();
|
|
@@ -525054,7 +525112,7 @@ var init_useIDEStatusIndicator = __esm(() => {
|
|
|
525054
525112
|
init_ide();
|
|
525055
525113
|
init_state();
|
|
525056
525114
|
init_useIdeConnectionStatus();
|
|
525057
|
-
|
|
525115
|
+
import_react_compiler_runtime362 = __toESM(require_dist4(), 1);
|
|
525058
525116
|
import_react313 = __toESM(require_react(), 1);
|
|
525059
525117
|
jsx_dev_runtime463 = __toESM(require_jsx_dev_runtime(), 1);
|
|
525060
525118
|
});
|
|
@@ -525242,7 +525300,7 @@ var init_useTeammateShutdownNotification = __esm(() => {
|
|
|
525242
525300
|
|
|
525243
525301
|
// src/hooks/notifs/useFastModeNotification.tsx
|
|
525244
525302
|
function useFastModeNotification() {
|
|
525245
|
-
const $2 =
|
|
525303
|
+
const $2 = import_react_compiler_runtime363.c(13);
|
|
525246
525304
|
const {
|
|
525247
525305
|
addNotification
|
|
525248
525306
|
} = useNotifications();
|
|
@@ -525391,20 +525449,20 @@ function getCooldownMessage(reason, resetIn) {
|
|
|
525391
525449
|
return `Fast limit reached and temporarily disabled · resets in ${resetIn}`;
|
|
525392
525450
|
}
|
|
525393
525451
|
}
|
|
525394
|
-
var
|
|
525452
|
+
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
525453
|
var init_useFastModeNotification = __esm(() => {
|
|
525396
525454
|
init_notifications();
|
|
525397
525455
|
init_AppState();
|
|
525398
525456
|
init_fastMode();
|
|
525399
525457
|
init_format();
|
|
525400
525458
|
init_state();
|
|
525401
|
-
|
|
525459
|
+
import_react_compiler_runtime363 = __toESM(require_dist4(), 1);
|
|
525402
525460
|
import_react315 = __toESM(require_react(), 1);
|
|
525403
525461
|
});
|
|
525404
525462
|
|
|
525405
525463
|
// src/utils/autoRunIssue.tsx
|
|
525406
525464
|
function AutoRunIssueNotification(t0) {
|
|
525407
|
-
const $2 =
|
|
525465
|
+
const $2 = import_react_compiler_runtime364.c(8);
|
|
525408
525466
|
const {
|
|
525409
525467
|
onRun,
|
|
525410
525468
|
onCancel,
|
|
@@ -525523,12 +525581,12 @@ function getAutoRunIssueReasonText(reason) {
|
|
|
525523
525581
|
return "Unknown reason";
|
|
525524
525582
|
}
|
|
525525
525583
|
}
|
|
525526
|
-
var
|
|
525584
|
+
var import_react_compiler_runtime364, import_react316, jsx_dev_runtime465;
|
|
525527
525585
|
var init_autoRunIssue = __esm(() => {
|
|
525528
525586
|
init_KeyboardShortcutHint();
|
|
525529
525587
|
init_ink2();
|
|
525530
525588
|
init_useKeybinding();
|
|
525531
|
-
|
|
525589
|
+
import_react_compiler_runtime364 = __toESM(require_dist4(), 1);
|
|
525532
525590
|
import_react316 = __toESM(require_react(), 1);
|
|
525533
525591
|
jsx_dev_runtime465 = __toESM(require_jsx_dev_runtime(), 1);
|
|
525534
525592
|
});
|
|
@@ -525642,18 +525700,18 @@ var init_useIssueFlagBanner = __esm(() => {
|
|
|
525642
525700
|
});
|
|
525643
525701
|
|
|
525644
525702
|
// src/components/DevBar.tsx
|
|
525645
|
-
var
|
|
525703
|
+
var import_react_compiler_runtime365, import_react318, jsx_dev_runtime466;
|
|
525646
525704
|
var init_DevBar = __esm(() => {
|
|
525647
525705
|
init_state();
|
|
525648
525706
|
init_ink2();
|
|
525649
|
-
|
|
525707
|
+
import_react_compiler_runtime365 = __toESM(require_dist4(), 1);
|
|
525650
525708
|
import_react318 = __toESM(require_react(), 1);
|
|
525651
525709
|
jsx_dev_runtime466 = __toESM(require_jsx_dev_runtime(), 1);
|
|
525652
525710
|
});
|
|
525653
525711
|
|
|
525654
525712
|
// src/ink/components/AlternateScreen.tsx
|
|
525655
525713
|
function AlternateScreen(t0) {
|
|
525656
|
-
const $2 =
|
|
525714
|
+
const $2 = import_react_compiler_runtime366.c(7);
|
|
525657
525715
|
const {
|
|
525658
525716
|
children,
|
|
525659
525717
|
mouseTracking: t1
|
|
@@ -525705,14 +525763,14 @@ function AlternateScreen(t0) {
|
|
|
525705
525763
|
}
|
|
525706
525764
|
return t5;
|
|
525707
525765
|
}
|
|
525708
|
-
var
|
|
525766
|
+
var import_react_compiler_runtime366, import_react319, jsx_dev_runtime467;
|
|
525709
525767
|
var init_AlternateScreen = __esm(() => {
|
|
525710
525768
|
init_instances();
|
|
525711
525769
|
init_dec();
|
|
525712
525770
|
init_useTerminalNotification();
|
|
525713
525771
|
init_Box();
|
|
525714
525772
|
init_TerminalSizeContext();
|
|
525715
|
-
|
|
525773
|
+
import_react_compiler_runtime366 = __toESM(require_dist4(), 1);
|
|
525716
525774
|
import_react319 = __toESM(require_react(), 1);
|
|
525717
525775
|
jsx_dev_runtime467 = __toESM(require_jsx_dev_runtime(), 1);
|
|
525718
525776
|
});
|
|
@@ -526352,7 +526410,7 @@ import { tmpdir as tmpdir11 } from "os";
|
|
|
526352
526410
|
import { writeFile as writeFile44 } from "fs/promises";
|
|
526353
526411
|
import { randomUUID as randomUUID47 } from "crypto";
|
|
526354
526412
|
function TranscriptModeFooter(t0) {
|
|
526355
|
-
const $2 =
|
|
526413
|
+
const $2 = import_react_compiler_runtime367.c(9);
|
|
526356
526414
|
const {
|
|
526357
526415
|
showAllInTranscript,
|
|
526358
526416
|
virtualScroll,
|
|
@@ -526549,7 +526607,7 @@ function TranscriptSearchBar({
|
|
|
526549
526607
|
}, undefined, true, undefined, this);
|
|
526550
526608
|
}
|
|
526551
526609
|
function AnimatedTerminalTitle(t0) {
|
|
526552
|
-
const $2 =
|
|
526610
|
+
const $2 = import_react_compiler_runtime367.c(6);
|
|
526553
526611
|
const {
|
|
526554
526612
|
isAnimating,
|
|
526555
526613
|
title,
|
|
@@ -529682,7 +529740,7 @@ Note: ctrl + z now suspends Claude Code, ctrl + _ undoes input.
|
|
|
529682
529740
|
}
|
|
529683
529741
|
return mainReturn;
|
|
529684
529742
|
}
|
|
529685
|
-
var
|
|
529743
|
+
var import_react_compiler_runtime367, React159, import_react322, jsx_dev_runtime468, useFrustrationDetection = () => ({
|
|
529686
529744
|
state: "closed",
|
|
529687
529745
|
handleTranscriptSelect: () => {}
|
|
529688
529746
|
}), 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 +529946,7 @@ var init_REPL = __esm(() => {
|
|
|
529888
529946
|
init_messageActions();
|
|
529889
529947
|
init_osc();
|
|
529890
529948
|
init_attachments2();
|
|
529891
|
-
|
|
529949
|
+
import_react_compiler_runtime367 = __toESM(require_dist4(), 1);
|
|
529892
529950
|
React159 = __toESM(require_react(), 1);
|
|
529893
529951
|
import_react322 = __toESM(require_react(), 1);
|
|
529894
529952
|
jsx_dev_runtime468 = __toESM(require_jsx_dev_runtime(), 1);
|
|
@@ -530074,7 +530132,7 @@ var init_warningHandler = __esm(() => {
|
|
|
530074
530132
|
|
|
530075
530133
|
// src/components/MCPServerDialogCopy.tsx
|
|
530076
530134
|
function MCPServerDialogCopy() {
|
|
530077
|
-
const $2 =
|
|
530135
|
+
const $2 = import_react_compiler_runtime368.c(1);
|
|
530078
530136
|
let t0;
|
|
530079
530137
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
530080
530138
|
t0 = /* @__PURE__ */ jsx_dev_runtime470.jsxDEV(ThemedText, {
|
|
@@ -530094,16 +530152,16 @@ function MCPServerDialogCopy() {
|
|
|
530094
530152
|
}
|
|
530095
530153
|
return t0;
|
|
530096
530154
|
}
|
|
530097
|
-
var
|
|
530155
|
+
var import_react_compiler_runtime368, jsx_dev_runtime470;
|
|
530098
530156
|
var init_MCPServerDialogCopy = __esm(() => {
|
|
530099
530157
|
init_ink2();
|
|
530100
|
-
|
|
530158
|
+
import_react_compiler_runtime368 = __toESM(require_dist4(), 1);
|
|
530101
530159
|
jsx_dev_runtime470 = __toESM(require_jsx_dev_runtime(), 1);
|
|
530102
530160
|
});
|
|
530103
530161
|
|
|
530104
530162
|
// src/components/MCPServerApprovalDialog.tsx
|
|
530105
530163
|
function MCPServerApprovalDialog(t0) {
|
|
530106
|
-
const $2 =
|
|
530164
|
+
const $2 = import_react_compiler_runtime369.c(13);
|
|
530107
530165
|
const {
|
|
530108
530166
|
serverName,
|
|
530109
530167
|
onDone
|
|
@@ -530216,20 +530274,20 @@ function MCPServerApprovalDialog(t0) {
|
|
|
530216
530274
|
}
|
|
530217
530275
|
return t7;
|
|
530218
530276
|
}
|
|
530219
|
-
var
|
|
530277
|
+
var import_react_compiler_runtime369, jsx_dev_runtime471;
|
|
530220
530278
|
var init_MCPServerApprovalDialog = __esm(() => {
|
|
530221
530279
|
init_analytics();
|
|
530222
530280
|
init_settings2();
|
|
530223
530281
|
init_CustomSelect();
|
|
530224
530282
|
init_Dialog();
|
|
530225
530283
|
init_MCPServerDialogCopy();
|
|
530226
|
-
|
|
530284
|
+
import_react_compiler_runtime369 = __toESM(require_dist4(), 1);
|
|
530227
530285
|
jsx_dev_runtime471 = __toESM(require_jsx_dev_runtime(), 1);
|
|
530228
530286
|
});
|
|
530229
530287
|
|
|
530230
530288
|
// src/components/MCPServerMultiselectDialog.tsx
|
|
530231
530289
|
function MCPServerMultiselectDialog(t0) {
|
|
530232
|
-
const $2 =
|
|
530290
|
+
const $2 = import_react_compiler_runtime370.c(21);
|
|
530233
530291
|
const {
|
|
530234
530292
|
serverNames,
|
|
530235
530293
|
onDone
|
|
@@ -530389,7 +530447,7 @@ function _temp302(server_0) {
|
|
|
530389
530447
|
value: server_0
|
|
530390
530448
|
};
|
|
530391
530449
|
}
|
|
530392
|
-
var
|
|
530450
|
+
var import_react_compiler_runtime370, jsx_dev_runtime472;
|
|
530393
530451
|
var init_MCPServerMultiselectDialog = __esm(() => {
|
|
530394
530452
|
init_partition();
|
|
530395
530453
|
init_analytics();
|
|
@@ -530401,7 +530459,7 @@ var init_MCPServerMultiselectDialog = __esm(() => {
|
|
|
530401
530459
|
init_Dialog();
|
|
530402
530460
|
init_KeyboardShortcutHint();
|
|
530403
530461
|
init_MCPServerDialogCopy();
|
|
530404
|
-
|
|
530462
|
+
import_react_compiler_runtime370 = __toESM(require_dist4(), 1);
|
|
530405
530463
|
jsx_dev_runtime472 = __toESM(require_jsx_dev_runtime(), 1);
|
|
530406
530464
|
});
|
|
530407
530465
|
|
|
@@ -530658,7 +530716,7 @@ async function checkProviderEndpoint() {
|
|
|
530658
530716
|
}
|
|
530659
530717
|
}
|
|
530660
530718
|
function PreflightStep(t0) {
|
|
530661
|
-
const $2 =
|
|
530719
|
+
const $2 = import_react_compiler_runtime371.c(12);
|
|
530662
530720
|
const {
|
|
530663
530721
|
onSuccess
|
|
530664
530722
|
} = t0;
|
|
@@ -530732,13 +530790,13 @@ function PreflightStep(t0) {
|
|
|
530732
530790
|
}
|
|
530733
530791
|
return t6;
|
|
530734
530792
|
}
|
|
530735
|
-
var
|
|
530793
|
+
var import_react_compiler_runtime371, import_react324, jsx_dev_runtime474;
|
|
530736
530794
|
var init_preflightChecks = __esm(() => {
|
|
530737
530795
|
init_Spinner2();
|
|
530738
530796
|
init_useTimeout();
|
|
530739
530797
|
init_ink2();
|
|
530740
530798
|
init_providerConfig2();
|
|
530741
|
-
|
|
530799
|
+
import_react_compiler_runtime371 = __toESM(require_dist4(), 1);
|
|
530742
530800
|
import_react324 = __toESM(require_react(), 1);
|
|
530743
530801
|
jsx_dev_runtime474 = __toESM(require_jsx_dev_runtime(), 1);
|
|
530744
530802
|
});
|
|
@@ -530749,7 +530807,7 @@ __export(exports_ApproveApiKey, {
|
|
|
530749
530807
|
ApproveApiKey: () => ApproveApiKey
|
|
530750
530808
|
});
|
|
530751
530809
|
function ApproveApiKey(t0) {
|
|
530752
|
-
const $2 =
|
|
530810
|
+
const $2 = import_react_compiler_runtime372.c(17);
|
|
530753
530811
|
const {
|
|
530754
530812
|
customApiKeyTruncated,
|
|
530755
530813
|
onDone
|
|
@@ -530898,19 +530956,19 @@ function ApproveApiKey(t0) {
|
|
|
530898
530956
|
}
|
|
530899
530957
|
return t9;
|
|
530900
530958
|
}
|
|
530901
|
-
var
|
|
530959
|
+
var import_react_compiler_runtime372, jsx_dev_runtime475;
|
|
530902
530960
|
var init_ApproveApiKey = __esm(() => {
|
|
530903
530961
|
init_ink2();
|
|
530904
530962
|
init_config2();
|
|
530905
530963
|
init_CustomSelect();
|
|
530906
530964
|
init_Dialog();
|
|
530907
|
-
|
|
530965
|
+
import_react_compiler_runtime372 = __toESM(require_dist4(), 1);
|
|
530908
530966
|
jsx_dev_runtime475 = __toESM(require_jsx_dev_runtime(), 1);
|
|
530909
530967
|
});
|
|
530910
530968
|
|
|
530911
530969
|
// src/components/LogoV2/WelcomeV2.tsx
|
|
530912
530970
|
function WelcomeV2() {
|
|
530913
|
-
const $2 =
|
|
530971
|
+
const $2 = import_react_compiler_runtime373.c(35);
|
|
530914
530972
|
const [theme2] = useTheme();
|
|
530915
530973
|
if (env3.terminal === "Apple_Terminal") {
|
|
530916
530974
|
let t02;
|
|
@@ -530950,7 +531008,7 @@ function WelcomeV2() {
|
|
|
530950
531008
|
dimColor: true,
|
|
530951
531009
|
children: [
|
|
530952
531010
|
"v",
|
|
530953
|
-
"0.1.
|
|
531011
|
+
"0.1.5",
|
|
530954
531012
|
" "
|
|
530955
531013
|
]
|
|
530956
531014
|
}, undefined, true, undefined, this)
|
|
@@ -531150,7 +531208,7 @@ function WelcomeV2() {
|
|
|
531150
531208
|
dimColor: true,
|
|
531151
531209
|
children: [
|
|
531152
531210
|
"v",
|
|
531153
|
-
"0.1.
|
|
531211
|
+
"0.1.5",
|
|
531154
531212
|
" "
|
|
531155
531213
|
]
|
|
531156
531214
|
}, undefined, true, undefined, this)
|
|
@@ -531349,7 +531407,7 @@ function WelcomeV2() {
|
|
|
531349
531407
|
return t16;
|
|
531350
531408
|
}
|
|
531351
531409
|
function AppleTerminalWelcomeV2(t0) {
|
|
531352
|
-
const $2 =
|
|
531410
|
+
const $2 = import_react_compiler_runtime373.c(44);
|
|
531353
531411
|
const {
|
|
531354
531412
|
theme: theme2,
|
|
531355
531413
|
welcomeMessage
|
|
@@ -531376,7 +531434,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
531376
531434
|
dimColor: true,
|
|
531377
531435
|
children: [
|
|
531378
531436
|
"v",
|
|
531379
|
-
"0.1.
|
|
531437
|
+
"0.1.5",
|
|
531380
531438
|
" "
|
|
531381
531439
|
]
|
|
531382
531440
|
}, undefined, true, undefined, this);
|
|
@@ -531630,7 +531688,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
531630
531688
|
dimColor: true,
|
|
531631
531689
|
children: [
|
|
531632
531690
|
"v",
|
|
531633
|
-
"0.1.
|
|
531691
|
+
"0.1.5",
|
|
531634
531692
|
" "
|
|
531635
531693
|
]
|
|
531636
531694
|
}, undefined, true, undefined, this);
|
|
@@ -531880,17 +531938,17 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
531880
531938
|
}
|
|
531881
531939
|
return t19;
|
|
531882
531940
|
}
|
|
531883
|
-
var
|
|
531941
|
+
var import_react_compiler_runtime373, jsx_dev_runtime476, WELCOME_V2_WIDTH = 58;
|
|
531884
531942
|
var init_WelcomeV2 = __esm(() => {
|
|
531885
531943
|
init_ink2();
|
|
531886
531944
|
init_env();
|
|
531887
|
-
|
|
531945
|
+
import_react_compiler_runtime373 = __toESM(require_dist4(), 1);
|
|
531888
531946
|
jsx_dev_runtime476 = __toESM(require_jsx_dev_runtime(), 1);
|
|
531889
531947
|
});
|
|
531890
531948
|
|
|
531891
531949
|
// src/components/ui/OrderedListItem.tsx
|
|
531892
531950
|
function OrderedListItem(t0) {
|
|
531893
|
-
const $2 =
|
|
531951
|
+
const $2 = import_react_compiler_runtime374.c(7);
|
|
531894
531952
|
const {
|
|
531895
531953
|
children
|
|
531896
531954
|
} = t0;
|
|
@@ -531936,10 +531994,10 @@ function OrderedListItem(t0) {
|
|
|
531936
531994
|
}
|
|
531937
531995
|
return t3;
|
|
531938
531996
|
}
|
|
531939
|
-
var
|
|
531997
|
+
var import_react_compiler_runtime374, import_react325, jsx_dev_runtime477, OrderedListItemContext;
|
|
531940
531998
|
var init_OrderedListItem = __esm(() => {
|
|
531941
531999
|
init_ink2();
|
|
531942
|
-
|
|
532000
|
+
import_react_compiler_runtime374 = __toESM(require_dist4(), 1);
|
|
531943
532001
|
import_react325 = __toESM(require_react(), 1);
|
|
531944
532002
|
jsx_dev_runtime477 = __toESM(require_jsx_dev_runtime(), 1);
|
|
531945
532003
|
OrderedListItemContext = import_react325.createContext({
|
|
@@ -531949,7 +532007,7 @@ var init_OrderedListItem = __esm(() => {
|
|
|
531949
532007
|
|
|
531950
532008
|
// src/components/ui/OrderedList.tsx
|
|
531951
532009
|
function OrderedListComponent(t0) {
|
|
531952
|
-
const $2 =
|
|
532010
|
+
const $2 = import_react_compiler_runtime375.c(9);
|
|
531953
532011
|
const {
|
|
531954
532012
|
children
|
|
531955
532013
|
} = t0;
|
|
@@ -532013,11 +532071,11 @@ function OrderedListComponent(t0) {
|
|
|
532013
532071
|
}
|
|
532014
532072
|
return t2;
|
|
532015
532073
|
}
|
|
532016
|
-
var
|
|
532074
|
+
var import_react_compiler_runtime375, import_react326, jsx_dev_runtime478, OrderedListContext, OrderedList;
|
|
532017
532075
|
var init_OrderedList = __esm(() => {
|
|
532018
532076
|
init_ink2();
|
|
532019
532077
|
init_OrderedListItem();
|
|
532020
|
-
|
|
532078
|
+
import_react_compiler_runtime375 = __toESM(require_dist4(), 1);
|
|
532021
532079
|
import_react326 = __toESM(require_react(), 1);
|
|
532022
532080
|
jsx_dev_runtime478 = __toESM(require_jsx_dev_runtime(), 1);
|
|
532023
532081
|
OrderedListContext = import_react326.createContext({
|
|
@@ -532291,7 +532349,7 @@ function Onboarding({
|
|
|
532291
532349
|
}, undefined, true, undefined, this);
|
|
532292
532350
|
}
|
|
532293
532351
|
function SkippableStep(t0) {
|
|
532294
|
-
const $2 =
|
|
532352
|
+
const $2 = import_react_compiler_runtime376.c(4);
|
|
532295
532353
|
const {
|
|
532296
532354
|
skip,
|
|
532297
532355
|
onSkip,
|
|
@@ -532320,7 +532378,7 @@ function SkippableStep(t0) {
|
|
|
532320
532378
|
}
|
|
532321
532379
|
return children;
|
|
532322
532380
|
}
|
|
532323
|
-
var
|
|
532381
|
+
var import_react_compiler_runtime376, import_react327, jsx_dev_runtime479;
|
|
532324
532382
|
var init_Onboarding = __esm(() => {
|
|
532325
532383
|
init_analytics();
|
|
532326
532384
|
init_terminalSetup();
|
|
@@ -532339,7 +532397,7 @@ var init_Onboarding = __esm(() => {
|
|
|
532339
532397
|
init_PressEnterToContinue();
|
|
532340
532398
|
init_ThemePicker();
|
|
532341
532399
|
init_OrderedList();
|
|
532342
|
-
|
|
532400
|
+
import_react_compiler_runtime376 = __toESM(require_dist4(), 1);
|
|
532343
532401
|
import_react327 = __toESM(require_react(), 1);
|
|
532344
532402
|
jsx_dev_runtime479 = __toESM(require_jsx_dev_runtime(), 1);
|
|
532345
532403
|
});
|
|
@@ -532483,7 +532541,7 @@ __export(exports_TrustDialog, {
|
|
|
532483
532541
|
});
|
|
532484
532542
|
import { homedir as homedir38 } from "os";
|
|
532485
532543
|
function TrustDialog(t0) {
|
|
532486
|
-
const $2 =
|
|
532544
|
+
const $2 = import_react_compiler_runtime377.c(33);
|
|
532487
532545
|
const {
|
|
532488
532546
|
onDone,
|
|
532489
532547
|
commands
|
|
@@ -532798,7 +532856,7 @@ function _temp2101(command8) {
|
|
|
532798
532856
|
function _temp303(tool) {
|
|
532799
532857
|
return tool === BASH_TOOL_NAME || tool.startsWith(BASH_TOOL_NAME + "(");
|
|
532800
532858
|
}
|
|
532801
|
-
var
|
|
532859
|
+
var import_react_compiler_runtime377, import_react328, jsx_dev_runtime480;
|
|
532802
532860
|
var init_TrustDialog = __esm(() => {
|
|
532803
532861
|
init_analytics();
|
|
532804
532862
|
init_state();
|
|
@@ -532813,7 +532871,7 @@ var init_TrustDialog = __esm(() => {
|
|
|
532813
532871
|
init_CustomSelect();
|
|
532814
532872
|
init_PermissionDialog();
|
|
532815
532873
|
init_utils13();
|
|
532816
|
-
|
|
532874
|
+
import_react_compiler_runtime377 = __toESM(require_dist4(), 1);
|
|
532817
532875
|
import_react328 = __toESM(require_react(), 1);
|
|
532818
532876
|
jsx_dev_runtime480 = __toESM(require_jsx_dev_runtime(), 1);
|
|
532819
532877
|
});
|
|
@@ -533262,7 +533320,7 @@ __export(exports_BypassPermissionsModeDialog, {
|
|
|
533262
533320
|
BypassPermissionsModeDialog: () => BypassPermissionsModeDialog
|
|
533263
533321
|
});
|
|
533264
533322
|
function BypassPermissionsModeDialog(t0) {
|
|
533265
|
-
const $2 =
|
|
533323
|
+
const $2 = import_react_compiler_runtime378.c(7);
|
|
533266
533324
|
const {
|
|
533267
533325
|
onAccept
|
|
533268
533326
|
} = t0;
|
|
@@ -533364,7 +533422,7 @@ function _temp2102() {
|
|
|
533364
533422
|
function _temp304() {
|
|
533365
533423
|
logEvent("tengu_bypass_permissions_mode_dialog_shown", {});
|
|
533366
533424
|
}
|
|
533367
|
-
var
|
|
533425
|
+
var import_react_compiler_runtime378, import_react330, jsx_dev_runtime482;
|
|
533368
533426
|
var init_BypassPermissionsModeDialog = __esm(() => {
|
|
533369
533427
|
init_analytics();
|
|
533370
533428
|
init_ink2();
|
|
@@ -533372,7 +533430,7 @@ var init_BypassPermissionsModeDialog = __esm(() => {
|
|
|
533372
533430
|
init_settings2();
|
|
533373
533431
|
init_CustomSelect();
|
|
533374
533432
|
init_Dialog();
|
|
533375
|
-
|
|
533433
|
+
import_react_compiler_runtime378 = __toESM(require_dist4(), 1);
|
|
533376
533434
|
import_react330 = __toESM(require_react(), 1);
|
|
533377
533435
|
jsx_dev_runtime482 = __toESM(require_jsx_dev_runtime(), 1);
|
|
533378
533436
|
});
|
|
@@ -533383,7 +533441,7 @@ __export(exports_ClaudeInChromeOnboarding, {
|
|
|
533383
533441
|
ClaudeInChromeOnboarding: () => ClaudeInChromeOnboarding
|
|
533384
533442
|
});
|
|
533385
533443
|
function ClaudeInChromeOnboarding(t0) {
|
|
533386
|
-
const $2 =
|
|
533444
|
+
const $2 = import_react_compiler_runtime379.c(20);
|
|
533387
533445
|
const {
|
|
533388
533446
|
onDone
|
|
533389
533447
|
} = t0;
|
|
@@ -533549,14 +533607,14 @@ function _temp305(current) {
|
|
|
533549
533607
|
hasCompletedClaudeInChromeOnboarding: true
|
|
533550
533608
|
};
|
|
533551
533609
|
}
|
|
533552
|
-
var
|
|
533610
|
+
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
533611
|
var init_ClaudeInChromeOnboarding = __esm(() => {
|
|
533554
533612
|
init_analytics();
|
|
533555
533613
|
init_ink2();
|
|
533556
533614
|
init_setup2();
|
|
533557
533615
|
init_config2();
|
|
533558
533616
|
init_Dialog();
|
|
533559
|
-
|
|
533617
|
+
import_react_compiler_runtime379 = __toESM(require_dist4(), 1);
|
|
533560
533618
|
import_react331 = __toESM(require_react(), 1);
|
|
533561
533619
|
jsx_dev_runtime483 = __toESM(require_jsx_dev_runtime(), 1);
|
|
533562
533620
|
});
|
|
@@ -533822,7 +533880,7 @@ __export(exports_InvalidSettingsDialog, {
|
|
|
533822
533880
|
InvalidSettingsDialog: () => InvalidSettingsDialog
|
|
533823
533881
|
});
|
|
533824
533882
|
function InvalidSettingsDialog(t0) {
|
|
533825
|
-
const $2 =
|
|
533883
|
+
const $2 = import_react_compiler_runtime380.c(13);
|
|
533826
533884
|
const {
|
|
533827
533885
|
settingsErrors,
|
|
533828
533886
|
onContinue,
|
|
@@ -533909,19 +533967,19 @@ function InvalidSettingsDialog(t0) {
|
|
|
533909
533967
|
}
|
|
533910
533968
|
return t6;
|
|
533911
533969
|
}
|
|
533912
|
-
var
|
|
533970
|
+
var import_react_compiler_runtime380, jsx_dev_runtime485;
|
|
533913
533971
|
var init_InvalidSettingsDialog = __esm(() => {
|
|
533914
533972
|
init_ink2();
|
|
533915
533973
|
init_CustomSelect();
|
|
533916
533974
|
init_Dialog();
|
|
533917
533975
|
init_ValidationErrorsList();
|
|
533918
|
-
|
|
533976
|
+
import_react_compiler_runtime380 = __toESM(require_dist4(), 1);
|
|
533919
533977
|
jsx_dev_runtime485 = __toESM(require_jsx_dev_runtime(), 1);
|
|
533920
533978
|
});
|
|
533921
533979
|
|
|
533922
533980
|
// src/hooks/useTeleportResume.tsx
|
|
533923
533981
|
function useTeleportResume(source) {
|
|
533924
|
-
const $2 =
|
|
533982
|
+
const $2 = import_react_compiler_runtime381.c(8);
|
|
533925
533983
|
const [isResuming, setIsResuming] = import_react332.useState(false);
|
|
533926
533984
|
const [error42, setError] = import_react332.useState(null);
|
|
533927
533985
|
const [selectedSession, setSelectedSession] = import_react332.useState(null);
|
|
@@ -533989,13 +534047,13 @@ function useTeleportResume(source) {
|
|
|
533989
534047
|
}
|
|
533990
534048
|
return t2;
|
|
533991
534049
|
}
|
|
533992
|
-
var
|
|
534050
|
+
var import_react_compiler_runtime381, import_react332;
|
|
533993
534051
|
var init_useTeleportResume = __esm(() => {
|
|
533994
534052
|
init_state();
|
|
533995
534053
|
init_analytics();
|
|
533996
534054
|
init_errors();
|
|
533997
534055
|
init_teleport();
|
|
533998
|
-
|
|
534056
|
+
import_react_compiler_runtime381 = __toESM(require_dist4(), 1);
|
|
533999
534057
|
import_react332 = __toESM(require_react(), 1);
|
|
534000
534058
|
});
|
|
534001
534059
|
|
|
@@ -534369,7 +534427,7 @@ __export(exports_TeleportResumeWrapper, {
|
|
|
534369
534427
|
TeleportResumeWrapper: () => TeleportResumeWrapper
|
|
534370
534428
|
});
|
|
534371
534429
|
function TeleportResumeWrapper(t0) {
|
|
534372
|
-
const $2 =
|
|
534430
|
+
const $2 = import_react_compiler_runtime382.c(25);
|
|
534373
534431
|
const {
|
|
534374
534432
|
onComplete,
|
|
534375
534433
|
onCancel,
|
|
@@ -534567,7 +534625,7 @@ function TeleportResumeWrapper(t0) {
|
|
|
534567
534625
|
}
|
|
534568
534626
|
return t8;
|
|
534569
534627
|
}
|
|
534570
|
-
var
|
|
534628
|
+
var import_react_compiler_runtime382, import_react334, jsx_dev_runtime487;
|
|
534571
534629
|
var init_TeleportResumeWrapper = __esm(() => {
|
|
534572
534630
|
init_analytics();
|
|
534573
534631
|
init_useTeleportResume();
|
|
@@ -534575,7 +534633,7 @@ var init_TeleportResumeWrapper = __esm(() => {
|
|
|
534575
534633
|
init_useKeybinding();
|
|
534576
534634
|
init_ResumeTask();
|
|
534577
534635
|
init_Spinner2();
|
|
534578
|
-
|
|
534636
|
+
import_react_compiler_runtime382 = __toESM(require_dist4(), 1);
|
|
534579
534637
|
import_react334 = __toESM(require_react(), 1);
|
|
534580
534638
|
jsx_dev_runtime487 = __toESM(require_jsx_dev_runtime(), 1);
|
|
534581
534639
|
});
|
|
@@ -534586,7 +534644,7 @@ __export(exports_TeleportRepoMismatchDialog, {
|
|
|
534586
534644
|
TeleportRepoMismatchDialog: () => TeleportRepoMismatchDialog
|
|
534587
534645
|
});
|
|
534588
534646
|
function TeleportRepoMismatchDialog(t0) {
|
|
534589
|
-
const $2 =
|
|
534647
|
+
const $2 = import_react_compiler_runtime383.c(18);
|
|
534590
534648
|
const {
|
|
534591
534649
|
targetRepo,
|
|
534592
534650
|
initialPaths,
|
|
@@ -534737,7 +534795,7 @@ function _temp306(path23) {
|
|
|
534737
534795
|
value: path23
|
|
534738
534796
|
};
|
|
534739
534797
|
}
|
|
534740
|
-
var
|
|
534798
|
+
var import_react_compiler_runtime383, import_react335, jsx_dev_runtime488;
|
|
534741
534799
|
var init_TeleportRepoMismatchDialog = __esm(() => {
|
|
534742
534800
|
init_ink2();
|
|
534743
534801
|
init_file();
|
|
@@ -534745,7 +534803,7 @@ var init_TeleportRepoMismatchDialog = __esm(() => {
|
|
|
534745
534803
|
init_CustomSelect();
|
|
534746
534804
|
init_Dialog();
|
|
534747
534805
|
init_Spinner2();
|
|
534748
|
-
|
|
534806
|
+
import_react_compiler_runtime383 = __toESM(require_dist4(), 1);
|
|
534749
534807
|
import_react335 = __toESM(require_react(), 1);
|
|
534750
534808
|
jsx_dev_runtime488 = __toESM(require_jsx_dev_runtime(), 1);
|
|
534751
534809
|
});
|
|
@@ -535009,7 +535067,7 @@ function ResumeConversation({
|
|
|
535009
535067
|
}, undefined, false, undefined, this);
|
|
535010
535068
|
}
|
|
535011
535069
|
function NoConversationsMessage() {
|
|
535012
|
-
const $2 =
|
|
535070
|
+
const $2 = import_react_compiler_runtime384.c(2);
|
|
535013
535071
|
let t0;
|
|
535014
535072
|
if ($2[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
535015
535073
|
t0 = {
|
|
@@ -535044,7 +535102,7 @@ function _temp307() {
|
|
|
535044
535102
|
process.exit(1);
|
|
535045
535103
|
}
|
|
535046
535104
|
function CrossProjectMessage(t0) {
|
|
535047
|
-
const $2 =
|
|
535105
|
+
const $2 = import_react_compiler_runtime384.c(8);
|
|
535048
535106
|
const {
|
|
535049
535107
|
command: command8
|
|
535050
535108
|
} = t0;
|
|
@@ -535128,7 +535186,7 @@ function _temp359() {
|
|
|
535128
535186
|
function _temp2103() {
|
|
535129
535187
|
process.exit(0);
|
|
535130
535188
|
}
|
|
535131
|
-
var
|
|
535189
|
+
var import_react_compiler_runtime384, import_react336, jsx_dev_runtime489;
|
|
535132
535190
|
var init_ResumeConversation = __esm(() => {
|
|
535133
535191
|
init_useTerminalSize();
|
|
535134
535192
|
init_state();
|
|
@@ -535151,7 +535209,7 @@ var init_ResumeConversation = __esm(() => {
|
|
|
535151
535209
|
init_sessionRestore();
|
|
535152
535210
|
init_sessionStorage();
|
|
535153
535211
|
init_REPL();
|
|
535154
|
-
|
|
535212
|
+
import_react_compiler_runtime384 = __toESM(require_dist4(), 1);
|
|
535155
535213
|
import_react336 = __toESM(require_react(), 1);
|
|
535156
535214
|
jsx_dev_runtime489 = __toESM(require_jsx_dev_runtime(), 1);
|
|
535157
535215
|
});
|
|
@@ -547332,7 +547390,7 @@ __export(exports_TeleportProgress, {
|
|
|
547332
547390
|
TeleportProgress: () => TeleportProgress
|
|
547333
547391
|
});
|
|
547334
547392
|
function TeleportProgress(t0) {
|
|
547335
|
-
const $2 =
|
|
547393
|
+
const $2 = import_react_compiler_runtime385.c(16);
|
|
547336
547394
|
const {
|
|
547337
547395
|
currentStep,
|
|
547338
547396
|
sessionId
|
|
@@ -547485,13 +547543,13 @@ async function teleportWithProgress(root2, sessionId) {
|
|
|
547485
547543
|
branchName
|
|
547486
547544
|
};
|
|
547487
547545
|
}
|
|
547488
|
-
var
|
|
547546
|
+
var import_react_compiler_runtime385, import_react337, jsx_dev_runtime491, SPINNER_FRAMES3, STEPS;
|
|
547489
547547
|
var init_TeleportProgress = __esm(() => {
|
|
547490
547548
|
init_figures();
|
|
547491
547549
|
init_ink2();
|
|
547492
547550
|
init_AppState();
|
|
547493
547551
|
init_teleport();
|
|
547494
|
-
|
|
547552
|
+
import_react_compiler_runtime385 = __toESM(require_dist4(), 1);
|
|
547495
547553
|
import_react337 = __toESM(require_react(), 1);
|
|
547496
547554
|
jsx_dev_runtime491 = __toESM(require_jsx_dev_runtime(), 1);
|
|
547497
547555
|
SPINNER_FRAMES3 = ["◐", "◓", "◑", "◒"];
|
|
@@ -547512,7 +547570,7 @@ var init_TeleportProgress = __esm(() => {
|
|
|
547512
547570
|
|
|
547513
547571
|
// src/components/MCPServerDesktopImportDialog.tsx
|
|
547514
547572
|
function MCPServerDesktopImportDialog(t0) {
|
|
547515
|
-
const $2 =
|
|
547573
|
+
const $2 = import_react_compiler_runtime386.c(36);
|
|
547516
547574
|
const {
|
|
547517
547575
|
servers,
|
|
547518
547576
|
scope,
|
|
@@ -547748,7 +547806,7 @@ No servers were imported.`);
|
|
|
547748
547806
|
}
|
|
547749
547807
|
return t18;
|
|
547750
547808
|
}
|
|
547751
|
-
var
|
|
547809
|
+
var import_react_compiler_runtime386, import_react338, jsx_dev_runtime492;
|
|
547752
547810
|
var init_MCPServerDesktopImportDialog = __esm(() => {
|
|
547753
547811
|
init_gracefulShutdown();
|
|
547754
547812
|
init_ink2();
|
|
@@ -547759,7 +547817,7 @@ var init_MCPServerDesktopImportDialog = __esm(() => {
|
|
|
547759
547817
|
init_Byline();
|
|
547760
547818
|
init_Dialog();
|
|
547761
547819
|
init_KeyboardShortcutHint();
|
|
547762
|
-
|
|
547820
|
+
import_react_compiler_runtime386 = __toESM(require_dist4(), 1);
|
|
547763
547821
|
import_react338 = __toESM(require_react(), 1);
|
|
547764
547822
|
jsx_dev_runtime492 = __toESM(require_jsx_dev_runtime(), 1);
|
|
547765
547823
|
});
|
|
@@ -549275,7 +549333,7 @@ function getInstallationPath2() {
|
|
|
549275
549333
|
return "~/.local/bin/claude";
|
|
549276
549334
|
}
|
|
549277
549335
|
function SetupNotes(t0) {
|
|
549278
|
-
const $2 =
|
|
549336
|
+
const $2 = import_react_compiler_runtime387.c(5);
|
|
549279
549337
|
const {
|
|
549280
549338
|
messages
|
|
549281
549339
|
} = t0;
|
|
@@ -549580,7 +549638,7 @@ function Install({
|
|
|
549580
549638
|
]
|
|
549581
549639
|
}, undefined, true, undefined, this);
|
|
549582
549640
|
}
|
|
549583
|
-
var
|
|
549641
|
+
var import_react_compiler_runtime387, import_react339, jsx_dev_runtime494, install;
|
|
549584
549642
|
var init_install = __esm(() => {
|
|
549585
549643
|
init_analytics();
|
|
549586
549644
|
init_StatusIcon();
|
|
@@ -549590,7 +549648,7 @@ var init_install = __esm(() => {
|
|
|
549590
549648
|
init_errors();
|
|
549591
549649
|
init_nativeInstaller();
|
|
549592
549650
|
init_settings2();
|
|
549593
|
-
|
|
549651
|
+
import_react_compiler_runtime387 = __toESM(require_dist4(), 1);
|
|
549594
549652
|
import_react339 = __toESM(require_react(), 1);
|
|
549595
549653
|
jsx_dev_runtime494 = __toESM(require_jsx_dev_runtime(), 1);
|
|
549596
549654
|
install = {
|
|
@@ -549668,7 +549726,7 @@ async function setupTokenHandler(root2) {
|
|
|
549668
549726
|
process.exit(0);
|
|
549669
549727
|
}
|
|
549670
549728
|
function DoctorWithPlugins(t0) {
|
|
549671
|
-
const $2 =
|
|
549729
|
+
const $2 = import_react_compiler_runtime388.c(2);
|
|
549672
549730
|
const {
|
|
549673
549731
|
onDone
|
|
549674
549732
|
} = t0;
|
|
@@ -549728,7 +549786,7 @@ async function installHandler(target, options2) {
|
|
|
549728
549786
|
}, {}, args);
|
|
549729
549787
|
});
|
|
549730
549788
|
}
|
|
549731
|
-
var
|
|
549789
|
+
var import_react_compiler_runtime388, import_react340, jsx_dev_runtime495, DoctorLazy;
|
|
549732
549790
|
var init_util4 = __esm(() => {
|
|
549733
549791
|
init_WelcomeV2();
|
|
549734
549792
|
init_useManagePlugins();
|
|
@@ -549739,7 +549797,7 @@ var init_util4 = __esm(() => {
|
|
|
549739
549797
|
init_AppState();
|
|
549740
549798
|
init_onChangeAppState();
|
|
549741
549799
|
init_auth2();
|
|
549742
|
-
|
|
549800
|
+
import_react_compiler_runtime388 = __toESM(require_dist4(), 1);
|
|
549743
549801
|
import_react340 = __toESM(require_react(), 1);
|
|
549744
549802
|
jsx_dev_runtime495 = __toESM(require_jsx_dev_runtime(), 1);
|
|
549745
549803
|
DoctorLazy = import_react340.default.lazy(() => Promise.resolve().then(() => (init_Doctor(), exports_Doctor)).then((m) => ({
|
|
@@ -552120,7 +552178,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
552120
552178
|
pendingHookMessages
|
|
552121
552179
|
}, renderAndRun);
|
|
552122
552180
|
}
|
|
552123
|
-
}).version("0.1.
|
|
552181
|
+
}).version("0.1.5 (Open Claude)", "-v, --version", "Output the version number");
|
|
552124
552182
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
552125
552183
|
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
552184
|
if (canUserConfigureAdvisor()) {
|
|
@@ -552679,7 +552737,7 @@ function validateProviderEnvOrExit() {
|
|
|
552679
552737
|
async function main2() {
|
|
552680
552738
|
const args = process.argv.slice(2);
|
|
552681
552739
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
552682
|
-
console.log(`${"0.1.
|
|
552740
|
+
console.log(`${"0.1.5"} (PointCode)`);
|
|
552683
552741
|
return;
|
|
552684
552742
|
}
|
|
552685
552743
|
validateProviderEnvOrExit();
|
|
@@ -552766,4 +552824,4 @@ async function main2() {
|
|
|
552766
552824
|
}
|
|
552767
552825
|
main2();
|
|
552768
552826
|
|
|
552769
|
-
//# debugId=
|
|
552827
|
+
//# debugId=59810AFAF4F90C5464756E2164756E21
|