@verboo/code 0.8.3 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +40 -39
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -217645,8 +217645,8 @@ function getPerMessageBudgetLimit() {
|
|
|
217645
217645
|
return MAX_TOOL_RESULTS_PER_MESSAGE_CHARS;
|
|
217646
217646
|
}
|
|
217647
217647
|
function provisionContentReplacementState(initialMessages, initialContentReplacements) {
|
|
217648
|
-
const
|
|
217649
|
-
if (
|
|
217648
|
+
const disabled = isEnvTruthy(process.env.VERBOO_DISABLE_TOOL_RESULT_BUDGET) || isEnvTruthy(process.env.OPENCLAUDE_DISABLE_TOOL_RESULT_BUDGET);
|
|
217649
|
+
if (disabled)
|
|
217650
217650
|
return;
|
|
217651
217651
|
if (initialMessages) {
|
|
217652
217652
|
return reconstructContentReplacementState(initialMessages, initialContentReplacements ?? []);
|
|
@@ -217922,6 +217922,7 @@ var init_toolResultStorage = __esm(() => {
|
|
|
217922
217922
|
init_toolLimits();
|
|
217923
217923
|
init_growthbook();
|
|
217924
217924
|
init_debug();
|
|
217925
|
+
init_envUtils();
|
|
217925
217926
|
init_errors();
|
|
217926
217927
|
init_format2();
|
|
217927
217928
|
init_log3();
|
|
@@ -390135,7 +390136,7 @@ function getAnthropicEnvMetadata() {
|
|
|
390135
390136
|
function getBuildAgeMinutes() {
|
|
390136
390137
|
if (false)
|
|
390137
390138
|
;
|
|
390138
|
-
const buildTime = new Date("2026-05-
|
|
390139
|
+
const buildTime = new Date("2026-05-11T15:02:12.577Z").getTime();
|
|
390139
390140
|
if (isNaN(buildTime))
|
|
390140
390141
|
return;
|
|
390141
390142
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -418256,7 +418257,7 @@ function buildPrimarySection() {
|
|
|
418256
418257
|
}, undefined, false, undefined, this);
|
|
418257
418258
|
return [{
|
|
418258
418259
|
label: "Version",
|
|
418259
|
-
value: "0.8.
|
|
418260
|
+
value: "0.8.5"
|
|
418260
418261
|
}, {
|
|
418261
418262
|
label: "Session name",
|
|
418262
418263
|
value: nameValue
|
|
@@ -432551,7 +432552,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
|
|
|
432551
432552
|
return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
|
|
432552
432553
|
}
|
|
432553
432554
|
function getPublicBuildVersion() {
|
|
432554
|
-
return "0.8.
|
|
432555
|
+
return "0.8.5";
|
|
432555
432556
|
}
|
|
432556
432557
|
var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
|
|
432557
432558
|
var init_version = __esm(() => {
|
|
@@ -487647,7 +487648,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
487647
487648
|
var call62 = async () => {
|
|
487648
487649
|
return {
|
|
487649
487650
|
type: "text",
|
|
487650
|
-
value: `${"99.0.0"} (built ${"2026-05-
|
|
487651
|
+
value: `${"99.0.0"} (built ${"2026-05-11T15:02:12.577Z"})`
|
|
487651
487652
|
};
|
|
487652
487653
|
}, version2, version_default;
|
|
487653
487654
|
var init_version2 = __esm(() => {
|
|
@@ -519804,7 +519805,7 @@ function printStartupScreen(modelOverride) {
|
|
|
519804
519805
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
519805
519806
|
const cwd2 = process.cwd();
|
|
519806
519807
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
519807
|
-
const version3 = "0.8.
|
|
519808
|
+
const version3 = "0.8.5";
|
|
519808
519809
|
const bold2 = `${ESC3}1m`;
|
|
519809
519810
|
const PURPLE = rgb3(...ACCENT);
|
|
519810
519811
|
const SOFT = rgb3(...CREAM);
|
|
@@ -538078,7 +538079,7 @@ function AutoUpdater({
|
|
|
538078
538079
|
return;
|
|
538079
538080
|
}
|
|
538080
538081
|
if (false) {}
|
|
538081
|
-
const currentVersion = "0.8.
|
|
538082
|
+
const currentVersion = "0.8.5";
|
|
538082
538083
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
538083
538084
|
let latestVersion = await getLatestVersion(channel);
|
|
538084
538085
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -538431,17 +538432,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538431
538432
|
const maxVersion = await getMaxVersion();
|
|
538432
538433
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
538433
538434
|
logForDebugging2(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
538434
|
-
if (gte("0.8.
|
|
538435
|
-
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.
|
|
538435
|
+
if (gte("0.8.5", maxVersion)) {
|
|
538436
|
+
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.5"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
538436
538437
|
setUpdateAvailable(false);
|
|
538437
538438
|
return;
|
|
538438
538439
|
}
|
|
538439
538440
|
latest = maxVersion;
|
|
538440
538441
|
}
|
|
538441
|
-
const hasUpdate = latest && !gte("0.8.
|
|
538442
|
+
const hasUpdate = latest && !gte("0.8.5", latest) && !shouldSkipVersion(latest);
|
|
538442
538443
|
setUpdateAvailable(!!hasUpdate);
|
|
538443
538444
|
if (hasUpdate) {
|
|
538444
|
-
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.
|
|
538445
|
+
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.5"} -> ${latest}`);
|
|
538445
538446
|
}
|
|
538446
538447
|
};
|
|
538447
538448
|
$2[0] = t1;
|
|
@@ -538475,7 +538476,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538475
538476
|
wrap: "truncate",
|
|
538476
538477
|
children: [
|
|
538477
538478
|
"currentVersion: ",
|
|
538478
|
-
"0.8.
|
|
538479
|
+
"0.8.5"
|
|
538479
538480
|
]
|
|
538480
538481
|
}, undefined, true, undefined, this);
|
|
538481
538482
|
$2[3] = verbose;
|
|
@@ -551444,14 +551445,14 @@ function PromptInput({
|
|
|
551444
551445
|
width: "100%",
|
|
551445
551446
|
children: [
|
|
551446
551447
|
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedText, {
|
|
551447
|
-
color: "
|
|
551448
|
+
color: "userMessageBackground",
|
|
551448
551449
|
children: "▄".repeat(columns)
|
|
551449
551450
|
}, undefined, false, undefined, this),
|
|
551450
551451
|
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedBox_default, {
|
|
551451
551452
|
flexDirection: "row",
|
|
551452
551453
|
alignItems: "flex-start",
|
|
551453
551454
|
justifyContent: "flex-start",
|
|
551454
|
-
backgroundColor: "
|
|
551455
|
+
backgroundColor: "userMessageBackground",
|
|
551455
551456
|
children: [
|
|
551456
551457
|
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(PromptInputModeIndicator, {
|
|
551457
551458
|
mode,
|
|
@@ -551480,7 +551481,7 @@ function PromptInput({
|
|
|
551480
551481
|
]
|
|
551481
551482
|
}, undefined, true, undefined, this),
|
|
551482
551483
|
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedText, {
|
|
551483
|
-
color: "
|
|
551484
|
+
color: "userMessageBackground",
|
|
551484
551485
|
children: "▀".repeat(columns)
|
|
551485
551486
|
}, undefined, false, undefined, this)
|
|
551486
551487
|
]
|
|
@@ -570888,7 +570889,7 @@ function WelcomeV2() {
|
|
|
570888
570889
|
dimColor: true,
|
|
570889
570890
|
children: [
|
|
570890
570891
|
"v",
|
|
570891
|
-
"0.8.
|
|
570892
|
+
"0.8.5",
|
|
570892
570893
|
" "
|
|
570893
570894
|
]
|
|
570894
570895
|
}, undefined, true, undefined, this)
|
|
@@ -571075,7 +571076,7 @@ function WelcomeV2() {
|
|
|
571075
571076
|
dimColor: true,
|
|
571076
571077
|
children: [
|
|
571077
571078
|
"v",
|
|
571078
|
-
"0.8.
|
|
571079
|
+
"0.8.5",
|
|
571079
571080
|
" "
|
|
571080
571081
|
]
|
|
571081
571082
|
}, undefined, true, undefined, this)
|
|
@@ -571291,7 +571292,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571291
571292
|
dimColor: true,
|
|
571292
571293
|
children: [
|
|
571293
571294
|
"v",
|
|
571294
|
-
"0.8.
|
|
571295
|
+
"0.8.5",
|
|
571295
571296
|
" "
|
|
571296
571297
|
]
|
|
571297
571298
|
}, undefined, true, undefined, this);
|
|
@@ -571500,7 +571501,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571500
571501
|
dimColor: true,
|
|
571501
571502
|
children: [
|
|
571502
571503
|
"v",
|
|
571503
|
-
"0.8.
|
|
571504
|
+
"0.8.5",
|
|
571504
571505
|
" "
|
|
571505
571506
|
]
|
|
571506
571507
|
}, undefined, true, undefined, this);
|
|
@@ -588871,7 +588872,7 @@ __export(exports_update, {
|
|
|
588871
588872
|
async function update() {
|
|
588872
588873
|
if (getAPIProvider() !== "firstParty") {
|
|
588873
588874
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
588874
|
-
`) + `Current version: ${"0.8.
|
|
588875
|
+
`) + `Current version: ${"0.8.5"}
|
|
588875
588876
|
|
|
588876
588877
|
` + `To update, reinstall from npm:
|
|
588877
588878
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -588882,7 +588883,7 @@ async function update() {
|
|
|
588882
588883
|
await gracefulShutdown(0);
|
|
588883
588884
|
}
|
|
588884
588885
|
logEvent("tengu_update_check", {});
|
|
588885
|
-
writeToStdout(`Current version: ${"0.8.
|
|
588886
|
+
writeToStdout(`Current version: ${"0.8.5"}
|
|
588886
588887
|
`);
|
|
588887
588888
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
588888
588889
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -588967,8 +588968,8 @@ async function update() {
|
|
|
588967
588968
|
writeToStdout(`Verboo Code is managed by Homebrew.
|
|
588968
588969
|
`);
|
|
588969
588970
|
const latest = await getLatestVersion(channel);
|
|
588970
|
-
if (latest && !gte("0.8.
|
|
588971
|
-
writeToStdout(`Update available: ${"0.8.
|
|
588971
|
+
if (latest && !gte("0.8.5", latest)) {
|
|
588972
|
+
writeToStdout(`Update available: ${"0.8.5"} → ${latest}
|
|
588972
588973
|
`);
|
|
588973
588974
|
writeToStdout(`
|
|
588974
588975
|
`);
|
|
@@ -588984,8 +588985,8 @@ async function update() {
|
|
|
588984
588985
|
writeToStdout(`Verboo Code is managed by winget.
|
|
588985
588986
|
`);
|
|
588986
588987
|
const latest = await getLatestVersion(channel);
|
|
588987
|
-
if (latest && !gte("0.8.
|
|
588988
|
-
writeToStdout(`Update available: ${"0.8.
|
|
588988
|
+
if (latest && !gte("0.8.5", latest)) {
|
|
588989
|
+
writeToStdout(`Update available: ${"0.8.5"} → ${latest}
|
|
588989
588990
|
`);
|
|
588990
588991
|
writeToStdout(`
|
|
588991
588992
|
`);
|
|
@@ -589001,8 +589002,8 @@ async function update() {
|
|
|
589001
589002
|
writeToStdout(`Verboo Code is managed by apk.
|
|
589002
589003
|
`);
|
|
589003
589004
|
const latest = await getLatestVersion(channel);
|
|
589004
|
-
if (latest && !gte("0.8.
|
|
589005
|
-
writeToStdout(`Update available: ${"0.8.
|
|
589005
|
+
if (latest && !gte("0.8.5", latest)) {
|
|
589006
|
+
writeToStdout(`Update available: ${"0.8.5"} → ${latest}
|
|
589006
589007
|
`);
|
|
589007
589008
|
writeToStdout(`
|
|
589008
589009
|
`);
|
|
@@ -589067,11 +589068,11 @@ async function update() {
|
|
|
589067
589068
|
`);
|
|
589068
589069
|
await gracefulShutdown(1);
|
|
589069
589070
|
}
|
|
589070
|
-
if (result.latestVersion === "0.8.
|
|
589071
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589071
|
+
if (result.latestVersion === "0.8.5") {
|
|
589072
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.5"})`) + `
|
|
589072
589073
|
`);
|
|
589073
589074
|
} else {
|
|
589074
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589075
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.5"} to version ${result.latestVersion}`) + `
|
|
589075
589076
|
`);
|
|
589076
589077
|
await regenerateCompletionCache();
|
|
589077
589078
|
}
|
|
@@ -589131,12 +589132,12 @@ async function update() {
|
|
|
589131
589132
|
`);
|
|
589132
589133
|
await gracefulShutdown(1);
|
|
589133
589134
|
}
|
|
589134
|
-
if (latestVersion === "0.8.
|
|
589135
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589135
|
+
if (latestVersion === "0.8.5") {
|
|
589136
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.5"})`) + `
|
|
589136
589137
|
`);
|
|
589137
589138
|
await gracefulShutdown(0);
|
|
589138
589139
|
}
|
|
589139
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.
|
|
589140
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.5"})
|
|
589140
589141
|
`);
|
|
589141
589142
|
writeToStdout(`Installing update...
|
|
589142
589143
|
`);
|
|
@@ -589181,7 +589182,7 @@ async function update() {
|
|
|
589181
589182
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
589182
589183
|
switch (status2) {
|
|
589183
589184
|
case "success":
|
|
589184
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589185
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.5"} to version ${latestVersion}`) + `
|
|
589185
589186
|
`);
|
|
589186
589187
|
await regenerateCompletionCache();
|
|
589187
589188
|
break;
|
|
@@ -590441,7 +590442,7 @@ ${customInstructions}` : customInstructions;
|
|
|
590441
590442
|
is_native_binary: isInBundledMode()
|
|
590442
590443
|
});
|
|
590443
590444
|
logMemoryDiagnostics("start", {
|
|
590444
|
-
version: "0.8.
|
|
590445
|
+
version: "0.8.5",
|
|
590445
590446
|
debug: debug2,
|
|
590446
590447
|
debugToStderr,
|
|
590447
590448
|
print: print ?? false,
|
|
@@ -591247,7 +591248,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
591247
591248
|
pendingHookMessages
|
|
591248
591249
|
}, renderAndRun);
|
|
591249
591250
|
}
|
|
591250
|
-
}).version(`0.8.
|
|
591251
|
+
}).version(`0.8.5 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
591251
591252
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
591252
591253
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
591253
591254
|
if (canUserConfigureAdvisor()) {
|
|
@@ -591821,7 +591822,7 @@ if (false) {}
|
|
|
591821
591822
|
async function main2() {
|
|
591822
591823
|
const args = process.argv.slice(2);
|
|
591823
591824
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
591824
|
-
console.log(`${"0.8.
|
|
591825
|
+
console.log(`${"0.8.5"} (Verboo Code)`);
|
|
591825
591826
|
return;
|
|
591826
591827
|
}
|
|
591827
591828
|
if (!IS_VERBOO_CLI && args.includes("--provider")) {
|
|
@@ -591986,4 +591987,4 @@ async function main2() {
|
|
|
591986
591987
|
}
|
|
591987
591988
|
main2();
|
|
591988
591989
|
|
|
591989
|
-
//# debugId=
|
|
591990
|
+
//# debugId=AAEAF2F187F07C4C64756E2164756E21
|