@verboo/code 0.7.26 → 0.7.27
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 +258 -246
- package/package.json +1 -1
- package/scripts/postinstall.mjs +39 -1
package/dist/cli.mjs
CHANGED
|
@@ -9536,7 +9536,10 @@ import { cwd } from "process";
|
|
|
9536
9536
|
function getInitialState() {
|
|
9537
9537
|
let resolvedCwd = "";
|
|
9538
9538
|
if (typeof process !== "undefined" && typeof process.cwd === "function" && typeof realpathSync === "function") {
|
|
9539
|
-
|
|
9539
|
+
let rawCwd = "";
|
|
9540
|
+
try {
|
|
9541
|
+
rawCwd = cwd();
|
|
9542
|
+
} catch {}
|
|
9540
9543
|
try {
|
|
9541
9544
|
resolvedCwd = realpathSync(rawCwd).normalize("NFC");
|
|
9542
9545
|
} catch {
|
|
@@ -139401,7 +139404,7 @@ class VirtualScreen {
|
|
|
139401
139404
|
this.cursor.y += next.dy;
|
|
139402
139405
|
}
|
|
139403
139406
|
}
|
|
139404
|
-
var CARRIAGE_RETURN, NEWLINE, MAX_MAIN_SCREEN_REWRITE_ROWS =
|
|
139407
|
+
var CARRIAGE_RETURN, NEWLINE, MAX_MAIN_SCREEN_REWRITE_ROWS = 15;
|
|
139405
139408
|
var init_log_update = __esm(() => {
|
|
139406
139409
|
init_build();
|
|
139407
139410
|
init_debug();
|
|
@@ -193290,6 +193293,7 @@ var exports_openaiShim = {};
|
|
|
193290
193293
|
__export(exports_openaiShim, {
|
|
193291
193294
|
createOpenAIShimClient: () => createOpenAIShimClient
|
|
193292
193295
|
});
|
|
193296
|
+
import { randomUUID as randomUUID6 } from "crypto";
|
|
193293
193297
|
function isGithubModelsMode() {
|
|
193294
193298
|
return isEnvTruthy(process.env.CLAUDE_CODE_USE_GITHUB);
|
|
193295
193299
|
}
|
|
@@ -193563,7 +193567,7 @@ function convertMessages(messages, system, options2) {
|
|
|
193563
193567
|
}
|
|
193564
193568
|
if (toolUses.length > 0) {
|
|
193565
193569
|
const mappedToolCalls = toolUses.map((tu) => {
|
|
193566
|
-
const id = tu.id ?? `call_${
|
|
193570
|
+
const id = tu.id ?? `call_${randomUUID6().replace(/-/g, "")}`;
|
|
193567
193571
|
if (!toolResultIds.has(id) && !isLastInHistory) {
|
|
193568
193572
|
return null;
|
|
193569
193573
|
}
|
|
@@ -193710,7 +193714,7 @@ function convertTools(tools) {
|
|
|
193710
193714
|
});
|
|
193711
193715
|
}
|
|
193712
193716
|
function makeMessageId2() {
|
|
193713
|
-
return `msg_${
|
|
193717
|
+
return `msg_${randomUUID6().replace(/-/g, "")}`;
|
|
193714
193718
|
}
|
|
193715
193719
|
function convertChunkUsage(usage) {
|
|
193716
193720
|
if (!usage)
|
|
@@ -201275,7 +201279,7 @@ var init_bedrock_sdk = __esm(() => {
|
|
|
201275
201279
|
});
|
|
201276
201280
|
|
|
201277
201281
|
// src/services/api/client.ts
|
|
201278
|
-
import { randomUUID as
|
|
201282
|
+
import { randomUUID as randomUUID7 } from "crypto";
|
|
201279
201283
|
function createStderrLogger() {
|
|
201280
201284
|
return {
|
|
201281
201285
|
error: (msg, ...args) => console.error("[Verboo SDK ERROR]", msg, ...args),
|
|
@@ -201504,7 +201508,7 @@ function buildFetch(fetchOverride, source) {
|
|
|
201504
201508
|
return (input, init) => {
|
|
201505
201509
|
const headers = new Headers(init?.headers);
|
|
201506
201510
|
if (injectClientRequestId && !headers.has(CLIENT_REQUEST_ID_HEADER)) {
|
|
201507
|
-
headers.set(CLIENT_REQUEST_ID_HEADER,
|
|
201511
|
+
headers.set(CLIENT_REQUEST_ID_HEADER, randomUUID7());
|
|
201508
201512
|
}
|
|
201509
201513
|
try {
|
|
201510
201514
|
const url3 = input instanceof Request ? input.url : String(input);
|
|
@@ -254052,7 +254056,7 @@ var init_queryHelpers = __esm(() => {
|
|
|
254052
254056
|
});
|
|
254053
254057
|
|
|
254054
254058
|
// src/services/PromptSuggestion/speculation.ts
|
|
254055
|
-
import { randomUUID as
|
|
254059
|
+
import { randomUUID as randomUUID8 } from "crypto";
|
|
254056
254060
|
import { rm as rm2 } from "fs";
|
|
254057
254061
|
import { appendFile as appendFile3, copyFile, mkdir as mkdir7 } from "fs/promises";
|
|
254058
254062
|
import { dirname as dirname23, isAbsolute as isAbsolute11, join as join46, relative as relative7 } from "path";
|
|
@@ -254242,7 +254246,7 @@ async function startSpeculation(suggestionText, context3, setAppState, isPipelin
|
|
|
254242
254246
|
if (!isSpeculationEnabled())
|
|
254243
254247
|
return;
|
|
254244
254248
|
abortSpeculation(setAppState);
|
|
254245
|
-
const id =
|
|
254249
|
+
const id = randomUUID8().slice(0, 8);
|
|
254246
254250
|
const abortController = createChildAbortController(context3.toolUseContext.abortController);
|
|
254247
254251
|
if (abortController.signal.aborted)
|
|
254248
254252
|
return;
|
|
@@ -254622,7 +254626,7 @@ var init_speculation = __esm(() => {
|
|
|
254622
254626
|
});
|
|
254623
254627
|
|
|
254624
254628
|
// src/utils/sdkEventQueue.ts
|
|
254625
|
-
import { randomUUID as
|
|
254629
|
+
import { randomUUID as randomUUID9 } from "crypto";
|
|
254626
254630
|
function enqueueSdkEvent(event) {
|
|
254627
254631
|
if (!getIsNonInteractiveSession()) {
|
|
254628
254632
|
return;
|
|
@@ -254639,7 +254643,7 @@ function drainSdkEvents() {
|
|
|
254639
254643
|
const events = queue.splice(0);
|
|
254640
254644
|
return events.map((e) => ({
|
|
254641
254645
|
...e,
|
|
254642
|
-
uuid:
|
|
254646
|
+
uuid: randomUUID9(),
|
|
254643
254647
|
session_id: getSessionId()
|
|
254644
254648
|
}));
|
|
254645
254649
|
}
|
|
@@ -275708,7 +275712,7 @@ var init_spinnerVerbs = __esm(() => {
|
|
|
275708
275712
|
"Channelling",
|
|
275709
275713
|
"Choreographing",
|
|
275710
275714
|
"Churning",
|
|
275711
|
-
"
|
|
275715
|
+
"Scaring",
|
|
275712
275716
|
"Coalescing",
|
|
275713
275717
|
"Cogitating",
|
|
275714
275718
|
"Combobulating",
|
|
@@ -277698,7 +277702,7 @@ function SpinnerAnimationRow({
|
|
|
277698
277702
|
const sep12 = SEP_WIDTH;
|
|
277699
277703
|
const wantsThinking = thinkingStatus !== null;
|
|
277700
277704
|
const wantsTimerAndTokens = verbose || hasRunningTeammates || effectiveElapsedMs > SHOW_TOKENS_AFTER_MS;
|
|
277701
|
-
const availableSpace = columns - messageWidth -
|
|
277705
|
+
const availableSpace = columns - messageWidth - 6;
|
|
277702
277706
|
let showThinking = wantsThinking && availableSpace > thinkingWidthValue;
|
|
277703
277707
|
if (!showThinking && wantsThinking && thinkingStatus === "thinking" && effortSuffix) {
|
|
277704
277708
|
if (availableSpace > THINKING_BARE_WIDTH) {
|
|
@@ -277778,7 +277782,7 @@ function SpinnerAnimationRow({
|
|
|
277778
277782
|
children: /* @__PURE__ */ jsx_dev_runtime62.jsxDEV(ThemedBox_default, {
|
|
277779
277783
|
ref: viewportRef,
|
|
277780
277784
|
flexDirection: "row",
|
|
277781
|
-
flexWrap: "
|
|
277785
|
+
flexWrap: "nowrap",
|
|
277782
277786
|
marginTop: 1,
|
|
277783
277787
|
children: [
|
|
277784
277788
|
/* @__PURE__ */ jsx_dev_runtime62.jsxDEV(SpinnerGlyph, {
|
|
@@ -284828,7 +284832,7 @@ __export(exports_api, {
|
|
|
284828
284832
|
CodeSessionSchema: () => CodeSessionSchema,
|
|
284829
284833
|
CCR_BYOC_BETA: () => CCR_BYOC_BETA
|
|
284830
284834
|
});
|
|
284831
|
-
import { randomUUID as
|
|
284835
|
+
import { randomUUID as randomUUID10 } from "crypto";
|
|
284832
284836
|
function isTransientNetworkError(error42) {
|
|
284833
284837
|
if (!axios_default.isAxiosError(error42)) {
|
|
284834
284838
|
return false;
|
|
@@ -284971,7 +284975,7 @@ async function sendEventToRemoteSession(sessionId, messageContent, opts) {
|
|
|
284971
284975
|
"x-organization-uuid": orgUUID
|
|
284972
284976
|
};
|
|
284973
284977
|
const userEvent = {
|
|
284974
|
-
uuid: opts?.uuid ??
|
|
284978
|
+
uuid: opts?.uuid ?? randomUUID10(),
|
|
284975
284979
|
session_id: sessionId,
|
|
284976
284980
|
type: "user",
|
|
284977
284981
|
parent_tool_use_id: null,
|
|
@@ -295376,7 +295380,7 @@ __export(exports_processSlashCommand, {
|
|
|
295376
295380
|
looksLikeCommand: () => looksLikeCommand,
|
|
295377
295381
|
formatSkillLoadingMetadata: () => formatSkillLoadingMetadata
|
|
295378
295382
|
});
|
|
295379
|
-
import { randomUUID as
|
|
295383
|
+
import { randomUUID as randomUUID11 } from "crypto";
|
|
295380
295384
|
async function executeForkedSlashCommand(command, args, context4, precedingInputBlocks, setToolJSX, canUseTool) {
|
|
295381
295385
|
const agentId = createAgentId();
|
|
295382
295386
|
const pluginMarketplace = command.pluginInfo ? parsePluginIdentifier(command.pluginInfo.repository).marketplace : undefined;
|
|
@@ -295420,7 +295424,7 @@ async function executeForkedSlashCommand(command, args, context4, precedingInput
|
|
|
295420
295424
|
parentToolUseID,
|
|
295421
295425
|
toolUseID: `${parentToolUseID}-${toolUseCounter}`,
|
|
295422
295426
|
timestamp: new Date().toISOString(),
|
|
295423
|
-
uuid:
|
|
295427
|
+
uuid: randomUUID11()
|
|
295424
295428
|
};
|
|
295425
295429
|
};
|
|
295426
295430
|
const updateProgress = () => {
|
|
@@ -295545,7 +295549,7 @@ async function processSlashCommand(inputString, precedingInputBlocks, imageConte
|
|
|
295545
295549
|
resultText: unknownMessage
|
|
295546
295550
|
};
|
|
295547
295551
|
}
|
|
295548
|
-
const promptId =
|
|
295552
|
+
const promptId = randomUUID11();
|
|
295549
295553
|
setPromptId(promptId);
|
|
295550
295554
|
logEvent("tengu_input_prompt", {});
|
|
295551
295555
|
logOTelEvent("user_prompt", {
|
|
@@ -296056,7 +296060,7 @@ var init_MonitorMcpTask = __esm(() => {
|
|
|
296056
296060
|
});
|
|
296057
296061
|
|
|
296058
296062
|
// src/tools/AgentTool/runAgent.ts
|
|
296059
|
-
import { randomUUID as
|
|
296063
|
+
import { randomUUID as randomUUID12 } from "crypto";
|
|
296060
296064
|
async function initializeAgentMcpServers(agentDefinition, parentClients) {
|
|
296061
296065
|
if (!agentDefinition.mcpServers?.length) {
|
|
296062
296066
|
return {
|
|
@@ -296245,7 +296249,7 @@ async function* runAgent({
|
|
|
296245
296249
|
type: "hook_additional_context",
|
|
296246
296250
|
content: additionalContexts,
|
|
296247
296251
|
hookName: "SubagentStart",
|
|
296248
|
-
toolUseID:
|
|
296252
|
+
toolUseID: randomUUID12(),
|
|
296249
296253
|
hookEvent: "SubagentStart"
|
|
296250
296254
|
});
|
|
296251
296255
|
initialMessages.push(contextMessage);
|
|
@@ -299260,7 +299264,7 @@ var init_words = __esm(() => {
|
|
|
299260
299264
|
});
|
|
299261
299265
|
|
|
299262
299266
|
// src/utils/plans.ts
|
|
299263
|
-
import { randomUUID as
|
|
299267
|
+
import { randomUUID as randomUUID13 } from "crypto";
|
|
299264
299268
|
import { copyFile as copyFile4, writeFile as writeFile16 } from "fs/promises";
|
|
299265
299269
|
import { join as join69, resolve as resolve23, sep as sep14 } from "path";
|
|
299266
299270
|
function getPlanSlug(sessionId) {
|
|
@@ -299443,7 +299447,7 @@ async function persistFileSnapshotIfRemote() {
|
|
|
299443
299447
|
level: "info",
|
|
299444
299448
|
isMeta: true,
|
|
299445
299449
|
timestamp: new Date().toISOString(),
|
|
299446
|
-
uuid:
|
|
299450
|
+
uuid: randomUUID13(),
|
|
299447
299451
|
snapshotFiles
|
|
299448
299452
|
};
|
|
299449
299453
|
const { recordTranscript: recordTranscript2 } = await Promise.resolve().then(() => (init_sessionStorage(), exports_sessionStorage));
|
|
@@ -300404,7 +300408,7 @@ var init_conversationRecovery = __esm(() => {
|
|
|
300404
300408
|
});
|
|
300405
300409
|
|
|
300406
300410
|
// src/services/api/filesApi.ts
|
|
300407
|
-
import { randomUUID as
|
|
300411
|
+
import { randomUUID as randomUUID14 } from "crypto";
|
|
300408
300412
|
import * as fs2 from "fs/promises";
|
|
300409
300413
|
import * as path12 from "path";
|
|
300410
300414
|
function getDefaultApiBaseUrl() {
|
|
@@ -300588,7 +300592,7 @@ async function uploadFile(filePath, relativePath, config2, opts) {
|
|
|
300588
300592
|
success: false
|
|
300589
300593
|
};
|
|
300590
300594
|
}
|
|
300591
|
-
const boundary = `----FormBoundary${
|
|
300595
|
+
const boundary = `----FormBoundary${randomUUID14()}`;
|
|
300592
300596
|
const filename = path12.basename(relativePath);
|
|
300593
300597
|
const bodyParts = [];
|
|
300594
300598
|
bodyParts.push(Buffer.from(`--${boundary}\r
|
|
@@ -300892,7 +300896,7 @@ __export(exports_teleport, {
|
|
|
300892
300896
|
checkOutTeleportedSessionBranch: () => checkOutTeleportedSessionBranch,
|
|
300893
300897
|
archiveRemoteSession: () => archiveRemoteSession
|
|
300894
300898
|
});
|
|
300895
|
-
import { randomUUID as
|
|
300899
|
+
import { randomUUID as randomUUID15 } from "crypto";
|
|
300896
300900
|
function createTeleportResumeSystemMessage(branchError) {
|
|
300897
300901
|
if (branchError === null) {
|
|
300898
300902
|
return createSystemMessage("Session resumed", "suggestion");
|
|
@@ -301609,7 +301613,7 @@ async function teleportToRemote(options2) {
|
|
|
301609
301613
|
type: "event",
|
|
301610
301614
|
data: {
|
|
301611
301615
|
type: "control_request",
|
|
301612
|
-
request_id: `set-mode-${
|
|
301616
|
+
request_id: `set-mode-${randomUUID15()}`,
|
|
301613
301617
|
request: {
|
|
301614
301618
|
subtype: "set_permission_mode",
|
|
301615
301619
|
mode: options2.permissionMode,
|
|
@@ -301622,7 +301626,7 @@ async function teleportToRemote(options2) {
|
|
|
301622
301626
|
events.push({
|
|
301623
301627
|
type: "event",
|
|
301624
301628
|
data: {
|
|
301625
|
-
uuid:
|
|
301629
|
+
uuid: randomUUID15(),
|
|
301626
301630
|
session_id: "",
|
|
301627
301631
|
type: "user",
|
|
301628
301632
|
parent_tool_use_id: null,
|
|
@@ -302941,12 +302945,12 @@ ${result.result}`
|
|
|
302941
302945
|
});
|
|
302942
302946
|
|
|
302943
302947
|
// src/services/lsp/LSPDiagnosticRegistry.ts
|
|
302944
|
-
import { randomUUID as
|
|
302948
|
+
import { randomUUID as randomUUID16 } from "crypto";
|
|
302945
302949
|
function registerPendingLSPDiagnostic({
|
|
302946
302950
|
serverName,
|
|
302947
302951
|
files
|
|
302948
302952
|
}) {
|
|
302949
|
-
const diagnosticId =
|
|
302953
|
+
const diagnosticId = randomUUID16();
|
|
302950
302954
|
logForDebugging2(`LSP Diagnostics: Registering ${files.length} diagnostic file(s) from ${serverName} (ID: ${diagnosticId})`);
|
|
302951
302955
|
pendingDiagnostics.set(diagnosticId, {
|
|
302952
302956
|
serverName,
|
|
@@ -316795,7 +316799,7 @@ var init_PowerShellTool = __esm(() => {
|
|
|
316795
316799
|
});
|
|
316796
316800
|
|
|
316797
316801
|
// src/utils/promptShellExecution.ts
|
|
316798
|
-
import { randomUUID as
|
|
316802
|
+
import { randomUUID as randomUUID17 } from "crypto";
|
|
316799
316803
|
async function executeShellCommandsInPrompt(text, context4, slashCommandName, shell) {
|
|
316800
316804
|
let result = text;
|
|
316801
316805
|
const shellTool = shell === "powershell" && isPowerShellToolEnabled() ? getPowerShellTool() : BashTool;
|
|
@@ -316816,7 +316820,7 @@ async function executeShellCommandsInPrompt(text, context4, slashCommandName, sh
|
|
|
316816
316820
|
stdout: typeof data.stdout === "string" ? data.stdout : "",
|
|
316817
316821
|
stderr: typeof data.stderr === "string" ? data.stderr : ""
|
|
316818
316822
|
};
|
|
316819
|
-
const toolResultBlock = await processToolResultBlock(shellTool, normalizedData,
|
|
316823
|
+
const toolResultBlock = await processToolResultBlock(shellTool, normalizedData, randomUUID17());
|
|
316820
316824
|
const output = typeof toolResultBlock.content === "string" ? toolResultBlock.content : formatBashOutput(normalizedData.stdout, normalizedData.stderr);
|
|
316821
316825
|
result = result.replace(match[0], () => output);
|
|
316822
316826
|
} catch (e) {
|
|
@@ -376486,13 +376490,13 @@ var init_config5 = __esm(() => {
|
|
|
376486
376490
|
});
|
|
376487
376491
|
|
|
376488
376492
|
// src/query/deps.ts
|
|
376489
|
-
import { randomUUID as
|
|
376493
|
+
import { randomUUID as randomUUID18 } from "crypto";
|
|
376490
376494
|
function productionDeps() {
|
|
376491
376495
|
return {
|
|
376492
376496
|
callModel: queryModelWithStreaming,
|
|
376493
376497
|
microcompact: microcompactMessages,
|
|
376494
376498
|
autocompact: autoCompactIfNeeded,
|
|
376495
|
-
uuid:
|
|
376499
|
+
uuid: randomUUID18
|
|
376496
376500
|
};
|
|
376497
376501
|
}
|
|
376498
376502
|
var init_deps = __esm(() => {
|
|
@@ -377574,7 +377578,7 @@ function getAnthropicEnvMetadata() {
|
|
|
377574
377578
|
function getBuildAgeMinutes() {
|
|
377575
377579
|
if (false)
|
|
377576
377580
|
;
|
|
377577
|
-
const buildTime = new Date("2026-05-
|
|
377581
|
+
const buildTime = new Date("2026-05-05T22:56:15.594Z").getTime();
|
|
377578
377582
|
if (isNaN(buildTime))
|
|
377579
377583
|
return;
|
|
377580
377584
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -378025,7 +378029,7 @@ var init_denialTracking = __esm(() => {
|
|
|
378025
378029
|
});
|
|
378026
378030
|
|
|
378027
378031
|
// src/utils/forkedAgent.ts
|
|
378028
|
-
import { randomUUID as
|
|
378032
|
+
import { randomUUID as randomUUID19 } from "crypto";
|
|
378029
378033
|
function saveCacheSafeParams(params) {
|
|
378030
378034
|
lastCacheSafeParams = params;
|
|
378031
378035
|
}
|
|
@@ -378134,7 +378138,7 @@ function createSubagentContext(parentContext, overrides) {
|
|
|
378134
378138
|
agentId: overrides?.agentId ?? createAgentId(),
|
|
378135
378139
|
agentType: overrides?.agentType,
|
|
378136
378140
|
queryTracking: {
|
|
378137
|
-
chainId:
|
|
378141
|
+
chainId: randomUUID19(),
|
|
378138
378142
|
depth: (parentContext.queryTracking?.depth ?? -1) + 1
|
|
378139
378143
|
},
|
|
378140
378144
|
fileReadingLimits: parentContext.fileReadingLimits,
|
|
@@ -381231,7 +381235,7 @@ var init_toolSearch = __esm(() => {
|
|
|
381231
381235
|
});
|
|
381232
381236
|
|
|
381233
381237
|
// src/services/vcr.ts
|
|
381234
|
-
import { createHash as createHash14, randomUUID as
|
|
381238
|
+
import { createHash as createHash14, randomUUID as randomUUID20 } from "crypto";
|
|
381235
381239
|
import { mkdir as mkdir23, readFile as readFile27, writeFile as writeFile24 } from "fs/promises";
|
|
381236
381240
|
import { dirname as dirname35, join as join88 } from "path";
|
|
381237
381241
|
function shouldUseVCR() {
|
|
@@ -381284,7 +381288,7 @@ async function withVCR(messages, f) {
|
|
|
381284
381288
|
try {
|
|
381285
381289
|
const cached3 = jsonParse(await readFile27(filename, { encoding: "utf8" }));
|
|
381286
381290
|
cached3.output.forEach(addCachedCostToTotalSessionCost);
|
|
381287
|
-
return cached3.output.map((message, index) => mapMessage(message, hydrateValue, index,
|
|
381291
|
+
return cached3.output.map((message, index) => mapMessage(message, hydrateValue, index, randomUUID20()));
|
|
381288
381292
|
} catch (e2) {
|
|
381289
381293
|
const code = getErrnoCode(e2);
|
|
381290
381294
|
if (code !== "ENOENT") {
|
|
@@ -381745,7 +381749,7 @@ var init_tokenEstimation = __esm(() => {
|
|
|
381745
381749
|
});
|
|
381746
381750
|
|
|
381747
381751
|
// src/utils/pdf.ts
|
|
381748
|
-
import { randomUUID as
|
|
381752
|
+
import { randomUUID as randomUUID21 } from "crypto";
|
|
381749
381753
|
import { mkdir as mkdir24, readdir as readdir15, readFile as readFile28 } from "fs/promises";
|
|
381750
381754
|
import { join as join89 } from "path";
|
|
381751
381755
|
async function readPDF(filePath) {
|
|
@@ -381856,7 +381860,7 @@ async function extractPDFPages(filePath, options2) {
|
|
|
381856
381860
|
}
|
|
381857
381861
|
};
|
|
381858
381862
|
}
|
|
381859
|
-
const uuid3 =
|
|
381863
|
+
const uuid3 = randomUUID21();
|
|
381860
381864
|
const outputDir = join89(getToolResultsDir(), `pdf-${uuid3}`);
|
|
381861
381865
|
await mkdir24(outputDir, { recursive: true });
|
|
381862
381866
|
const prefix = join89(outputDir, "page");
|
|
@@ -383424,7 +383428,7 @@ var init_findRelevantMemories = __esm(() => {
|
|
|
383424
383428
|
// src/utils/attachments.ts
|
|
383425
383429
|
import { readdir as readdir17, stat as stat34 } from "fs/promises";
|
|
383426
383430
|
import { dirname as dirname36, parse as parse10, relative as relative20, resolve as resolve32 } from "path";
|
|
383427
|
-
import { randomUUID as
|
|
383431
|
+
import { randomUUID as randomUUID22 } from "crypto";
|
|
383428
383432
|
async function getAttachments(input, toolUseContext, ideSelection, queuedCommands, messages, querySource, options2) {
|
|
383429
383433
|
if (isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_ATTACHMENTS) || isEnvTruthy(process.env.CLAUDE_CODE_SIMPLE)) {
|
|
383430
383434
|
return getQueuedCommandAttachments(queuedCommands);
|
|
@@ -384651,7 +384655,7 @@ function createAttachmentMessage(attachment) {
|
|
|
384651
384655
|
return {
|
|
384652
384656
|
attachment,
|
|
384653
384657
|
type: "attachment",
|
|
384654
|
-
uuid:
|
|
384658
|
+
uuid: randomUUID22(),
|
|
384655
384659
|
timestamp: new Date().toISOString()
|
|
384656
384660
|
};
|
|
384657
384661
|
}
|
|
@@ -390350,7 +390354,7 @@ ${EXPLANATORY_FEATURE_PROMPT}`
|
|
|
390350
390354
|
});
|
|
390351
390355
|
|
|
390352
390356
|
// src/utils/messages.ts
|
|
390353
|
-
import { randomUUID as
|
|
390357
|
+
import { randomUUID as randomUUID23 } from "crypto";
|
|
390354
390358
|
function getTeammateMailbox() {
|
|
390355
390359
|
return init_teammateMailbox(), __toCommonJS(exports_teammateMailbox);
|
|
390356
390360
|
}
|
|
@@ -390424,10 +390428,10 @@ function baseCreateAssistantMessage({
|
|
|
390424
390428
|
}) {
|
|
390425
390429
|
return {
|
|
390426
390430
|
type: "assistant",
|
|
390427
|
-
uuid:
|
|
390431
|
+
uuid: randomUUID23(),
|
|
390428
390432
|
timestamp: new Date().toISOString(),
|
|
390429
390433
|
message: {
|
|
390430
|
-
id:
|
|
390434
|
+
id: randomUUID23(),
|
|
390431
390435
|
container: null,
|
|
390432
390436
|
model: SYNTHETIC_MODEL,
|
|
390433
390437
|
role: "assistant",
|
|
@@ -390508,7 +390512,7 @@ function createUserMessage({
|
|
|
390508
390512
|
isVirtual,
|
|
390509
390513
|
isCompactSummary,
|
|
390510
390514
|
summarizeMetadata,
|
|
390511
|
-
uuid: uuid3 ||
|
|
390515
|
+
uuid: uuid3 || randomUUID23(),
|
|
390512
390516
|
timestamp: timestamp ?? new Date().toISOString(),
|
|
390513
390517
|
toolUseResult,
|
|
390514
390518
|
mcpMeta,
|
|
@@ -390577,7 +390581,7 @@ function createProgressMessage({
|
|
|
390577
390581
|
data,
|
|
390578
390582
|
toolUseID,
|
|
390579
390583
|
parentToolUseID,
|
|
390580
|
-
uuid:
|
|
390584
|
+
uuid: randomUUID23(),
|
|
390581
390585
|
timestamp: new Date().toISOString()
|
|
390582
390586
|
};
|
|
390583
390587
|
}
|
|
@@ -392894,7 +392898,7 @@ function createSystemMessage(content, level, toolUseID, preventContinuation) {
|
|
|
392894
392898
|
content,
|
|
392895
392899
|
isMeta: false,
|
|
392896
392900
|
timestamp: new Date().toISOString(),
|
|
392897
|
-
uuid:
|
|
392901
|
+
uuid: randomUUID23(),
|
|
392898
392902
|
toolUseID,
|
|
392899
392903
|
level,
|
|
392900
392904
|
...preventContinuation && { preventContinuation }
|
|
@@ -392909,7 +392913,7 @@ function createPermissionRetryMessage(commands) {
|
|
|
392909
392913
|
level: "info",
|
|
392910
392914
|
isMeta: false,
|
|
392911
392915
|
timestamp: new Date().toISOString(),
|
|
392912
|
-
uuid:
|
|
392916
|
+
uuid: randomUUID23()
|
|
392913
392917
|
};
|
|
392914
392918
|
}
|
|
392915
392919
|
function createScheduledTaskFireMessage(content) {
|
|
@@ -392919,7 +392923,7 @@ function createScheduledTaskFireMessage(content) {
|
|
|
392919
392923
|
content,
|
|
392920
392924
|
isMeta: false,
|
|
392921
392925
|
timestamp: new Date().toISOString(),
|
|
392922
|
-
uuid:
|
|
392926
|
+
uuid: randomUUID23()
|
|
392923
392927
|
};
|
|
392924
392928
|
}
|
|
392925
392929
|
function createStopHookSummaryMessage(hookCount, hookInfos, hookErrors, preventedContinuation, stopReason, hasOutput, level, toolUseID, hookLabel, totalDurationMs) {
|
|
@@ -392934,7 +392938,7 @@ function createStopHookSummaryMessage(hookCount, hookInfos, hookErrors, prevente
|
|
|
392934
392938
|
hasOutput,
|
|
392935
392939
|
level,
|
|
392936
392940
|
timestamp: new Date().toISOString(),
|
|
392937
|
-
uuid:
|
|
392941
|
+
uuid: randomUUID23(),
|
|
392938
392942
|
toolUseID,
|
|
392939
392943
|
hookLabel,
|
|
392940
392944
|
totalDurationMs
|
|
@@ -392950,7 +392954,7 @@ function createTurnDurationMessage(durationMs, budget, messageCount) {
|
|
|
392950
392954
|
budgetNudges: budget?.nudges,
|
|
392951
392955
|
messageCount,
|
|
392952
392956
|
timestamp: new Date().toISOString(),
|
|
392953
|
-
uuid:
|
|
392957
|
+
uuid: randomUUID23(),
|
|
392954
392958
|
isMeta: false
|
|
392955
392959
|
};
|
|
392956
392960
|
}
|
|
@@ -392960,7 +392964,7 @@ function createAwaySummaryMessage(content) {
|
|
|
392960
392964
|
subtype: "away_summary",
|
|
392961
392965
|
content,
|
|
392962
392966
|
timestamp: new Date().toISOString(),
|
|
392963
|
-
uuid:
|
|
392967
|
+
uuid: randomUUID23(),
|
|
392964
392968
|
isMeta: false
|
|
392965
392969
|
};
|
|
392966
392970
|
}
|
|
@@ -392970,7 +392974,7 @@ function createMemorySavedMessage(writtenPaths) {
|
|
|
392970
392974
|
subtype: "memory_saved",
|
|
392971
392975
|
writtenPaths,
|
|
392972
392976
|
timestamp: new Date().toISOString(),
|
|
392973
|
-
uuid:
|
|
392977
|
+
uuid: randomUUID23(),
|
|
392974
392978
|
isMeta: false
|
|
392975
392979
|
};
|
|
392976
392980
|
}
|
|
@@ -392979,7 +392983,7 @@ function createAgentsKilledMessage() {
|
|
|
392979
392983
|
type: "system",
|
|
392980
392984
|
subtype: "agents_killed",
|
|
392981
392985
|
timestamp: new Date().toISOString(),
|
|
392982
|
-
uuid:
|
|
392986
|
+
uuid: randomUUID23(),
|
|
392983
392987
|
isMeta: false
|
|
392984
392988
|
};
|
|
392985
392989
|
}
|
|
@@ -392990,7 +392994,7 @@ function createCommandInputMessage(content) {
|
|
|
392990
392994
|
content,
|
|
392991
392995
|
level: "info",
|
|
392992
392996
|
timestamp: new Date().toISOString(),
|
|
392993
|
-
uuid:
|
|
392997
|
+
uuid: randomUUID23(),
|
|
392994
392998
|
isMeta: false
|
|
392995
392999
|
};
|
|
392996
393000
|
}
|
|
@@ -393001,7 +393005,7 @@ function createCompactBoundaryMessage(trigger, preTokens, lastPreCompactMessageU
|
|
|
393001
393005
|
content: `Conversation compacted`,
|
|
393002
393006
|
isMeta: false,
|
|
393003
393007
|
timestamp: new Date().toISOString(),
|
|
393004
|
-
uuid:
|
|
393008
|
+
uuid: randomUUID23(),
|
|
393005
393009
|
level: "info",
|
|
393006
393010
|
compactMetadata: {
|
|
393007
393011
|
trigger,
|
|
@@ -393022,7 +393026,7 @@ function createMicrocompactBoundaryMessage(trigger, preTokens, tokensSaved, comp
|
|
|
393022
393026
|
content: "Context microcompacted",
|
|
393023
393027
|
isMeta: false,
|
|
393024
393028
|
timestamp: new Date().toISOString(),
|
|
393025
|
-
uuid:
|
|
393029
|
+
uuid: randomUUID23(),
|
|
393026
393030
|
level: "info",
|
|
393027
393031
|
microcompactMetadata: {
|
|
393028
393032
|
trigger,
|
|
@@ -393044,7 +393048,7 @@ function createSystemAPIErrorMessage(error42, retryInMs, retryAttempt, maxRetrie
|
|
|
393044
393048
|
retryAttempt,
|
|
393045
393049
|
maxRetries,
|
|
393046
393050
|
timestamp: new Date().toISOString(),
|
|
393047
|
-
uuid:
|
|
393051
|
+
uuid: randomUUID23()
|
|
393048
393052
|
};
|
|
393049
393053
|
}
|
|
393050
393054
|
function isCompactBoundaryMessage(message) {
|
|
@@ -393313,7 +393317,7 @@ function createToolUseSummaryMessage(summary, precedingToolUseIds) {
|
|
|
393313
393317
|
type: "tool_use_summary",
|
|
393314
393318
|
summary,
|
|
393315
393319
|
precedingToolUseIds,
|
|
393316
|
-
uuid:
|
|
393320
|
+
uuid: randomUUID23(),
|
|
393317
393321
|
timestamp: new Date().toISOString()
|
|
393318
393322
|
};
|
|
393319
393323
|
}
|
|
@@ -396850,7 +396854,7 @@ var init_xaaIdpLogin = __esm(() => {
|
|
|
396850
396854
|
});
|
|
396851
396855
|
|
|
396852
396856
|
// src/services/mcp/auth.ts
|
|
396853
|
-
import { createHash as createHash16, randomBytes as randomBytes11, randomUUID as
|
|
396857
|
+
import { createHash as createHash16, randomBytes as randomBytes11, randomUUID as randomUUID24 } from "crypto";
|
|
396854
396858
|
import { mkdir as mkdir26 } from "fs/promises";
|
|
396855
396859
|
import { createServer as createServer4 } from "http";
|
|
396856
396860
|
import { join as join99 } from "path";
|
|
@@ -397304,7 +397308,7 @@ async function performMCPOAuthFlow(serverName, serverConfig, onAuthorizationUrl,
|
|
|
397304
397308
|
scope: cachedStepUpScope,
|
|
397305
397309
|
resourceMetadataUrl
|
|
397306
397310
|
};
|
|
397307
|
-
const flowAttemptId =
|
|
397311
|
+
const flowAttemptId = randomUUID24();
|
|
397308
397312
|
logEvent("tengu_mcp_oauth_flow_start", {
|
|
397309
397313
|
flowAttemptId,
|
|
397310
397314
|
isOAuthFlow: true,
|
|
@@ -405275,7 +405279,7 @@ function insertBlockAfterToolResults(content, block2) {
|
|
|
405275
405279
|
}
|
|
405276
405280
|
|
|
405277
405281
|
// src/services/api/claude.ts
|
|
405278
|
-
import { randomUUID as
|
|
405282
|
+
import { randomUUID as randomUUID25 } from "crypto";
|
|
405279
405283
|
function getExtraBodyParams(betaHeaders) {
|
|
405280
405284
|
const extraBodyStr = process.env.CLAUDE_CODE_EXTRA_BODY;
|
|
405281
405285
|
let result = {};
|
|
@@ -406101,7 +406105,7 @@ ${deferredToolList}
|
|
|
406101
406105
|
if (!options2.agentId) {
|
|
406102
406106
|
headlessProfilerCheckpoint("api_request_sent");
|
|
406103
406107
|
}
|
|
406104
|
-
clientRequestId = getAPIProvider() === "firstParty" && isFirstPartyAnthropicBaseUrl() ?
|
|
406108
|
+
clientRequestId = getAPIProvider() === "firstParty" && isFirstPartyAnthropicBaseUrl() ? randomUUID25() : undefined;
|
|
406105
406109
|
const result = await anthropic.beta.messages.create({ ...params, stream: true }, {
|
|
406106
406110
|
signal,
|
|
406107
406111
|
...clientRequestId && {
|
|
@@ -406344,7 +406348,7 @@ ${deferredToolList}
|
|
|
406344
406348
|
},
|
|
406345
406349
|
requestId: streamRequestId ?? undefined,
|
|
406346
406350
|
type: "assistant",
|
|
406347
|
-
uuid:
|
|
406351
|
+
uuid: randomUUID25(),
|
|
406348
406352
|
timestamp: new Date().toISOString(),
|
|
406349
406353
|
...process.env.USER_TYPE === "ant" && research !== undefined && { research },
|
|
406350
406354
|
...advisorModel && { advisorModel }
|
|
@@ -406526,7 +406530,7 @@ ${deferredToolList}
|
|
|
406526
406530
|
},
|
|
406527
406531
|
requestId: streamRequestId ?? undefined,
|
|
406528
406532
|
type: "assistant",
|
|
406529
|
-
uuid:
|
|
406533
|
+
uuid: randomUUID25(),
|
|
406530
406534
|
timestamp: new Date().toISOString(),
|
|
406531
406535
|
...process.env.USER_TYPE === "ant" && research !== undefined && {
|
|
406532
406536
|
research
|
|
@@ -406580,7 +406584,7 @@ ${deferredToolList}
|
|
|
406580
406584
|
},
|
|
406581
406585
|
requestId: streamRequestId ?? undefined,
|
|
406582
406586
|
type: "assistant",
|
|
406583
|
-
uuid:
|
|
406587
|
+
uuid: randomUUID25(),
|
|
406584
406588
|
timestamp: new Date().toISOString(),
|
|
406585
406589
|
...process.env.USER_TYPE === "ant" && research !== undefined && { research },
|
|
406586
406590
|
...advisorModel && { advisorModel }
|
|
@@ -416300,7 +416304,7 @@ var exports_conversation = {};
|
|
|
416300
416304
|
__export(exports_conversation, {
|
|
416301
416305
|
clearConversation: () => clearConversation
|
|
416302
416306
|
});
|
|
416303
|
-
import { randomUUID as
|
|
416307
|
+
import { randomUUID as randomUUID26 } from "crypto";
|
|
416304
416308
|
async function clearConversation({
|
|
416305
416309
|
setMessages,
|
|
416306
416310
|
readFileState,
|
|
@@ -416342,7 +416346,7 @@ async function clearConversation({
|
|
|
416342
416346
|
setMessages(() => []);
|
|
416343
416347
|
if (false) {}
|
|
416344
416348
|
if (setConversationId) {
|
|
416345
|
-
setConversationId(
|
|
416349
|
+
setConversationId(randomUUID26());
|
|
416346
416350
|
}
|
|
416347
416351
|
clearSessionCaches(preservedAgentIds);
|
|
416348
416352
|
setCwd(getOriginalCwd());
|
|
@@ -418216,7 +418220,7 @@ function buildPrimarySection() {
|
|
|
418216
418220
|
}, undefined, false, undefined, this);
|
|
418217
418221
|
return [{
|
|
418218
418222
|
label: "Version",
|
|
418219
|
-
value: "0.7.
|
|
418223
|
+
value: "0.7.27"
|
|
418220
418224
|
}, {
|
|
418221
418225
|
label: "Session name",
|
|
418222
418226
|
value: nameValue
|
|
@@ -469008,7 +469012,7 @@ var init_InProcessTeammateDetailDialog = __esm(() => {
|
|
|
469008
469012
|
});
|
|
469009
469013
|
|
|
469010
469014
|
// src/utils/messages/mappers.ts
|
|
469011
|
-
import { randomUUID as
|
|
469015
|
+
import { randomUUID as randomUUID27 } from "crypto";
|
|
469012
469016
|
function toInternalMessages(messages) {
|
|
469013
469017
|
return messages.flatMap((message) => {
|
|
469014
469018
|
switch (message.type) {
|
|
@@ -469027,7 +469031,7 @@ function toInternalMessages(messages) {
|
|
|
469027
469031
|
{
|
|
469028
469032
|
type: "user",
|
|
469029
469033
|
message: message.message,
|
|
469030
|
-
uuid: message.uuid ??
|
|
469034
|
+
uuid: message.uuid ?? randomUUID27(),
|
|
469031
469035
|
timestamp: message.timestamp ?? new Date().toISOString(),
|
|
469032
469036
|
isMeta: message.isSynthetic
|
|
469033
469037
|
}
|
|
@@ -479005,7 +479009,7 @@ __export(exports_branch, {
|
|
|
479005
479009
|
deriveFirstPrompt: () => deriveFirstPrompt,
|
|
479006
479010
|
call: () => call53
|
|
479007
479011
|
});
|
|
479008
|
-
import { randomUUID as
|
|
479012
|
+
import { randomUUID as randomUUID28 } from "crypto";
|
|
479009
479013
|
import { mkdir as mkdir35, readFile as readFile42, writeFile as writeFile39 } from "fs/promises";
|
|
479010
479014
|
function deriveFirstPrompt(firstUserMessage) {
|
|
479011
479015
|
const content = firstUserMessage?.message?.content;
|
|
@@ -479017,7 +479021,7 @@ function deriveFirstPrompt(firstUserMessage) {
|
|
|
479017
479021
|
return raw.replace(/\s+/g, " ").trim().slice(0, 100) || "Branched conversation";
|
|
479018
479022
|
}
|
|
479019
479023
|
async function createFork(customTitle) {
|
|
479020
|
-
const forkSessionId =
|
|
479024
|
+
const forkSessionId = randomUUID28();
|
|
479021
479025
|
const originalSessionId = getSessionId();
|
|
479022
479026
|
const projectDir = getProjectDir2(getOriginalCwd());
|
|
479023
479027
|
const forkSessionPath = getTranscriptPathForSession(forkSessionId);
|
|
@@ -486167,7 +486171,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
486167
486171
|
var call60 = async () => {
|
|
486168
486172
|
return {
|
|
486169
486173
|
type: "text",
|
|
486170
|
-
value: `${"99.0.0"} (built ${"2026-05-
|
|
486174
|
+
value: `${"99.0.0"} (built ${"2026-05-05T22:56:15.594Z"})`
|
|
486171
486175
|
};
|
|
486172
486176
|
}, version2, version_default;
|
|
486173
486177
|
var init_version = __esm(() => {
|
|
@@ -494901,7 +494905,7 @@ var init_buddy2 = __esm(() => {
|
|
|
494901
494905
|
var exports_insights = {};
|
|
494902
494906
|
__export(exports_insights, {
|
|
494903
494907
|
generateUsageReport: () => generateUsageReport,
|
|
494904
|
-
|
|
494908
|
+
detectMultiScaring: () => detectMultiScaring,
|
|
494905
494909
|
default: () => insights_default,
|
|
494906
494910
|
deduplicateSessionBranches: () => deduplicateSessionBranches,
|
|
494907
494911
|
buildExportData: () => buildExportData
|
|
@@ -495362,7 +495366,7 @@ RESPOND WITH ONLY A VALID JSON OBJECT matching this schema:
|
|
|
495362
495366
|
return null;
|
|
495363
495367
|
}
|
|
495364
495368
|
}
|
|
495365
|
-
function
|
|
495369
|
+
function detectMultiScaring(sessions) {
|
|
495366
495370
|
const OVERLAP_WINDOW_MS = 30 * 60000;
|
|
495367
495371
|
const allSessionMessages = [];
|
|
495368
495372
|
for (const session2 of sessions) {
|
|
@@ -495455,7 +495459,7 @@ function aggregateData(sessions, facets) {
|
|
|
495455
495459
|
days_active: 0,
|
|
495456
495460
|
messages_per_day: 0,
|
|
495457
495461
|
message_hours: [],
|
|
495458
|
-
|
|
495462
|
+
multi_scaring: {
|
|
495459
495463
|
overlap_events: 0,
|
|
495460
495464
|
sessions_involved: 0,
|
|
495461
495465
|
user_messages_during: 0
|
|
@@ -495545,7 +495549,7 @@ function aggregateData(sessions, facets) {
|
|
|
495545
495549
|
result.days_active = uniqueDays.size;
|
|
495546
495550
|
result.messages_per_day = result.days_active > 0 ? Math.round(result.total_messages / result.days_active * 10) / 10 : 0;
|
|
495547
495551
|
result.message_hours = allMessageHours;
|
|
495548
|
-
result.
|
|
495552
|
+
result.multi_scaring = detectMultiScaring(sessions);
|
|
495549
495553
|
return result;
|
|
495550
495554
|
}
|
|
495551
495555
|
async function generateSectionInsight(section, dataContext) {
|
|
@@ -496276,30 +496280,30 @@ function generateHtmlReport(data, insights) {
|
|
|
496276
496280
|
</div>
|
|
496277
496281
|
</div>
|
|
496278
496282
|
|
|
496279
|
-
<!-- Multi-
|
|
496283
|
+
<!-- Multi-scaring Section (matching Python reference) -->
|
|
496280
496284
|
<div class="chart-card" style="margin: 24px 0;">
|
|
496281
|
-
<div class="chart-title">Multi-
|
|
496282
|
-
${data.
|
|
496285
|
+
<div class="chart-title">Multi-Scaring (Parallel Sessions)</div>
|
|
496286
|
+
${data.multi_scaring.overlap_events === 0 ? `
|
|
496283
496287
|
<p style="font-size: 14px; color: #64748b; padding: 8px 0;">
|
|
496284
496288
|
No parallel session usage detected. You typically work with one Verboo Code session at a time.
|
|
496285
496289
|
</p>
|
|
496286
496290
|
` : `
|
|
496287
496291
|
<div style="display: flex; gap: 24px; margin: 12px 0;">
|
|
496288
496292
|
<div style="text-align: center;">
|
|
496289
|
-
<div style="font-size: 24px; font-weight: 700; color: #7c3aed;">${data.
|
|
496293
|
+
<div style="font-size: 24px; font-weight: 700; color: #7c3aed;">${data.multi_scaring.overlap_events}</div>
|
|
496290
496294
|
<div style="font-size: 11px; color: #64748b; text-transform: uppercase;">Overlap Events</div>
|
|
496291
496295
|
</div>
|
|
496292
496296
|
<div style="text-align: center;">
|
|
496293
|
-
<div style="font-size: 24px; font-weight: 700; color: #7c3aed;">${data.
|
|
496297
|
+
<div style="font-size: 24px; font-weight: 700; color: #7c3aed;">${data.multi_scaring.sessions_involved}</div>
|
|
496294
496298
|
<div style="font-size: 11px; color: #64748b; text-transform: uppercase;">Sessions Involved</div>
|
|
496295
496299
|
</div>
|
|
496296
496300
|
<div style="text-align: center;">
|
|
496297
|
-
<div style="font-size: 24px; font-weight: 700; color: #7c3aed;">${data.total_messages > 0 ? Math.round(100 * data.
|
|
496301
|
+
<div style="font-size: 24px; font-weight: 700; color: #7c3aed;">${data.total_messages > 0 ? Math.round(100 * data.multi_scaring.user_messages_during / data.total_messages) : 0}%</div>
|
|
496298
496302
|
<div style="font-size: 11px; color: #64748b; text-transform: uppercase;">Of Messages</div>
|
|
496299
496303
|
</div>
|
|
496300
496304
|
</div>
|
|
496301
496305
|
<p style="font-size: 13px; color: #475569; margin-top: 12px;">
|
|
496302
|
-
You run multiple Verboo Code sessions simultaneously. Multi-
|
|
496306
|
+
You run multiple Verboo Code sessions simultaneously. Multi-scaring is detected when sessions
|
|
496303
496307
|
overlap in time, suggesting parallel workflows.
|
|
496304
496308
|
</p>
|
|
496305
496309
|
`}
|
|
@@ -502610,9 +502614,9 @@ var init_hookHelpers = __esm(() => {
|
|
|
502610
502614
|
});
|
|
502611
502615
|
|
|
502612
502616
|
// src/utils/hooks/execPromptHook.ts
|
|
502613
|
-
import { randomUUID as
|
|
502617
|
+
import { randomUUID as randomUUID29 } from "crypto";
|
|
502614
502618
|
async function execPromptHook(hook, hookName, hookEvent, jsonInput, signal, toolUseContext, messages, toolUseID) {
|
|
502615
|
-
const effectiveToolUseID = toolUseID || `hook-${
|
|
502619
|
+
const effectiveToolUseID = toolUseID || `hook-${randomUUID29()}`;
|
|
502616
502620
|
try {
|
|
502617
502621
|
const processedPrompt = addArgumentsToPrompt(hook.prompt, jsonInput);
|
|
502618
502622
|
logForDebugging2(`Hooks: Processing prompt hook with prompt: ${processedPrompt}`);
|
|
@@ -502766,9 +502770,9 @@ var init_execPromptHook = __esm(() => {
|
|
|
502766
502770
|
});
|
|
502767
502771
|
|
|
502768
502772
|
// src/utils/hooks/execAgentHook.ts
|
|
502769
|
-
import { randomUUID as
|
|
502773
|
+
import { randomUUID as randomUUID30 } from "crypto";
|
|
502770
502774
|
async function execAgentHook(hook, hookName, hookEvent, jsonInput, signal, toolUseContext, toolUseID, _messages, agentName) {
|
|
502771
|
-
const effectiveToolUseID = toolUseID || `hook-${
|
|
502775
|
+
const effectiveToolUseID = toolUseID || `hook-${randomUUID30()}`;
|
|
502772
502776
|
const transcriptPath = toolUseContext.agentId ? getAgentTranscriptPath(toolUseContext.agentId) : getTranscriptPath();
|
|
502773
502777
|
const hookStartTime = Date.now();
|
|
502774
502778
|
try {
|
|
@@ -502803,7 +502807,7 @@ When done, return your result using the ${SYNTHETIC_OUTPUT_TOOL_NAME} tool with:
|
|
|
502803
502807
|
]);
|
|
502804
502808
|
const model = hook.model ?? getSmallFastModel();
|
|
502805
502809
|
const MAX_AGENT_TURNS = 50;
|
|
502806
|
-
const hookAgentId = asAgentId(`hook-agent-${
|
|
502810
|
+
const hookAgentId = asAgentId(`hook-agent-${randomUUID30()}`);
|
|
502807
502811
|
const agentToolUseContext = {
|
|
502808
502812
|
...toolUseContext,
|
|
502809
502813
|
agentId: hookAgentId,
|
|
@@ -504348,7 +504352,7 @@ __export(exports_hooks2, {
|
|
|
504348
504352
|
});
|
|
504349
504353
|
import { basename as basename47 } from "path";
|
|
504350
504354
|
import { spawn as spawn9 } from "child_process";
|
|
504351
|
-
import { randomUUID as
|
|
504355
|
+
import { randomUUID as randomUUID31 } from "crypto";
|
|
504352
504356
|
function normalizeFallbackAgentModel(model) {
|
|
504353
504357
|
if (model === "sonnet" || model === "opus" || model === "haiku") {
|
|
504354
504358
|
return model;
|
|
@@ -505462,7 +505466,7 @@ async function* executeHooks({
|
|
|
505462
505466
|
parentToolUseID: toolUseID,
|
|
505463
505467
|
toolUseID,
|
|
505464
505468
|
timestamp: new Date().toISOString(),
|
|
505465
|
-
uuid:
|
|
505469
|
+
uuid: randomUUID31()
|
|
505466
505470
|
}
|
|
505467
505471
|
};
|
|
505468
505472
|
}
|
|
@@ -505524,7 +505528,7 @@ async function* executeHooks({
|
|
|
505524
505528
|
const { signal: abortSignal, cleanup } = createCombinedAbortSignal(signal, {
|
|
505525
505529
|
timeoutMs: commandTimeoutMs
|
|
505526
505530
|
});
|
|
505527
|
-
const hookId =
|
|
505531
|
+
const hookId = randomUUID31();
|
|
505528
505532
|
const hookStartMs = Date.now();
|
|
505529
505533
|
const hookCommand = getHookDisplayText(hook);
|
|
505530
505534
|
try {
|
|
@@ -506172,7 +506176,7 @@ async function executeHooksOutsideREPL({
|
|
|
506172
506176
|
const callbackTimeoutMs = hook.timeout ? hook.timeout * 1000 : timeoutMs;
|
|
506173
506177
|
const { signal: abortSignal2, cleanup: cleanup2 } = createCombinedAbortSignal(signal, { timeoutMs: callbackTimeoutMs });
|
|
506174
506178
|
try {
|
|
506175
|
-
const toolUseID =
|
|
506179
|
+
const toolUseID = randomUUID31();
|
|
506176
506180
|
const json2 = await hook.callback(hookInput, toolUseID, abortSignal2, hookIndex);
|
|
506177
506181
|
cleanup2?.();
|
|
506178
506182
|
if (isAsyncHookJSONOutput(json2)) {
|
|
@@ -506283,7 +506287,7 @@ async function executeHooksOutsideREPL({
|
|
|
506283
506287
|
const commandTimeoutMs = hook.timeout ? hook.timeout * 1000 : timeoutMs;
|
|
506284
506288
|
const { signal: abortSignal, cleanup } = createCombinedAbortSignal(signal, { timeoutMs: commandTimeoutMs });
|
|
506285
506289
|
try {
|
|
506286
|
-
const result = await execCommandHook(hook, hookEvent, hookName, jsonInput, abortSignal,
|
|
506290
|
+
const result = await execCommandHook(hook, hookEvent, hookName, jsonInput, abortSignal, randomUUID31(), hookIndex, pluginRoot, pluginId);
|
|
506287
506291
|
cleanup?.();
|
|
506288
506292
|
if (result.aborted) {
|
|
506289
506293
|
logForDebugging2(`${hookName} [${hook.command}] cancelled`);
|
|
@@ -506501,7 +506505,7 @@ async function* executeStopHooks(permissionMode, signal, timeoutMs = TOOL_HOOK_E
|
|
|
506501
506505
|
};
|
|
506502
506506
|
yield* executeHooks({
|
|
506503
506507
|
hookInput,
|
|
506504
|
-
toolUseID:
|
|
506508
|
+
toolUseID: randomUUID31(),
|
|
506505
506509
|
signal,
|
|
506506
506510
|
timeoutMs,
|
|
506507
506511
|
toolUseContext,
|
|
@@ -506518,7 +506522,7 @@ async function* executeTeammateIdleHooks(teammateName, teamName, permissionMode,
|
|
|
506518
506522
|
};
|
|
506519
506523
|
yield* executeHooks({
|
|
506520
506524
|
hookInput,
|
|
506521
|
-
toolUseID:
|
|
506525
|
+
toolUseID: randomUUID31(),
|
|
506522
506526
|
signal,
|
|
506523
506527
|
timeoutMs
|
|
506524
506528
|
});
|
|
@@ -506535,7 +506539,7 @@ async function* executeTaskCreatedHooks(taskId, taskSubject, taskDescription, te
|
|
|
506535
506539
|
};
|
|
506536
506540
|
yield* executeHooks({
|
|
506537
506541
|
hookInput,
|
|
506538
|
-
toolUseID:
|
|
506542
|
+
toolUseID: randomUUID31(),
|
|
506539
506543
|
signal,
|
|
506540
506544
|
timeoutMs,
|
|
506541
506545
|
toolUseContext
|
|
@@ -506555,7 +506559,7 @@ async function* executeTaskCompletedHooks(taskId, taskSubject, taskDescription,
|
|
|
506555
506559
|
let preventedContinuation = false;
|
|
506556
506560
|
for await (const result of executeHooks({
|
|
506557
506561
|
hookInput,
|
|
506558
|
-
toolUseID:
|
|
506562
|
+
toolUseID: randomUUID31(),
|
|
506559
506563
|
signal,
|
|
506560
506564
|
timeoutMs,
|
|
506561
506565
|
toolUseContext
|
|
@@ -506593,7 +506597,7 @@ async function* executeUserPromptSubmitHooks(prompt, permissionMode, toolUseCont
|
|
|
506593
506597
|
};
|
|
506594
506598
|
yield* executeHooks({
|
|
506595
506599
|
hookInput,
|
|
506596
|
-
toolUseID:
|
|
506600
|
+
toolUseID: randomUUID31(),
|
|
506597
506601
|
signal: toolUseContext.abortController.signal,
|
|
506598
506602
|
timeoutMs: TOOL_HOOK_EXECUTION_TIMEOUT_MS,
|
|
506599
506603
|
toolUseContext,
|
|
@@ -506610,7 +506614,7 @@ async function* executeSessionStartHooks(source, sessionId, agentType, model, si
|
|
|
506610
506614
|
};
|
|
506611
506615
|
yield* executeHooks({
|
|
506612
506616
|
hookInput,
|
|
506613
|
-
toolUseID:
|
|
506617
|
+
toolUseID: randomUUID31(),
|
|
506614
506618
|
matchQuery: source,
|
|
506615
506619
|
signal,
|
|
506616
506620
|
timeoutMs,
|
|
@@ -506625,7 +506629,7 @@ async function* executeSetupHooks(trigger, signal, timeoutMs = TOOL_HOOK_EXECUTI
|
|
|
506625
506629
|
};
|
|
506626
506630
|
yield* executeHooks({
|
|
506627
506631
|
hookInput,
|
|
506628
|
-
toolUseID:
|
|
506632
|
+
toolUseID: randomUUID31(),
|
|
506629
506633
|
matchQuery: trigger,
|
|
506630
506634
|
signal,
|
|
506631
506635
|
timeoutMs,
|
|
@@ -506641,7 +506645,7 @@ async function* executeSubagentStartHooks(agentId, agentType, signal, timeoutMs
|
|
|
506641
506645
|
};
|
|
506642
506646
|
yield* executeHooks({
|
|
506643
506647
|
hookInput,
|
|
506644
|
-
toolUseID:
|
|
506648
|
+
toolUseID: randomUUID31(),
|
|
506645
506649
|
matchQuery: agentType,
|
|
506646
506650
|
signal,
|
|
506647
506651
|
timeoutMs
|
|
@@ -507004,7 +507008,7 @@ async function executeStatusLineCommand(statusLineInput, signal, timeoutMs = 500
|
|
|
507004
507008
|
const abortSignal = signal || AbortSignal.timeout(timeoutMs);
|
|
507005
507009
|
try {
|
|
507006
507010
|
const jsonInput = jsonStringify(statusLineInput);
|
|
507007
|
-
const result = await execCommandHook(statusLine, "StatusLine", "statusLine", jsonInput, abortSignal,
|
|
507011
|
+
const result = await execCommandHook(statusLine, "StatusLine", "statusLine", jsonInput, abortSignal, randomUUID31());
|
|
507008
507012
|
if (result.aborted) {
|
|
507009
507013
|
return;
|
|
507010
507014
|
}
|
|
@@ -507048,7 +507052,7 @@ async function executeFileSuggestionCommand(fileSuggestionInput, signal, timeout
|
|
|
507048
507052
|
try {
|
|
507049
507053
|
const jsonInput = jsonStringify(fileSuggestionInput);
|
|
507050
507054
|
const hook = { type: "command", command: fileSuggestion.command };
|
|
507051
|
-
const result = await execCommandHook(hook, "FileSuggestion", "FileSuggestion", jsonInput, abortSignal,
|
|
507055
|
+
const result = await execCommandHook(hook, "FileSuggestion", "FileSuggestion", jsonInput, abortSignal, randomUUID31());
|
|
507052
507056
|
if (result.aborted || result.status !== 0) {
|
|
507053
507057
|
return [];
|
|
507054
507058
|
}
|
|
@@ -509172,7 +509176,7 @@ function printStartupScreen(modelOverride) {
|
|
|
509172
509176
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
509173
509177
|
const cwd2 = process.cwd();
|
|
509174
509178
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
509175
|
-
const version3 = "0.7.
|
|
509179
|
+
const version3 = "0.7.27";
|
|
509176
509180
|
const bold2 = `${ESC3}1m`;
|
|
509177
509181
|
const PURPLE = rgb3(...ACCENT);
|
|
509178
509182
|
const SOFT = rgb3(...CREAM);
|
|
@@ -513043,7 +513047,7 @@ var init_inboundMessages = __esm(() => {
|
|
|
513043
513047
|
});
|
|
513044
513048
|
|
|
513045
513049
|
// src/utils/messages/systemInit.ts
|
|
513046
|
-
import { randomUUID as
|
|
513050
|
+
import { randomUUID as randomUUID32 } from "crypto";
|
|
513047
513051
|
function sdkCompatToolName(name) {
|
|
513048
513052
|
return name === AGENT_TOOL_NAME ? LEGACY_AGENT_TOOL_NAME : name;
|
|
513049
513053
|
}
|
|
@@ -513074,7 +513078,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
513074
513078
|
path: plugin2.path,
|
|
513075
513079
|
source: plugin2.source
|
|
513076
513080
|
})),
|
|
513077
|
-
uuid:
|
|
513081
|
+
uuid: randomUUID32()
|
|
513078
513082
|
};
|
|
513079
513083
|
if (false) {}
|
|
513080
513084
|
initMessage.fast_mode_state = getFastModeState(inputs.model, inputs.fastMode);
|
|
@@ -513158,7 +513162,7 @@ __export(exports_MessageSelector, {
|
|
|
513158
513162
|
messagesAfterAreOnlySynthetic: () => messagesAfterAreOnlySynthetic,
|
|
513159
513163
|
MessageSelector: () => MessageSelector
|
|
513160
513164
|
});
|
|
513161
|
-
import { randomUUID as
|
|
513165
|
+
import { randomUUID as randomUUID33 } from "crypto";
|
|
513162
513166
|
import * as path21 from "path";
|
|
513163
513167
|
function isTextBlock2(block2) {
|
|
513164
513168
|
return block2.type === "text";
|
|
@@ -513178,7 +513182,7 @@ function MessageSelector({
|
|
|
513178
513182
|
const fileHistory = useAppState((s) => s.fileHistory);
|
|
513179
513183
|
const [error42, setError] = import_react197.useState(undefined);
|
|
513180
513184
|
const isFileHistoryEnabled = fileHistoryEnabled();
|
|
513181
|
-
const currentUUID = import_react197.useMemo(
|
|
513185
|
+
const currentUUID = import_react197.useMemo(randomUUID33, []);
|
|
513182
513186
|
const messageOptions = import_react197.useMemo(() => [...messages.filter(selectableUserMessagesFilter), {
|
|
513183
513187
|
...createUserMessage({
|
|
513184
513188
|
content: ""
|
|
@@ -519027,7 +519031,7 @@ var init_FileEditToolDiff = __esm(() => {
|
|
|
519027
519031
|
});
|
|
519028
519032
|
|
|
519029
519033
|
// src/hooks/useDiffInIDE.ts
|
|
519030
|
-
import { randomUUID as
|
|
519034
|
+
import { randomUUID as randomUUID34 } from "crypto";
|
|
519031
519035
|
import { basename as basename50 } from "path";
|
|
519032
519036
|
async function runAllPendingDiffCleanups() {
|
|
519033
519037
|
const cleanups = Array.from(pendingDiffCleanups);
|
|
@@ -519057,7 +519061,7 @@ function useDiffInIDE({
|
|
|
519057
519061
|
}) {
|
|
519058
519062
|
const isUnmounted = import_react208.useRef(false);
|
|
519059
519063
|
const [hasError, setHasError] = import_react208.useState(false);
|
|
519060
|
-
const sha = import_react208.useMemo(() =>
|
|
519064
|
+
const sha = import_react208.useMemo(() => randomUUID34().slice(0, 6), []);
|
|
519061
519065
|
const tabName = import_react208.useMemo(() => `✻ [Verboo Code] ${basename50(filePath)} (${sha}) ⧉`, [filePath, sha]);
|
|
519062
519066
|
const shouldShowDiffInIDE = hasAccessToIDEExtensionDiffFeature(toolUseContext.options.mcpClients) && getGlobalConfig().diffTool === "auto" && !filePath.endsWith(".ipynb");
|
|
519063
519067
|
const ideName = getConnectedIdeName(toolUseContext.options.mcpClients) ?? "IDE";
|
|
@@ -528445,7 +528449,7 @@ function AutoUpdater({
|
|
|
528445
528449
|
return;
|
|
528446
528450
|
}
|
|
528447
528451
|
if (false) {}
|
|
528448
|
-
const currentVersion = "0.7.
|
|
528452
|
+
const currentVersion = "0.7.27";
|
|
528449
528453
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
528450
528454
|
let latestVersion = await getLatestVersion(channel);
|
|
528451
528455
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -528798,17 +528802,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
528798
528802
|
const maxVersion = await getMaxVersion();
|
|
528799
528803
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
528800
528804
|
logForDebugging2(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
528801
|
-
if (gte("0.7.
|
|
528802
|
-
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.7.
|
|
528805
|
+
if (gte("0.7.27", maxVersion)) {
|
|
528806
|
+
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.7.27"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
528803
528807
|
setUpdateAvailable(false);
|
|
528804
528808
|
return;
|
|
528805
528809
|
}
|
|
528806
528810
|
latest = maxVersion;
|
|
528807
528811
|
}
|
|
528808
|
-
const hasUpdate = latest && !gte("0.7.
|
|
528812
|
+
const hasUpdate = latest && !gte("0.7.27", latest) && !shouldSkipVersion(latest);
|
|
528809
528813
|
setUpdateAvailable(!!hasUpdate);
|
|
528810
528814
|
if (hasUpdate) {
|
|
528811
|
-
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.7.
|
|
528815
|
+
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.7.27"} -> ${latest}`);
|
|
528812
528816
|
}
|
|
528813
528817
|
};
|
|
528814
528818
|
$2[0] = t1;
|
|
@@ -528842,7 +528846,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
528842
528846
|
wrap: "truncate",
|
|
528843
528847
|
children: [
|
|
528844
528848
|
"currentVersion: ",
|
|
528845
|
-
"0.7.
|
|
528849
|
+
"0.7.27"
|
|
528846
528850
|
]
|
|
528847
528851
|
}, undefined, true, undefined, this);
|
|
528848
528852
|
$2[3] = verbose;
|
|
@@ -535566,7 +535570,7 @@ var init_teamDiscovery = __esm(() => {
|
|
|
535566
535570
|
});
|
|
535567
535571
|
|
|
535568
535572
|
// src/components/teams/TeamsDialog.tsx
|
|
535569
|
-
import { randomUUID as
|
|
535573
|
+
import { randomUUID as randomUUID35 } from "crypto";
|
|
535570
535574
|
function TeamsDialog({
|
|
535571
535575
|
initialTeams,
|
|
535572
535576
|
onDone
|
|
@@ -536190,7 +536194,7 @@ async function killTeammate(paneId, backendType, teamName, teammateId, teammateN
|
|
|
536190
536194
|
},
|
|
536191
536195
|
inbox: {
|
|
536192
536196
|
messages: [...prev.inbox.messages, {
|
|
536193
|
-
id:
|
|
536197
|
+
id: randomUUID35(),
|
|
536194
536198
|
from: "system",
|
|
536195
536199
|
text: jsonStringify({
|
|
536196
536200
|
type: "teammate_terminated",
|
|
@@ -541825,28 +541829,48 @@ function PromptInput({
|
|
|
541825
541829
|
}, undefined, false, undefined, this)
|
|
541826
541830
|
]
|
|
541827
541831
|
}, undefined, true, undefined, this) : /* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedBox_default, {
|
|
541828
|
-
flexDirection: "
|
|
541829
|
-
alignItems: "flex-start",
|
|
541830
|
-
justifyContent: "flex-start",
|
|
541831
|
-
borderColor: getBorderColor(),
|
|
541832
|
-
borderStyle: "round",
|
|
541833
|
-
borderLeft: false,
|
|
541834
|
-
borderRight: false,
|
|
541835
|
-
borderBottom: true,
|
|
541832
|
+
flexDirection: "column",
|
|
541836
541833
|
width: "100%",
|
|
541837
|
-
borderText: buildBorderText(showFastIcon ?? false, showFastIconHint, fastModeCooldown),
|
|
541838
541834
|
children: [
|
|
541839
|
-
/* @__PURE__ */ jsx_dev_runtime433.jsxDEV(
|
|
541840
|
-
|
|
541841
|
-
|
|
541842
|
-
viewingAgentName,
|
|
541843
|
-
viewingAgentColor
|
|
541835
|
+
/* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedText, {
|
|
541836
|
+
color: "rgb(45,45,45)",
|
|
541837
|
+
children: "▄".repeat(columns)
|
|
541844
541838
|
}, undefined, false, undefined, this),
|
|
541845
541839
|
/* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedBox_default, {
|
|
541846
|
-
|
|
541847
|
-
|
|
541848
|
-
|
|
541849
|
-
|
|
541840
|
+
flexDirection: "row",
|
|
541841
|
+
alignItems: "flex-start",
|
|
541842
|
+
justifyContent: "flex-start",
|
|
541843
|
+
backgroundColor: "rgb(45,45,45)",
|
|
541844
|
+
children: [
|
|
541845
|
+
/* @__PURE__ */ jsx_dev_runtime433.jsxDEV(PromptInputModeIndicator, {
|
|
541846
|
+
mode,
|
|
541847
|
+
isLoading,
|
|
541848
|
+
viewingAgentName,
|
|
541849
|
+
viewingAgentColor
|
|
541850
|
+
}, undefined, false, undefined, this),
|
|
541851
|
+
showFastIcon && /* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedText, {
|
|
541852
|
+
color: getBorderColor(),
|
|
541853
|
+
children: [
|
|
541854
|
+
" ",
|
|
541855
|
+
getFastIconString(true, fastModeCooldown),
|
|
541856
|
+
" ",
|
|
541857
|
+
showFastIconHint && /* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedText, {
|
|
541858
|
+
dimColor: true,
|
|
541859
|
+
children: "/fast"
|
|
541860
|
+
}, undefined, false, undefined, this)
|
|
541861
|
+
]
|
|
541862
|
+
}, undefined, true, undefined, this),
|
|
541863
|
+
/* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedBox_default, {
|
|
541864
|
+
flexGrow: 1,
|
|
541865
|
+
flexShrink: 1,
|
|
541866
|
+
onClick: handleInputClick,
|
|
541867
|
+
children: textInputElement
|
|
541868
|
+
}, undefined, false, undefined, this)
|
|
541869
|
+
]
|
|
541870
|
+
}, undefined, true, undefined, this),
|
|
541871
|
+
/* @__PURE__ */ jsx_dev_runtime433.jsxDEV(ThemedText, {
|
|
541872
|
+
color: "rgb(45,45,45)",
|
|
541873
|
+
children: "▀".repeat(columns)
|
|
541850
541874
|
}, undefined, false, undefined, this)
|
|
541851
541875
|
]
|
|
541852
541876
|
}, undefined, true, undefined, this),
|
|
@@ -541937,20 +541961,8 @@ function getInitialPasteId(messages) {
|
|
|
541937
541961
|
}
|
|
541938
541962
|
return maxId + 1;
|
|
541939
541963
|
}
|
|
541940
|
-
function buildBorderText(showFastIcon, showFastIconHint, fastModeCooldown) {
|
|
541941
|
-
if (!showFastIcon)
|
|
541942
|
-
return;
|
|
541943
|
-
const fastSeg = showFastIconHint ? `${getFastIconString(true, fastModeCooldown)} ${source_default.dim("/fast")}` : getFastIconString(true, fastModeCooldown);
|
|
541944
|
-
return {
|
|
541945
|
-
content: ` ${fastSeg} `,
|
|
541946
|
-
position: "top",
|
|
541947
|
-
align: "end",
|
|
541948
|
-
offset: 0
|
|
541949
|
-
};
|
|
541950
|
-
}
|
|
541951
541964
|
var React148, import_react258, jsx_dev_runtime433, PROMPT_FOOTER_LINES = 5, MIN_INPUT_VIEWPORT_LINES = 3, PromptInput_default;
|
|
541952
541965
|
var init_PromptInput = __esm(() => {
|
|
541953
|
-
init_source2();
|
|
541954
541966
|
init_notifications();
|
|
541955
541967
|
init_useCommandQueue();
|
|
541956
541968
|
init_useIdeAtMentioned();
|
|
@@ -542070,7 +542082,7 @@ function normalizeControlMessageKeys(obj) {
|
|
|
542070
542082
|
}
|
|
542071
542083
|
|
|
542072
542084
|
// src/bridge/bridgeMessaging.ts
|
|
542073
|
-
import { randomUUID as
|
|
542085
|
+
import { randomUUID as randomUUID36 } from "crypto";
|
|
542074
542086
|
function isSDKMessage(value) {
|
|
542075
542087
|
return value !== null && typeof value === "object" && "type" in value && typeof value.type === "string";
|
|
542076
542088
|
}
|
|
@@ -542278,7 +542290,7 @@ function makeResultMessage(sessionId) {
|
|
|
542278
542290
|
modelUsage: {},
|
|
542279
542291
|
permission_denials: [],
|
|
542280
542292
|
session_id: sessionId,
|
|
542281
|
-
uuid:
|
|
542293
|
+
uuid: randomUUID36()
|
|
542282
542294
|
};
|
|
542283
542295
|
}
|
|
542284
542296
|
|
|
@@ -542321,7 +542333,7 @@ var init_bridgeMessaging = __esm(() => {
|
|
|
542321
542333
|
});
|
|
542322
542334
|
|
|
542323
542335
|
// src/remote/SessionsWebSocket.ts
|
|
542324
|
-
import { randomUUID as
|
|
542336
|
+
import { randomUUID as randomUUID37 } from "crypto";
|
|
542325
542337
|
function isSessionsMessage(value) {
|
|
542326
542338
|
if (typeof value !== "object" || value === null || !("type" in value)) {
|
|
542327
542339
|
return false;
|
|
@@ -542546,7 +542558,7 @@ class SessionsWebSocket {
|
|
|
542546
542558
|
}
|
|
542547
542559
|
const controlRequest = {
|
|
542548
542560
|
type: "control_request",
|
|
542549
|
-
request_id:
|
|
542561
|
+
request_id: randomUUID37(),
|
|
542550
542562
|
request
|
|
542551
542563
|
};
|
|
542552
542564
|
logForDebugging2(`[SessionsWebSocket] Sending control request: ${request.subtype}`);
|
|
@@ -542735,11 +542747,11 @@ var init_RemoteSessionManager = __esm(() => {
|
|
|
542735
542747
|
});
|
|
542736
542748
|
|
|
542737
542749
|
// src/remote/remotePermissionBridge.ts
|
|
542738
|
-
import { randomUUID as
|
|
542750
|
+
import { randomUUID as randomUUID38 } from "crypto";
|
|
542739
542751
|
function createSyntheticAssistantMessage(request, requestId) {
|
|
542740
542752
|
return {
|
|
542741
542753
|
type: "assistant",
|
|
542742
|
-
uuid:
|
|
542754
|
+
uuid: randomUUID38(),
|
|
542743
542755
|
message: {
|
|
542744
542756
|
id: `remote-${requestId}`,
|
|
542745
542757
|
type: "message",
|
|
@@ -543542,7 +543554,7 @@ var init_useDirectConnect = __esm(() => {
|
|
|
543542
543554
|
});
|
|
543543
543555
|
|
|
543544
543556
|
// src/hooks/useSSHSession.ts
|
|
543545
|
-
import { randomUUID as
|
|
543557
|
+
import { randomUUID as randomUUID39 } from "crypto";
|
|
543546
543558
|
function useSSHSession({
|
|
543547
543559
|
session: session2,
|
|
543548
543560
|
setMessages,
|
|
@@ -543640,7 +543652,7 @@ function useSSHSession({
|
|
|
543640
543652
|
subtype: "informational",
|
|
543641
543653
|
content: `SSH connection dropped — reconnecting (attempt ${attempt}/${max2})...`,
|
|
543642
543654
|
timestamp: new Date().toISOString(),
|
|
543643
|
-
uuid:
|
|
543655
|
+
uuid: randomUUID39(),
|
|
543644
543656
|
level: "warning"
|
|
543645
543657
|
};
|
|
543646
543658
|
setMessages((prev) => [...prev, msg]);
|
|
@@ -545780,7 +545792,7 @@ var init_PermissionContext = __esm(() => {
|
|
|
545780
545792
|
});
|
|
545781
545793
|
|
|
545782
545794
|
// src/hooks/toolPermission/handlers/interactiveHandler.ts
|
|
545783
|
-
import { randomUUID as
|
|
545795
|
+
import { randomUUID as randomUUID40 } from "crypto";
|
|
545784
545796
|
function handleInteractivePermission(params, resolve44) {
|
|
545785
545797
|
const {
|
|
545786
545798
|
ctx,
|
|
@@ -545794,7 +545806,7 @@ function handleInteractivePermission(params, resolve44) {
|
|
|
545794
545806
|
let userInteracted = false;
|
|
545795
545807
|
let checkmarkTransitionTimer;
|
|
545796
545808
|
let checkmarkAbortHandler;
|
|
545797
|
-
const bridgeRequestId = bridgeCallbacks ?
|
|
545809
|
+
const bridgeRequestId = bridgeCallbacks ? randomUUID40() : undefined;
|
|
545798
545810
|
let channelUnsubscribe;
|
|
545799
545811
|
const permissionPromptStartTimeMs = Date.now();
|
|
545800
545812
|
const displayInput = result.updatedInput ?? ctx.input;
|
|
@@ -546216,9 +546228,9 @@ function matchesKeepGoingKeyword(input) {
|
|
|
546216
546228
|
}
|
|
546217
546229
|
|
|
546218
546230
|
// src/utils/processUserInput/processTextPrompt.ts
|
|
546219
|
-
import { randomUUID as
|
|
546231
|
+
import { randomUUID as randomUUID41 } from "crypto";
|
|
546220
546232
|
function processTextPrompt(input, imageContentBlocks, imagePasteIds, attachmentMessages, uuid3, permissionMode, isMeta) {
|
|
546221
|
-
const promptId =
|
|
546233
|
+
const promptId = randomUUID41();
|
|
546222
546234
|
setPromptId(promptId);
|
|
546223
546235
|
const userPromptText = typeof input === "string" ? input : input.find((block2) => block2.type === "text")?.text || "";
|
|
546224
546236
|
startInteractionSpan(userPromptText);
|
|
@@ -546351,7 +546363,7 @@ var exports_processBashCommand = {};
|
|
|
546351
546363
|
__export(exports_processBashCommand, {
|
|
546352
546364
|
processBashCommand: () => processBashCommand
|
|
546353
546365
|
});
|
|
546354
|
-
import { randomUUID as
|
|
546366
|
+
import { randomUUID as randomUUID42 } from "crypto";
|
|
546355
546367
|
async function processBashCommand(inputString, precedingInputBlocks, attachmentMessages, context7, setToolJSX) {
|
|
546356
546368
|
const usePowerShell = isPowerShellToolEnabled() && resolveDefaultShell() === "powershell";
|
|
546357
546369
|
logEvent("tengu_input_bash", {
|
|
@@ -546417,7 +546429,7 @@ async function processBashCommand(inputString, precedingInputBlocks, attachmentM
|
|
|
546417
546429
|
const mapped = await processToolResultBlock(shellTool, {
|
|
546418
546430
|
...data,
|
|
546419
546431
|
stderr: ""
|
|
546420
|
-
},
|
|
546432
|
+
}, randomUUID42());
|
|
546421
546433
|
const stdout = typeof mapped.content === "string" ? mapped.content : escapeXml(data.stdout);
|
|
546422
546434
|
return {
|
|
546423
546435
|
messages: [createSyntheticUserCaveatMessage(), userMessage, ...attachmentMessages, createUserMessage({
|
|
@@ -546465,7 +546477,7 @@ var init_processBashCommand = __esm(() => {
|
|
|
546465
546477
|
});
|
|
546466
546478
|
|
|
546467
546479
|
// src/utils/processUserInput/processUserInput.ts
|
|
546468
|
-
import { randomUUID as
|
|
546480
|
+
import { randomUUID as randomUUID43 } from "crypto";
|
|
546469
546481
|
async function processUserInput({
|
|
546470
546482
|
input,
|
|
546471
546483
|
preExpansionInput,
|
|
@@ -546527,7 +546539,7 @@ Original prompt: ${input}`, "warning")
|
|
|
546527
546539
|
type: "hook_additional_context",
|
|
546528
546540
|
content: hookResult.additionalContexts.map(applyTruncation),
|
|
546529
546541
|
hookName: "UserPromptSubmit",
|
|
546530
|
-
toolUseID: `hook-${
|
|
546542
|
+
toolUseID: `hook-${randomUUID43()}`,
|
|
546531
546543
|
hookEvent: "UserPromptSubmit"
|
|
546532
546544
|
}));
|
|
546533
546545
|
}
|
|
@@ -548072,7 +548084,7 @@ var init_sessionRestore = __esm(() => {
|
|
|
548072
548084
|
});
|
|
548073
548085
|
|
|
548074
548086
|
// src/hooks/useInboxPoller.ts
|
|
548075
|
-
import { randomUUID as
|
|
548087
|
+
import { randomUUID as randomUUID44 } from "crypto";
|
|
548076
548088
|
function getAgentNameToPoll(appState) {
|
|
548077
548089
|
if (isInProcessTeammate()) {
|
|
548078
548090
|
return;
|
|
@@ -548489,7 +548501,7 @@ function useInboxPoller({
|
|
|
548489
548501
|
messages: [
|
|
548490
548502
|
...prev.inbox.messages,
|
|
548491
548503
|
{
|
|
548492
|
-
id:
|
|
548504
|
+
id: randomUUID44(),
|
|
548493
548505
|
from: "system",
|
|
548494
548506
|
text: jsonStringify({
|
|
548495
548507
|
type: "teammate_terminated",
|
|
@@ -548529,7 +548541,7 @@ ${messageContent}
|
|
|
548529
548541
|
messages: [
|
|
548530
548542
|
...prev.inbox.messages,
|
|
548531
548543
|
...regularMessages.map((m) => ({
|
|
548532
|
-
id:
|
|
548544
|
+
id: randomUUID44(),
|
|
548533
548545
|
from: m.from,
|
|
548534
548546
|
text: m.text,
|
|
548535
548547
|
timestamp: m.timestamp,
|
|
@@ -549368,7 +549380,7 @@ async function submitTranscriptShare() {
|
|
|
549368
549380
|
}
|
|
549369
549381
|
|
|
549370
549382
|
// src/components/FeedbackSurvey/useSurveyState.tsx
|
|
549371
|
-
import { randomUUID as
|
|
549383
|
+
import { randomUUID as randomUUID45 } from "crypto";
|
|
549372
549384
|
function useSurveyState({
|
|
549373
549385
|
hideThanksAfterMs,
|
|
549374
549386
|
onOpen,
|
|
@@ -549379,7 +549391,7 @@ function useSurveyState({
|
|
|
549379
549391
|
}) {
|
|
549380
549392
|
const [state3, setState] = import_react290.useState("closed");
|
|
549381
549393
|
const [lastResponse, setLastResponse] = import_react290.useState(null);
|
|
549382
|
-
const appearanceId = import_react290.useRef(
|
|
549394
|
+
const appearanceId = import_react290.useRef(randomUUID45());
|
|
549383
549395
|
const lastResponseRef = import_react290.useRef(null);
|
|
549384
549396
|
const showThanksThenClose = import_react290.useCallback(() => {
|
|
549385
549397
|
setState("thanks");
|
|
@@ -549397,7 +549409,7 @@ function useSurveyState({
|
|
|
549397
549409
|
return;
|
|
549398
549410
|
}
|
|
549399
549411
|
setState("open");
|
|
549400
|
-
appearanceId.current =
|
|
549412
|
+
appearanceId.current = randomUUID45();
|
|
549401
549413
|
onOpen(appearanceId.current);
|
|
549402
549414
|
}, [state3, onOpen]);
|
|
549403
549415
|
const handleSelect = import_react290.useCallback((selected) => {
|
|
@@ -551452,7 +551464,7 @@ var init_tipRegistry = __esm(() => {
|
|
|
551452
551464
|
}
|
|
551453
551465
|
},
|
|
551454
551466
|
{
|
|
551455
|
-
id: "color-when-multi-
|
|
551467
|
+
id: "color-when-multi-scaring",
|
|
551456
551468
|
content: async () => "Running multiple Verboo Code sessions? Use /color and /rename to tell them apart at a glance.",
|
|
551457
551469
|
cooldownSessions: 10,
|
|
551458
551470
|
isRelevant: async () => {
|
|
@@ -552326,7 +552338,7 @@ var init_ndjsonSafeStringify = __esm(() => {
|
|
|
552326
552338
|
});
|
|
552327
552339
|
|
|
552328
552340
|
// src/cli/structuredIO.ts
|
|
552329
|
-
import { randomUUID as
|
|
552341
|
+
import { randomUUID as randomUUID46 } from "crypto";
|
|
552330
552342
|
function serializeDecisionReason(reason) {
|
|
552331
552343
|
if (!reason) {
|
|
552332
552344
|
return;
|
|
@@ -552576,7 +552588,7 @@ class StructuredIO {
|
|
|
552576
552588
|
writeToStdout(ndjsonSafeStringify(message) + `
|
|
552577
552589
|
`);
|
|
552578
552590
|
}
|
|
552579
|
-
async sendRequest(request, schema, signal, requestId =
|
|
552591
|
+
async sendRequest(request, schema, signal, requestId = randomUUID46()) {
|
|
552580
552592
|
const message = {
|
|
552581
552593
|
type: "control_request",
|
|
552582
552594
|
request_id: requestId,
|
|
@@ -552642,7 +552654,7 @@ class StructuredIO {
|
|
|
552642
552654
|
parentSignal.addEventListener("abort", onParentAbort, { once: true });
|
|
552643
552655
|
try {
|
|
552644
552656
|
const hookPromise = executePermissionRequestHooksForSDK(tool.name, toolUseID, input, toolUseContext, mainPermissionResult.suggestions).then((decision) => ({ source: "hook", decision }));
|
|
552645
|
-
const requestId =
|
|
552657
|
+
const requestId = randomUUID46();
|
|
552646
552658
|
onPermissionPrompt?.(buildRequiresActionDetails(tool, input, toolUseID, requestId));
|
|
552647
552659
|
const sdkPromise = this.sendRequest({
|
|
552648
552660
|
subtype: "can_use_tool",
|
|
@@ -552722,7 +552734,7 @@ class StructuredIO {
|
|
|
552722
552734
|
subtype: "can_use_tool",
|
|
552723
552735
|
tool_name: SANDBOX_NETWORK_ACCESS_TOOL_NAME,
|
|
552724
552736
|
input: { host: hostPattern.host },
|
|
552725
|
-
tool_use_id:
|
|
552737
|
+
tool_use_id: randomUUID46(),
|
|
552726
552738
|
description: `Allow network connection to ${hostPattern.host}?`
|
|
552727
552739
|
}, outputSchema35());
|
|
552728
552740
|
return result.behavior === "allow";
|
|
@@ -557333,7 +557345,7 @@ __export(exports_REPL, {
|
|
|
557333
557345
|
import { dirname as dirname59, join as join150 } from "path";
|
|
557334
557346
|
import { tmpdir as tmpdir10 } from "os";
|
|
557335
557347
|
import { writeFile as writeFile51 } from "fs/promises";
|
|
557336
|
-
import { randomUUID as
|
|
557348
|
+
import { randomUUID as randomUUID47 } from "crypto";
|
|
557337
557349
|
function TranscriptModeFooter(t0) {
|
|
557338
557350
|
const $2 = import_react_compiler_runtime355.c(9);
|
|
557339
557351
|
const {
|
|
@@ -558105,7 +558117,7 @@ function REPL({
|
|
|
558105
558117
|
const [isMessageSelectorVisible, setIsMessageSelectorVisible] = import_react317.useState(false);
|
|
558106
558118
|
const [messageSelectorPreselect, setMessageSelectorPreselect] = import_react317.useState(undefined);
|
|
558107
558119
|
const [showCostDialog, setShowCostDialog] = import_react317.useState(false);
|
|
558108
|
-
const [conversationId, setConversationId] = import_react317.useState(
|
|
558120
|
+
const [conversationId, setConversationId] = import_react317.useState(randomUUID47());
|
|
558109
558121
|
const [idleReturnPending, setIdleReturnPending] = import_react317.useState(null);
|
|
558110
558122
|
const skipIdleCheckRef = import_react317.useRef(false);
|
|
558111
558123
|
const lastQueryCompletionTimeRef = import_react317.useRef(lastQueryCompletionTime);
|
|
@@ -558864,7 +558876,7 @@ Error: sandbox required but unavailable: ${reason}
|
|
|
558864
558876
|
} else {
|
|
558865
558877
|
setMessages(() => [newMessage]);
|
|
558866
558878
|
}
|
|
558867
|
-
setConversationId(
|
|
558879
|
+
setConversationId(randomUUID47());
|
|
558868
558880
|
if (false) {}
|
|
558869
558881
|
} else if (newMessage.type === "progress" && isEphemeralToolProgress(newMessage.data.type)) {
|
|
558870
558882
|
setMessages((oldMessages) => {
|
|
@@ -558940,7 +558952,7 @@ Error: sandbox required but unavailable: ${reason}
|
|
|
558940
558952
|
});
|
|
558941
558953
|
if (!shouldQuery) {
|
|
558942
558954
|
if (newMessages.some(isCompactBoundaryMessage)) {
|
|
558943
|
-
setConversationId(
|
|
558955
|
+
setConversationId(randomUUID47());
|
|
558944
558956
|
if (false) {}
|
|
558945
558957
|
}
|
|
558946
558958
|
resetLoadingState();
|
|
@@ -559595,7 +559607,7 @@ Error: sandbox required but unavailable: ${reason}
|
|
|
559595
559607
|
rewindToMessageIndex: messageIndex
|
|
559596
559608
|
});
|
|
559597
559609
|
setMessages(prev.slice(0, messageIndex));
|
|
559598
|
-
setConversationId(
|
|
559610
|
+
setConversationId(randomUUID47());
|
|
559599
559611
|
resetMicrocompactState();
|
|
559600
559612
|
if (false) {}
|
|
559601
559613
|
setAppState((prev2) => ({
|
|
@@ -560773,7 +560785,7 @@ Note: ctrl + z now suspends Verboo Code, ctrl + _ undoes input.
|
|
|
560773
560785
|
setMessages(postCompact);
|
|
560774
560786
|
}
|
|
560775
560787
|
if (false) {}
|
|
560776
|
-
setConversationId(
|
|
560788
|
+
setConversationId(randomUUID47());
|
|
560777
560789
|
runPostCompactCleanup(context7.options.querySource);
|
|
560778
560790
|
if (direction === "from") {
|
|
560779
560791
|
const r = textForResubmit(message);
|
|
@@ -562237,7 +562249,7 @@ function WelcomeV2() {
|
|
|
562237
562249
|
dimColor: true,
|
|
562238
562250
|
children: [
|
|
562239
562251
|
"v",
|
|
562240
|
-
"0.7.
|
|
562252
|
+
"0.7.27",
|
|
562241
562253
|
" "
|
|
562242
562254
|
]
|
|
562243
562255
|
}, undefined, true, undefined, this)
|
|
@@ -562424,7 +562436,7 @@ function WelcomeV2() {
|
|
|
562424
562436
|
dimColor: true,
|
|
562425
562437
|
children: [
|
|
562426
562438
|
"v",
|
|
562427
|
-
"0.7.
|
|
562439
|
+
"0.7.27",
|
|
562428
562440
|
" "
|
|
562429
562441
|
]
|
|
562430
562442
|
}, undefined, true, undefined, this)
|
|
@@ -562640,7 +562652,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
562640
562652
|
dimColor: true,
|
|
562641
562653
|
children: [
|
|
562642
562654
|
"v",
|
|
562643
|
-
"0.7.
|
|
562655
|
+
"0.7.27",
|
|
562644
562656
|
" "
|
|
562645
562657
|
]
|
|
562646
562658
|
}, undefined, true, undefined, this);
|
|
@@ -562849,7 +562861,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
562849
562861
|
dimColor: true,
|
|
562850
562862
|
children: [
|
|
562851
562863
|
"v",
|
|
562852
|
-
"0.7.
|
|
562864
|
+
"0.7.27",
|
|
562853
562865
|
" "
|
|
562854
562866
|
]
|
|
562855
562867
|
}, undefined, true, undefined, this);
|
|
@@ -571224,7 +571236,7 @@ function coalescePatches(base2, overlay) {
|
|
|
571224
571236
|
var init_WorkerStateUploader = () => {};
|
|
571225
571237
|
|
|
571226
571238
|
// src/cli/transports/ccrClient.ts
|
|
571227
|
-
import { randomUUID as
|
|
571239
|
+
import { randomUUID as randomUUID48 } from "crypto";
|
|
571228
571240
|
function alwaysValidStatus() {
|
|
571229
571241
|
return true;
|
|
571230
571242
|
}
|
|
@@ -571583,7 +571595,7 @@ class CCRClient {
|
|
|
571583
571595
|
return {
|
|
571584
571596
|
payload: {
|
|
571585
571597
|
...msg,
|
|
571586
|
-
uuid: typeof msg.uuid === "string" ? msg.uuid :
|
|
571598
|
+
uuid: typeof msg.uuid === "string" ? msg.uuid : randomUUID48()
|
|
571587
571599
|
}
|
|
571588
571600
|
};
|
|
571589
571601
|
}
|
|
@@ -571607,7 +571619,7 @@ class CCRClient {
|
|
|
571607
571619
|
payload: {
|
|
571608
571620
|
type: eventType,
|
|
571609
571621
|
...payload,
|
|
571610
|
-
uuid: typeof payload.uuid === "string" ? payload.uuid :
|
|
571622
|
+
uuid: typeof payload.uuid === "string" ? payload.uuid : randomUUID48()
|
|
571611
571623
|
},
|
|
571612
571624
|
...isCompaction && { is_compaction: true },
|
|
571613
571625
|
...agentId && { agent_id: agentId }
|
|
@@ -573114,7 +573126,7 @@ var init_queryContext = __esm(() => {
|
|
|
573114
573126
|
});
|
|
573115
573127
|
|
|
573116
573128
|
// src/QueryEngine.ts
|
|
573117
|
-
import { randomUUID as
|
|
573129
|
+
import { randomUUID as randomUUID49 } from "crypto";
|
|
573118
573130
|
|
|
573119
573131
|
class QueryEngine {
|
|
573120
573132
|
config;
|
|
@@ -573423,7 +573435,7 @@ class QueryEngine {
|
|
|
573423
573435
|
modelUsage: getModelUsage(),
|
|
573424
573436
|
permission_denials: this.permissionDenials,
|
|
573425
573437
|
fast_mode_state: getFastModeState(mainLoopModel, initialAppState.fastMode),
|
|
573426
|
-
uuid:
|
|
573438
|
+
uuid: randomUUID49()
|
|
573427
573439
|
};
|
|
573428
573440
|
return;
|
|
573429
573441
|
}
|
|
@@ -573546,7 +573558,7 @@ class QueryEngine {
|
|
|
573546
573558
|
event: message.event,
|
|
573547
573559
|
session_id: getSessionId(),
|
|
573548
573560
|
parent_tool_use_id: null,
|
|
573549
|
-
uuid:
|
|
573561
|
+
uuid: randomUUID49()
|
|
573550
573562
|
};
|
|
573551
573563
|
}
|
|
573552
573564
|
break;
|
|
@@ -573578,7 +573590,7 @@ class QueryEngine {
|
|
|
573578
573590
|
modelUsage: getModelUsage(),
|
|
573579
573591
|
permission_denials: this.permissionDenials,
|
|
573580
573592
|
fast_mode_state: getFastModeState(mainLoopModel, initialAppState.fastMode),
|
|
573581
|
-
uuid:
|
|
573593
|
+
uuid: randomUUID49(),
|
|
573582
573594
|
errors: [
|
|
573583
573595
|
`Reached maximum number of turns (${message.attachment.maxTurns})`
|
|
573584
573596
|
]
|
|
@@ -573673,7 +573685,7 @@ class QueryEngine {
|
|
|
573673
573685
|
modelUsage: getModelUsage(),
|
|
573674
573686
|
permission_denials: this.permissionDenials,
|
|
573675
573687
|
fast_mode_state: getFastModeState(mainLoopModel, initialAppState.fastMode),
|
|
573676
|
-
uuid:
|
|
573688
|
+
uuid: randomUUID49(),
|
|
573677
573689
|
errors: [`Reached maximum budget ($${maxBudgetUsd})`]
|
|
573678
573690
|
};
|
|
573679
573691
|
return;
|
|
@@ -573702,7 +573714,7 @@ class QueryEngine {
|
|
|
573702
573714
|
modelUsage: getModelUsage(),
|
|
573703
573715
|
permission_denials: this.permissionDenials,
|
|
573704
573716
|
fast_mode_state: getFastModeState(mainLoopModel, initialAppState.fastMode),
|
|
573705
|
-
uuid:
|
|
573717
|
+
uuid: randomUUID49(),
|
|
573706
573718
|
errors: [
|
|
573707
573719
|
`Failed to provide valid structured output after ${maxRetries} attempts`
|
|
573708
573720
|
]
|
|
@@ -573734,7 +573746,7 @@ class QueryEngine {
|
|
|
573734
573746
|
modelUsage: getModelUsage(),
|
|
573735
573747
|
permission_denials: this.permissionDenials,
|
|
573736
573748
|
fast_mode_state: getFastModeState(mainLoopModel, initialAppState.fastMode),
|
|
573737
|
-
uuid:
|
|
573749
|
+
uuid: randomUUID49(),
|
|
573738
573750
|
errors: (() => {
|
|
573739
573751
|
const all6 = getInMemoryErrors();
|
|
573740
573752
|
const start = errorLogWatermark ? all6.lastIndexOf(errorLogWatermark) + 1 : 0;
|
|
@@ -573771,7 +573783,7 @@ class QueryEngine {
|
|
|
573771
573783
|
permission_denials: this.permissionDenials,
|
|
573772
573784
|
structured_output: structuredOutputFromTool,
|
|
573773
573785
|
fast_mode_state: getFastModeState(mainLoopModel, initialAppState.fastMode),
|
|
573774
|
-
uuid:
|
|
573786
|
+
uuid: randomUUID49()
|
|
573775
573787
|
};
|
|
573776
573788
|
}
|
|
573777
573789
|
interrupt() {
|
|
@@ -573949,7 +573961,7 @@ var init_idleTimeout = __esm(() => {
|
|
|
573949
573961
|
});
|
|
573950
573962
|
|
|
573951
573963
|
// src/bridge/inboundAttachments.ts
|
|
573952
|
-
import { randomUUID as
|
|
573964
|
+
import { randomUUID as randomUUID50 } from "crypto";
|
|
573953
573965
|
import { mkdir as mkdir48, writeFile as writeFile53 } from "fs/promises";
|
|
573954
573966
|
import { basename as basename61, join as join154 } from "path";
|
|
573955
573967
|
function debug(msg) {
|
|
@@ -573994,7 +574006,7 @@ async function resolveOne(att) {
|
|
|
573994
574006
|
return;
|
|
573995
574007
|
}
|
|
573996
574008
|
const safeName = sanitizeFileName(att.file_name);
|
|
573997
|
-
const prefix = (att.file_uuid.slice(0, 8) ||
|
|
574009
|
+
const prefix = (att.file_uuid.slice(0, 8) || randomUUID50().slice(0, 8)).replace(/[^a-zA-Z0-9_-]/g, "_");
|
|
573998
574010
|
const dir = uploadsDir();
|
|
573999
574011
|
const outPath = join154(dir, `${prefix}-${safeName}`);
|
|
574000
574012
|
try {
|
|
@@ -574058,11 +574070,11 @@ var init_inboundAttachments = __esm(() => {
|
|
|
574058
574070
|
});
|
|
574059
574071
|
|
|
574060
574072
|
// src/utils/sessionUrl.ts
|
|
574061
|
-
import { randomUUID as
|
|
574073
|
+
import { randomUUID as randomUUID51 } from "crypto";
|
|
574062
574074
|
function parseSessionIdentifier(resumeIdentifier) {
|
|
574063
574075
|
if (resumeIdentifier.toLowerCase().endsWith(".jsonl")) {
|
|
574064
574076
|
return {
|
|
574065
|
-
sessionId:
|
|
574077
|
+
sessionId: randomUUID51(),
|
|
574066
574078
|
ingressUrl: null,
|
|
574067
574079
|
isUrl: false,
|
|
574068
574080
|
jsonlFile: resumeIdentifier,
|
|
@@ -574081,7 +574093,7 @@ function parseSessionIdentifier(resumeIdentifier) {
|
|
|
574081
574093
|
try {
|
|
574082
574094
|
const url4 = new URL(resumeIdentifier);
|
|
574083
574095
|
return {
|
|
574084
|
-
sessionId:
|
|
574096
|
+
sessionId: randomUUID51(),
|
|
574085
574097
|
ingressUrl: url4.href,
|
|
574086
574098
|
isUrl: true,
|
|
574087
574099
|
jsonlFile: null,
|
|
@@ -574690,7 +574702,7 @@ var init_bridgePointer = __esm(() => {
|
|
|
574690
574702
|
});
|
|
574691
574703
|
|
|
574692
574704
|
// src/bridge/replBridge.ts
|
|
574693
|
-
import { randomUUID as
|
|
574705
|
+
import { randomUUID as randomUUID52 } from "crypto";
|
|
574694
574706
|
async function initBridgeCore(params) {
|
|
574695
574707
|
const {
|
|
574696
574708
|
dir,
|
|
@@ -574747,9 +574759,9 @@ async function initBridgeCore(params) {
|
|
|
574747
574759
|
spawnMode: "single-session",
|
|
574748
574760
|
verbose: false,
|
|
574749
574761
|
sandbox: false,
|
|
574750
|
-
bridgeId:
|
|
574762
|
+
bridgeId: randomUUID52(),
|
|
574751
574763
|
workerType,
|
|
574752
|
-
environmentId:
|
|
574764
|
+
environmentId: randomUUID52(),
|
|
574753
574765
|
reuseEnvironmentId: prior?.environmentId,
|
|
574754
574766
|
apiBaseUrl: baseUrl,
|
|
574755
574767
|
sessionIngressUrl
|
|
@@ -576597,7 +576609,7 @@ __export(exports_print, {
|
|
|
576597
576609
|
import { readFile as readFile55, stat as stat56 } from "fs/promises";
|
|
576598
576610
|
import { dirname as dirname63 } from "path";
|
|
576599
576611
|
import { cwd as cwd3 } from "process";
|
|
576600
|
-
import { randomUUID as
|
|
576612
|
+
import { randomUUID as randomUUID53 } from "crypto";
|
|
576601
576613
|
function trackReceivedMessageUuid(uuid3) {
|
|
576602
576614
|
if (receivedMessageUuids.has(uuid3)) {
|
|
576603
576615
|
return false;
|
|
@@ -576717,7 +576729,7 @@ Error: sandbox required but unavailable: ${sandboxUnavailableReason}
|
|
|
576717
576729
|
hook_id: event.hookId,
|
|
576718
576730
|
hook_name: event.hookName,
|
|
576719
576731
|
hook_event: event.hookEvent,
|
|
576720
|
-
uuid:
|
|
576732
|
+
uuid: randomUUID53(),
|
|
576721
576733
|
session_id: getSessionId()
|
|
576722
576734
|
};
|
|
576723
576735
|
case "progress":
|
|
@@ -576730,7 +576742,7 @@ Error: sandbox required but unavailable: ${sandboxUnavailableReason}
|
|
|
576730
576742
|
stdout: event.stdout,
|
|
576731
576743
|
stderr: event.stderr,
|
|
576732
576744
|
output: event.output,
|
|
576733
|
-
uuid:
|
|
576745
|
+
uuid: randomUUID53(),
|
|
576734
576746
|
session_id: getSessionId()
|
|
576735
576747
|
};
|
|
576736
576748
|
case "response":
|
|
@@ -576745,7 +576757,7 @@ Error: sandbox required but unavailable: ${sandboxUnavailableReason}
|
|
|
576745
576757
|
stderr: event.stderr,
|
|
576746
576758
|
exit_code: event.exitCode,
|
|
576747
576759
|
outcome: event.outcome,
|
|
576748
|
-
uuid:
|
|
576760
|
+
uuid: randomUUID53(),
|
|
576749
576761
|
session_id: getSessionId()
|
|
576750
576762
|
};
|
|
576751
576763
|
}
|
|
@@ -576944,7 +576956,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
576944
576956
|
subtype: "status",
|
|
576945
576957
|
status: null,
|
|
576946
576958
|
permissionMode: newMode,
|
|
576947
|
-
uuid:
|
|
576959
|
+
uuid: randomUUID53(),
|
|
576948
576960
|
session_id: getSessionId()
|
|
576949
576961
|
});
|
|
576950
576962
|
}
|
|
@@ -576965,7 +576977,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
576965
576977
|
isAuthenticating: status2.isAuthenticating,
|
|
576966
576978
|
output: status2.output,
|
|
576967
576979
|
error: status2.error,
|
|
576968
|
-
uuid:
|
|
576980
|
+
uuid: randomUUID53(),
|
|
576969
576981
|
session_id: getSessionId()
|
|
576970
576982
|
});
|
|
576971
576983
|
});
|
|
@@ -576976,7 +576988,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
576976
576988
|
output.enqueue({
|
|
576977
576989
|
type: "rate_limit_event",
|
|
576978
576990
|
rate_limit_info: rateLimitInfo,
|
|
576979
|
-
uuid:
|
|
576991
|
+
uuid: randomUUID53(),
|
|
576980
576992
|
session_id: getSessionId()
|
|
576981
576993
|
});
|
|
576982
576994
|
}
|
|
@@ -576992,7 +577004,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
576992
577004
|
enqueue({
|
|
576993
577005
|
mode: "prompt",
|
|
576994
577006
|
value: turnInterruptionState.message.message.content,
|
|
576995
|
-
uuid:
|
|
577007
|
+
uuid: randomUUID53()
|
|
576996
577008
|
});
|
|
576997
577009
|
}
|
|
576998
577010
|
const modelOptions = getModelOptions();
|
|
@@ -577085,7 +577097,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
577085
577097
|
subtype: "elicitation_complete",
|
|
577086
577098
|
mcp_server_name: serverName,
|
|
577087
577099
|
elicitation_id: elicitationId,
|
|
577088
|
-
uuid:
|
|
577100
|
+
uuid: randomUUID53(),
|
|
577089
577101
|
session_id: getSessionId()
|
|
577090
577102
|
});
|
|
577091
577103
|
});
|
|
@@ -577430,7 +577442,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
577430
577442
|
duration_ms: durationMsMatch ? parseInt(durationMsMatch[1], 10) : 0
|
|
577431
577443
|
} : undefined,
|
|
577432
577444
|
session_id: getSessionId(),
|
|
577433
|
-
uuid:
|
|
577445
|
+
uuid: randomUUID53()
|
|
577434
577446
|
});
|
|
577435
577447
|
}
|
|
577436
577448
|
}
|
|
@@ -577504,7 +577516,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
577504
577516
|
subtype: "status",
|
|
577505
577517
|
status: status2,
|
|
577506
577518
|
session_id: getSessionId(),
|
|
577507
|
-
uuid:
|
|
577519
|
+
uuid: randomUUID53()
|
|
577508
577520
|
});
|
|
577509
577521
|
}
|
|
577510
577522
|
})) {
|
|
@@ -577552,7 +577564,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
577552
577564
|
const suggestionMsg = {
|
|
577553
577565
|
type: "prompt_suggestion",
|
|
577554
577566
|
suggestion: result.suggestion,
|
|
577555
|
-
uuid:
|
|
577567
|
+
uuid: randomUUID53(),
|
|
577556
577568
|
session_id: getSessionId()
|
|
577557
577569
|
};
|
|
577558
577570
|
const lastEmittedEntry = {
|
|
@@ -577642,7 +577654,7 @@ function runHeadlessStreaming(structuredIO, mcpClients, commands, tools, initial
|
|
|
577642
577654
|
usage: EMPTY_USAGE,
|
|
577643
577655
|
modelUsage: {},
|
|
577644
577656
|
permission_denials: [],
|
|
577645
|
-
uuid:
|
|
577657
|
+
uuid: randomUUID53(),
|
|
577646
577658
|
errors: [
|
|
577647
577659
|
errorMessage(error42),
|
|
577648
577660
|
...getInMemoryErrors().map((_) => _.error)
|
|
@@ -577726,7 +577738,7 @@ ${m.text}
|
|
|
577726
577738
|
enqueue({
|
|
577727
577739
|
mode: "prompt",
|
|
577728
577740
|
value: formatted,
|
|
577729
|
-
uuid:
|
|
577741
|
+
uuid: randomUUID53()
|
|
577730
577742
|
});
|
|
577731
577743
|
run();
|
|
577732
577744
|
return;
|
|
@@ -577737,7 +577749,7 @@ ${m.text}
|
|
|
577737
577749
|
enqueue({
|
|
577738
577750
|
mode: "prompt",
|
|
577739
577751
|
value: SHUTDOWN_TEAM_PROMPT,
|
|
577740
|
-
uuid:
|
|
577752
|
+
uuid: randomUUID53()
|
|
577741
577753
|
});
|
|
577742
577754
|
run();
|
|
577743
577755
|
return;
|
|
@@ -577761,7 +577773,7 @@ ${m.text}
|
|
|
577761
577773
|
enqueue({
|
|
577762
577774
|
mode: "prompt",
|
|
577763
577775
|
value: SHUTDOWN_TEAM_PROMPT,
|
|
577764
|
-
uuid:
|
|
577776
|
+
uuid: randomUUID53()
|
|
577765
577777
|
});
|
|
577766
577778
|
run();
|
|
577767
577779
|
} else {
|
|
@@ -577788,7 +577800,7 @@ ${m.text}
|
|
|
577788
577800
|
enqueue({
|
|
577789
577801
|
mode: "prompt",
|
|
577790
577802
|
value: prompt,
|
|
577791
|
-
uuid:
|
|
577803
|
+
uuid: randomUUID53(),
|
|
577792
577804
|
priority: "later",
|
|
577793
577805
|
isMeta: true,
|
|
577794
577806
|
workload: WORKLOAD_CRON
|
|
@@ -578530,7 +578542,7 @@ ${m.text}
|
|
|
578530
578542
|
subtype: "bridge_state",
|
|
578531
578543
|
state: state3,
|
|
578532
578544
|
detail,
|
|
578533
|
-
uuid:
|
|
578545
|
+
uuid: randomUUID53(),
|
|
578534
578546
|
session_id: getSessionId()
|
|
578535
578547
|
});
|
|
578536
578548
|
},
|
|
@@ -578838,7 +578850,7 @@ async function handleInitializeRequest(request, requestId, initialized5, output,
|
|
|
578838
578850
|
isAuthenticating: status2.isAuthenticating,
|
|
578839
578851
|
output: status2.output,
|
|
578840
578852
|
error: status2.error,
|
|
578841
|
-
uuid:
|
|
578853
|
+
uuid: randomUUID53(),
|
|
578842
578854
|
session_id: getSessionId()
|
|
578843
578855
|
});
|
|
578844
578856
|
}
|
|
@@ -579037,7 +579049,7 @@ function emitLoadError(message, outputFormat) {
|
|
|
579037
579049
|
usage: EMPTY_USAGE,
|
|
579038
579050
|
modelUsage: {},
|
|
579039
579051
|
permission_denials: [],
|
|
579040
|
-
uuid:
|
|
579052
|
+
uuid: randomUUID53(),
|
|
579041
579053
|
errors: [message]
|
|
579042
579054
|
};
|
|
579043
579055
|
process.stdout.write(jsonStringify(errorResult) + `
|
|
@@ -580980,7 +580992,7 @@ __export(exports_update, {
|
|
|
580980
580992
|
async function update() {
|
|
580981
580993
|
if (getAPIProvider() !== "firstParty") {
|
|
580982
580994
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
580983
|
-
`) + `Current version: ${"0.7.
|
|
580995
|
+
`) + `Current version: ${"0.7.27"}
|
|
580984
580996
|
|
|
580985
580997
|
` + `To update, reinstall from npm:
|
|
580986
580998
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -580991,7 +581003,7 @@ async function update() {
|
|
|
580991
581003
|
await gracefulShutdown(0);
|
|
580992
581004
|
}
|
|
580993
581005
|
logEvent("tengu_update_check", {});
|
|
580994
|
-
writeToStdout(`Current version: ${"0.7.
|
|
581006
|
+
writeToStdout(`Current version: ${"0.7.27"}
|
|
580995
581007
|
`);
|
|
580996
581008
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
580997
581009
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -581076,8 +581088,8 @@ async function update() {
|
|
|
581076
581088
|
writeToStdout(`Verboo Code is managed by Homebrew.
|
|
581077
581089
|
`);
|
|
581078
581090
|
const latest = await getLatestVersion(channel);
|
|
581079
|
-
if (latest && !gte("0.7.
|
|
581080
|
-
writeToStdout(`Update available: ${"0.7.
|
|
581091
|
+
if (latest && !gte("0.7.27", latest)) {
|
|
581092
|
+
writeToStdout(`Update available: ${"0.7.27"} → ${latest}
|
|
581081
581093
|
`);
|
|
581082
581094
|
writeToStdout(`
|
|
581083
581095
|
`);
|
|
@@ -581093,8 +581105,8 @@ async function update() {
|
|
|
581093
581105
|
writeToStdout(`Verboo Code is managed by winget.
|
|
581094
581106
|
`);
|
|
581095
581107
|
const latest = await getLatestVersion(channel);
|
|
581096
|
-
if (latest && !gte("0.7.
|
|
581097
|
-
writeToStdout(`Update available: ${"0.7.
|
|
581108
|
+
if (latest && !gte("0.7.27", latest)) {
|
|
581109
|
+
writeToStdout(`Update available: ${"0.7.27"} → ${latest}
|
|
581098
581110
|
`);
|
|
581099
581111
|
writeToStdout(`
|
|
581100
581112
|
`);
|
|
@@ -581110,8 +581122,8 @@ async function update() {
|
|
|
581110
581122
|
writeToStdout(`Verboo Code is managed by apk.
|
|
581111
581123
|
`);
|
|
581112
581124
|
const latest = await getLatestVersion(channel);
|
|
581113
|
-
if (latest && !gte("0.7.
|
|
581114
|
-
writeToStdout(`Update available: ${"0.7.
|
|
581125
|
+
if (latest && !gte("0.7.27", latest)) {
|
|
581126
|
+
writeToStdout(`Update available: ${"0.7.27"} → ${latest}
|
|
581115
581127
|
`);
|
|
581116
581128
|
writeToStdout(`
|
|
581117
581129
|
`);
|
|
@@ -581176,11 +581188,11 @@ async function update() {
|
|
|
581176
581188
|
`);
|
|
581177
581189
|
await gracefulShutdown(1);
|
|
581178
581190
|
}
|
|
581179
|
-
if (result.latestVersion === "0.7.
|
|
581180
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.
|
|
581191
|
+
if (result.latestVersion === "0.7.27") {
|
|
581192
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.27"})`) + `
|
|
581181
581193
|
`);
|
|
581182
581194
|
} else {
|
|
581183
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.7.
|
|
581195
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.7.27"} to version ${result.latestVersion}`) + `
|
|
581184
581196
|
`);
|
|
581185
581197
|
await regenerateCompletionCache();
|
|
581186
581198
|
}
|
|
@@ -581240,12 +581252,12 @@ async function update() {
|
|
|
581240
581252
|
`);
|
|
581241
581253
|
await gracefulShutdown(1);
|
|
581242
581254
|
}
|
|
581243
|
-
if (latestVersion === "0.7.
|
|
581244
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.
|
|
581255
|
+
if (latestVersion === "0.7.27") {
|
|
581256
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.27"})`) + `
|
|
581245
581257
|
`);
|
|
581246
581258
|
await gracefulShutdown(0);
|
|
581247
581259
|
}
|
|
581248
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.7.
|
|
581260
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.7.27"})
|
|
581249
581261
|
`);
|
|
581250
581262
|
writeToStdout(`Installing update...
|
|
581251
581263
|
`);
|
|
@@ -581290,7 +581302,7 @@ async function update() {
|
|
|
581290
581302
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
581291
581303
|
switch (status2) {
|
|
581292
581304
|
case "success":
|
|
581293
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.7.
|
|
581305
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.7.27"} to version ${latestVersion}`) + `
|
|
581294
581306
|
`);
|
|
581295
581307
|
await regenerateCompletionCache();
|
|
581296
581308
|
break;
|
|
@@ -582549,7 +582561,7 @@ ${customInstructions}` : customInstructions;
|
|
|
582549
582561
|
is_native_binary: isInBundledMode()
|
|
582550
582562
|
});
|
|
582551
582563
|
logMemoryDiagnostics("start", {
|
|
582552
|
-
version: "0.7.
|
|
582564
|
+
version: "0.7.27",
|
|
582553
582565
|
debug: debug2,
|
|
582554
582566
|
debugToStderr,
|
|
582555
582567
|
print: print ?? false,
|
|
@@ -583355,7 +583367,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
583355
583367
|
pendingHookMessages
|
|
583356
583368
|
}, renderAndRun);
|
|
583357
583369
|
}
|
|
583358
|
-
}).version(`0.7.
|
|
583370
|
+
}).version(`0.7.27 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
583359
583371
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
583360
583372
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
583361
583373
|
if (canUserConfigureAdvisor()) {
|
|
@@ -583927,7 +583939,7 @@ if (false) {}
|
|
|
583927
583939
|
async function main2() {
|
|
583928
583940
|
const args = process.argv.slice(2);
|
|
583929
583941
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
583930
|
-
console.log(`${"0.7.
|
|
583942
|
+
console.log(`${"0.7.27"} (Verboo Code)`);
|
|
583931
583943
|
return;
|
|
583932
583944
|
}
|
|
583933
583945
|
if (!IS_VERBOO_CLI && args.includes("--provider")) {
|
|
@@ -584092,4 +584104,4 @@ async function main2() {
|
|
|
584092
584104
|
}
|
|
584093
584105
|
main2();
|
|
584094
584106
|
|
|
584095
|
-
//# debugId=
|
|
584107
|
+
//# debugId=04E4745FAA2B7B6C64756E2164756E21
|