@verboo/code 0.8.2 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +39 -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-11T14:07:53.389Z").getTime();
|
|
390139
390140
|
if (isNaN(buildTime))
|
|
390140
390141
|
return;
|
|
390141
390142
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -402573,11 +402574,11 @@ function cachePluginSettings(plugins) {
|
|
|
402573
402574
|
}
|
|
402574
402575
|
}
|
|
402575
402576
|
function areExternalPluginsDisabledForVerboo() {
|
|
402576
|
-
return
|
|
402577
|
+
return isEnvTruthy(process.env.VERBOO_DISABLE_PLUGINS);
|
|
402577
402578
|
}
|
|
402578
402579
|
function getEmptyPluginLoadResultForVerboo() {
|
|
402579
402580
|
cachePluginSettings([]);
|
|
402580
|
-
logForDebugging2("
|
|
402581
|
+
logForDebugging2("External plugins disabled via VERBOO_DISABLE_PLUGINS=1");
|
|
402581
402582
|
return { enabled: [], disabled: [], errors: [] };
|
|
402582
402583
|
}
|
|
402583
402584
|
function isRecord2(value) {
|
|
@@ -402587,7 +402588,6 @@ var PluginSettingsSchema, loadAllPlugins, loadAllPluginsCacheOnly;
|
|
|
402587
402588
|
var init_pluginLoader = __esm(() => {
|
|
402588
402589
|
init_memoize();
|
|
402589
402590
|
init_state();
|
|
402590
|
-
init_oauth();
|
|
402591
402591
|
init_builtinPlugins();
|
|
402592
402592
|
init_debug();
|
|
402593
402593
|
init_envUtils();
|
|
@@ -418257,7 +418257,7 @@ function buildPrimarySection() {
|
|
|
418257
418257
|
}, undefined, false, undefined, this);
|
|
418258
418258
|
return [{
|
|
418259
418259
|
label: "Version",
|
|
418260
|
-
value: "0.8.
|
|
418260
|
+
value: "0.8.4"
|
|
418261
418261
|
}, {
|
|
418262
418262
|
label: "Session name",
|
|
418263
418263
|
value: nameValue
|
|
@@ -432552,7 +432552,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
|
|
|
432552
432552
|
return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
|
|
432553
432553
|
}
|
|
432554
432554
|
function getPublicBuildVersion() {
|
|
432555
|
-
return "0.8.
|
|
432555
|
+
return "0.8.4";
|
|
432556
432556
|
}
|
|
432557
432557
|
var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
|
|
432558
432558
|
var init_version = __esm(() => {
|
|
@@ -487648,7 +487648,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
487648
487648
|
var call62 = async () => {
|
|
487649
487649
|
return {
|
|
487650
487650
|
type: "text",
|
|
487651
|
-
value: `${"99.0.0"} (built ${"2026-05-
|
|
487651
|
+
value: `${"99.0.0"} (built ${"2026-05-11T14:07:53.389Z"})`
|
|
487652
487652
|
};
|
|
487653
487653
|
}, version2, version_default;
|
|
487654
487654
|
var init_version2 = __esm(() => {
|
|
@@ -519805,7 +519805,7 @@ function printStartupScreen(modelOverride) {
|
|
|
519805
519805
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
519806
519806
|
const cwd2 = process.cwd();
|
|
519807
519807
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
519808
|
-
const version3 = "0.8.
|
|
519808
|
+
const version3 = "0.8.4";
|
|
519809
519809
|
const bold2 = `${ESC3}1m`;
|
|
519810
519810
|
const PURPLE = rgb3(...ACCENT);
|
|
519811
519811
|
const SOFT = rgb3(...CREAM);
|
|
@@ -538079,7 +538079,7 @@ function AutoUpdater({
|
|
|
538079
538079
|
return;
|
|
538080
538080
|
}
|
|
538081
538081
|
if (false) {}
|
|
538082
|
-
const currentVersion = "0.8.
|
|
538082
|
+
const currentVersion = "0.8.4";
|
|
538083
538083
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
538084
538084
|
let latestVersion = await getLatestVersion(channel);
|
|
538085
538085
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -538432,17 +538432,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538432
538432
|
const maxVersion = await getMaxVersion();
|
|
538433
538433
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
538434
538434
|
logForDebugging2(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
538435
|
-
if (gte("0.8.
|
|
538436
|
-
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.
|
|
538435
|
+
if (gte("0.8.4", maxVersion)) {
|
|
538436
|
+
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.4"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
538437
538437
|
setUpdateAvailable(false);
|
|
538438
538438
|
return;
|
|
538439
538439
|
}
|
|
538440
538440
|
latest = maxVersion;
|
|
538441
538441
|
}
|
|
538442
|
-
const hasUpdate = latest && !gte("0.8.
|
|
538442
|
+
const hasUpdate = latest && !gte("0.8.4", latest) && !shouldSkipVersion(latest);
|
|
538443
538443
|
setUpdateAvailable(!!hasUpdate);
|
|
538444
538444
|
if (hasUpdate) {
|
|
538445
|
-
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.
|
|
538445
|
+
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.4"} -> ${latest}`);
|
|
538446
538446
|
}
|
|
538447
538447
|
};
|
|
538448
538448
|
$2[0] = t1;
|
|
@@ -538476,7 +538476,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538476
538476
|
wrap: "truncate",
|
|
538477
538477
|
children: [
|
|
538478
538478
|
"currentVersion: ",
|
|
538479
|
-
"0.8.
|
|
538479
|
+
"0.8.4"
|
|
538480
538480
|
]
|
|
538481
538481
|
}, undefined, true, undefined, this);
|
|
538482
538482
|
$2[3] = verbose;
|
|
@@ -570889,7 +570889,7 @@ function WelcomeV2() {
|
|
|
570889
570889
|
dimColor: true,
|
|
570890
570890
|
children: [
|
|
570891
570891
|
"v",
|
|
570892
|
-
"0.8.
|
|
570892
|
+
"0.8.4",
|
|
570893
570893
|
" "
|
|
570894
570894
|
]
|
|
570895
570895
|
}, undefined, true, undefined, this)
|
|
@@ -571076,7 +571076,7 @@ function WelcomeV2() {
|
|
|
571076
571076
|
dimColor: true,
|
|
571077
571077
|
children: [
|
|
571078
571078
|
"v",
|
|
571079
|
-
"0.8.
|
|
571079
|
+
"0.8.4",
|
|
571080
571080
|
" "
|
|
571081
571081
|
]
|
|
571082
571082
|
}, undefined, true, undefined, this)
|
|
@@ -571292,7 +571292,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571292
571292
|
dimColor: true,
|
|
571293
571293
|
children: [
|
|
571294
571294
|
"v",
|
|
571295
|
-
"0.8.
|
|
571295
|
+
"0.8.4",
|
|
571296
571296
|
" "
|
|
571297
571297
|
]
|
|
571298
571298
|
}, undefined, true, undefined, this);
|
|
@@ -571501,7 +571501,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571501
571501
|
dimColor: true,
|
|
571502
571502
|
children: [
|
|
571503
571503
|
"v",
|
|
571504
|
-
"0.8.
|
|
571504
|
+
"0.8.4",
|
|
571505
571505
|
" "
|
|
571506
571506
|
]
|
|
571507
571507
|
}, undefined, true, undefined, this);
|
|
@@ -588872,7 +588872,7 @@ __export(exports_update, {
|
|
|
588872
588872
|
async function update() {
|
|
588873
588873
|
if (getAPIProvider() !== "firstParty") {
|
|
588874
588874
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
588875
|
-
`) + `Current version: ${"0.8.
|
|
588875
|
+
`) + `Current version: ${"0.8.4"}
|
|
588876
588876
|
|
|
588877
588877
|
` + `To update, reinstall from npm:
|
|
588878
588878
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -588883,7 +588883,7 @@ async function update() {
|
|
|
588883
588883
|
await gracefulShutdown(0);
|
|
588884
588884
|
}
|
|
588885
588885
|
logEvent("tengu_update_check", {});
|
|
588886
|
-
writeToStdout(`Current version: ${"0.8.
|
|
588886
|
+
writeToStdout(`Current version: ${"0.8.4"}
|
|
588887
588887
|
`);
|
|
588888
588888
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
588889
588889
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -588968,8 +588968,8 @@ async function update() {
|
|
|
588968
588968
|
writeToStdout(`Verboo Code is managed by Homebrew.
|
|
588969
588969
|
`);
|
|
588970
588970
|
const latest = await getLatestVersion(channel);
|
|
588971
|
-
if (latest && !gte("0.8.
|
|
588972
|
-
writeToStdout(`Update available: ${"0.8.
|
|
588971
|
+
if (latest && !gte("0.8.4", latest)) {
|
|
588972
|
+
writeToStdout(`Update available: ${"0.8.4"} → ${latest}
|
|
588973
588973
|
`);
|
|
588974
588974
|
writeToStdout(`
|
|
588975
588975
|
`);
|
|
@@ -588985,8 +588985,8 @@ async function update() {
|
|
|
588985
588985
|
writeToStdout(`Verboo Code is managed by winget.
|
|
588986
588986
|
`);
|
|
588987
588987
|
const latest = await getLatestVersion(channel);
|
|
588988
|
-
if (latest && !gte("0.8.
|
|
588989
|
-
writeToStdout(`Update available: ${"0.8.
|
|
588988
|
+
if (latest && !gte("0.8.4", latest)) {
|
|
588989
|
+
writeToStdout(`Update available: ${"0.8.4"} → ${latest}
|
|
588990
588990
|
`);
|
|
588991
588991
|
writeToStdout(`
|
|
588992
588992
|
`);
|
|
@@ -589002,8 +589002,8 @@ async function update() {
|
|
|
589002
589002
|
writeToStdout(`Verboo Code is managed by apk.
|
|
589003
589003
|
`);
|
|
589004
589004
|
const latest = await getLatestVersion(channel);
|
|
589005
|
-
if (latest && !gte("0.8.
|
|
589006
|
-
writeToStdout(`Update available: ${"0.8.
|
|
589005
|
+
if (latest && !gte("0.8.4", latest)) {
|
|
589006
|
+
writeToStdout(`Update available: ${"0.8.4"} → ${latest}
|
|
589007
589007
|
`);
|
|
589008
589008
|
writeToStdout(`
|
|
589009
589009
|
`);
|
|
@@ -589068,11 +589068,11 @@ async function update() {
|
|
|
589068
589068
|
`);
|
|
589069
589069
|
await gracefulShutdown(1);
|
|
589070
589070
|
}
|
|
589071
|
-
if (result.latestVersion === "0.8.
|
|
589072
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589071
|
+
if (result.latestVersion === "0.8.4") {
|
|
589072
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.4"})`) + `
|
|
589073
589073
|
`);
|
|
589074
589074
|
} else {
|
|
589075
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589075
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.4"} to version ${result.latestVersion}`) + `
|
|
589076
589076
|
`);
|
|
589077
589077
|
await regenerateCompletionCache();
|
|
589078
589078
|
}
|
|
@@ -589132,12 +589132,12 @@ async function update() {
|
|
|
589132
589132
|
`);
|
|
589133
589133
|
await gracefulShutdown(1);
|
|
589134
589134
|
}
|
|
589135
|
-
if (latestVersion === "0.8.
|
|
589136
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589135
|
+
if (latestVersion === "0.8.4") {
|
|
589136
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.4"})`) + `
|
|
589137
589137
|
`);
|
|
589138
589138
|
await gracefulShutdown(0);
|
|
589139
589139
|
}
|
|
589140
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.
|
|
589140
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.4"})
|
|
589141
589141
|
`);
|
|
589142
589142
|
writeToStdout(`Installing update...
|
|
589143
589143
|
`);
|
|
@@ -589182,7 +589182,7 @@ async function update() {
|
|
|
589182
589182
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
589183
589183
|
switch (status2) {
|
|
589184
589184
|
case "success":
|
|
589185
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589185
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.4"} to version ${latestVersion}`) + `
|
|
589186
589186
|
`);
|
|
589187
589187
|
await regenerateCompletionCache();
|
|
589188
589188
|
break;
|
|
@@ -590442,7 +590442,7 @@ ${customInstructions}` : customInstructions;
|
|
|
590442
590442
|
is_native_binary: isInBundledMode()
|
|
590443
590443
|
});
|
|
590444
590444
|
logMemoryDiagnostics("start", {
|
|
590445
|
-
version: "0.8.
|
|
590445
|
+
version: "0.8.4",
|
|
590446
590446
|
debug: debug2,
|
|
590447
590447
|
debugToStderr,
|
|
590448
590448
|
print: print ?? false,
|
|
@@ -591248,7 +591248,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
591248
591248
|
pendingHookMessages
|
|
591249
591249
|
}, renderAndRun);
|
|
591250
591250
|
}
|
|
591251
|
-
}).version(`0.8.
|
|
591251
|
+
}).version(`0.8.4 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
591252
591252
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
591253
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.");
|
|
591254
591254
|
if (canUserConfigureAdvisor()) {
|
|
@@ -591822,7 +591822,7 @@ if (false) {}
|
|
|
591822
591822
|
async function main2() {
|
|
591823
591823
|
const args = process.argv.slice(2);
|
|
591824
591824
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
591825
|
-
console.log(`${"0.8.
|
|
591825
|
+
console.log(`${"0.8.4"} (Verboo Code)`);
|
|
591826
591826
|
return;
|
|
591827
591827
|
}
|
|
591828
591828
|
if (!IS_VERBOO_CLI && args.includes("--provider")) {
|
|
@@ -591987,4 +591987,4 @@ async function main2() {
|
|
|
591987
591987
|
}
|
|
591988
591988
|
main2();
|
|
591989
591989
|
|
|
591990
|
-
//# debugId=
|
|
591990
|
+
//# debugId=9409C2CCD4E2BEF664756E2164756E21
|