@verboo/code 0.8.10 → 0.8.11
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 +49 -70
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -276947,26 +276947,6 @@ async function detectConfigurationIssues(type) {
|
|
|
276947
276947
|
}
|
|
276948
276948
|
}
|
|
276949
276949
|
}
|
|
276950
|
-
if (!isEnvTruthy(process.env.DISABLE_INSTALLATION_CHECKS)) {
|
|
276951
|
-
if (type === "npm-local" && config2.installMethod !== "local") {
|
|
276952
|
-
warnings.push({
|
|
276953
|
-
issue: `Running from local installation but config install method is '${config2.installMethod}'`,
|
|
276954
|
-
fix: `Consider using native installation: ${getCliBinaryName()} install`
|
|
276955
|
-
});
|
|
276956
|
-
}
|
|
276957
|
-
if (type === "native" && config2.installMethod !== "native") {
|
|
276958
|
-
warnings.push({
|
|
276959
|
-
issue: `Running native installation but config install method is '${config2.installMethod}'`,
|
|
276960
|
-
fix: `Run ${getCliBinaryName()} install to update configuration`
|
|
276961
|
-
});
|
|
276962
|
-
}
|
|
276963
|
-
}
|
|
276964
|
-
if (type === "npm-global" && await localInstallationExists()) {
|
|
276965
|
-
warnings.push({
|
|
276966
|
-
issue: "Local installation exists but not being used",
|
|
276967
|
-
fix: `Consider using native installation: ${getCliBinaryName()} install`
|
|
276968
|
-
});
|
|
276969
|
-
}
|
|
276970
276950
|
const existingAlias = await findClaudeAlias();
|
|
276971
276951
|
const validAlias = await findValidClaudeAlias();
|
|
276972
276952
|
if (type === "npm-local") {
|
|
@@ -277082,7 +277062,6 @@ var init_doctorDiagnostic = __esm(() => {
|
|
|
277082
277062
|
init_autoUpdater();
|
|
277083
277063
|
init_config7();
|
|
277084
277064
|
init_cwd2();
|
|
277085
|
-
init_envUtils();
|
|
277086
277065
|
init_execFileNoThrow();
|
|
277087
277066
|
init_fsOperations();
|
|
277088
277067
|
init_localInstaller();
|
|
@@ -385867,7 +385846,7 @@ function getAnthropicEnvMetadata() {
|
|
|
385867
385846
|
function getBuildAgeMinutes() {
|
|
385868
385847
|
if (false)
|
|
385869
385848
|
;
|
|
385870
|
-
const buildTime = new Date("2026-05-13T14:
|
|
385849
|
+
const buildTime = new Date("2026-05-13T14:48:48.480Z").getTime();
|
|
385871
385850
|
if (isNaN(buildTime))
|
|
385872
385851
|
return;
|
|
385873
385852
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -413986,7 +413965,7 @@ function buildPrimarySection() {
|
|
|
413986
413965
|
});
|
|
413987
413966
|
return [{
|
|
413988
413967
|
label: "Version",
|
|
413989
|
-
value: "0.8.
|
|
413968
|
+
value: "0.8.11"
|
|
413990
413969
|
}, {
|
|
413991
413970
|
label: "Session name",
|
|
413992
413971
|
value: nameValue
|
|
@@ -428281,7 +428260,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
|
|
|
428281
428260
|
return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
|
|
428282
428261
|
}
|
|
428283
428262
|
function getPublicBuildVersion() {
|
|
428284
|
-
return "0.8.
|
|
428263
|
+
return "0.8.11";
|
|
428285
428264
|
}
|
|
428286
428265
|
var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
|
|
428287
428266
|
var init_version = __esm(() => {
|
|
@@ -483377,7 +483356,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
483377
483356
|
var call62 = async () => {
|
|
483378
483357
|
return {
|
|
483379
483358
|
type: "text",
|
|
483380
|
-
value: `${"99.0.0"} (built ${"2026-05-13T14:
|
|
483359
|
+
value: `${"99.0.0"} (built ${"2026-05-13T14:48:48.480Z"})`
|
|
483381
483360
|
};
|
|
483382
483361
|
}, version2, version_default;
|
|
483383
483362
|
var init_version2 = __esm(() => {
|
|
@@ -515532,7 +515511,7 @@ function printStartupScreen(modelOverride) {
|
|
|
515532
515511
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
515533
515512
|
const cwd2 = process.cwd();
|
|
515534
515513
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
515535
|
-
const version3 = "0.8.
|
|
515514
|
+
const version3 = "0.8.11";
|
|
515536
515515
|
const bold2 = `${ESC3}1m`;
|
|
515537
515516
|
const PURPLE = rgb3(...ACCENT);
|
|
515538
515517
|
const SOFT = rgb3(...CREAM);
|
|
@@ -533766,7 +533745,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
533766
533745
|
function getSemverPart(version3) {
|
|
533767
533746
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
533768
533747
|
}
|
|
533769
|
-
function useUpdateNotification(updatedVersion, initialVersion = "0.8.
|
|
533748
|
+
function useUpdateNotification(updatedVersion, initialVersion = "0.8.11") {
|
|
533770
533749
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react223.useState(() => getSemverPart(initialVersion));
|
|
533771
533750
|
const [pendingNotification2, setPendingNotification] = import_react223.useState(null);
|
|
533772
533751
|
if (updatedVersion) {
|
|
@@ -533806,7 +533785,7 @@ function AutoUpdater({
|
|
|
533806
533785
|
return;
|
|
533807
533786
|
}
|
|
533808
533787
|
if (false) {}
|
|
533809
|
-
const currentVersion = "0.8.
|
|
533788
|
+
const currentVersion = "0.8.11";
|
|
533810
533789
|
const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
533811
533790
|
let latestVersion = await getLatestVersion(channel2);
|
|
533812
533791
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -534159,17 +534138,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
534159
534138
|
const maxVersion = await getMaxVersion();
|
|
534160
534139
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
534161
534140
|
logForDebugging2(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
534162
|
-
if (gte("0.8.
|
|
534163
|
-
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.
|
|
534141
|
+
if (gte("0.8.11", maxVersion)) {
|
|
534142
|
+
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.11"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
534164
534143
|
setUpdateAvailable(false);
|
|
534165
534144
|
return;
|
|
534166
534145
|
}
|
|
534167
534146
|
latest = maxVersion;
|
|
534168
534147
|
}
|
|
534169
|
-
const hasUpdate = latest && !gte("0.8.
|
|
534148
|
+
const hasUpdate = latest && !gte("0.8.11", latest) && !shouldSkipVersion(latest);
|
|
534170
534149
|
setUpdateAvailable(!!hasUpdate);
|
|
534171
534150
|
if (hasUpdate) {
|
|
534172
|
-
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.
|
|
534151
|
+
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.11"} -> ${latest}`);
|
|
534173
534152
|
}
|
|
534174
534153
|
};
|
|
534175
534154
|
$2[0] = t1;
|
|
@@ -534203,7 +534182,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
534203
534182
|
wrap: "truncate",
|
|
534204
534183
|
children: [
|
|
534205
534184
|
"currentVersion: ",
|
|
534206
|
-
"0.8.
|
|
534185
|
+
"0.8.11"
|
|
534207
534186
|
]
|
|
534208
534187
|
});
|
|
534209
534188
|
$2[3] = verbose;
|
|
@@ -566627,7 +566606,7 @@ function WelcomeV2() {
|
|
|
566627
566606
|
dimColor: true,
|
|
566628
566607
|
children: [
|
|
566629
566608
|
"v",
|
|
566630
|
-
"0.8.
|
|
566609
|
+
"0.8.11",
|
|
566631
566610
|
" "
|
|
566632
566611
|
]
|
|
566633
566612
|
})
|
|
@@ -566814,7 +566793,7 @@ function WelcomeV2() {
|
|
|
566814
566793
|
dimColor: true,
|
|
566815
566794
|
children: [
|
|
566816
566795
|
"v",
|
|
566817
|
-
"0.8.
|
|
566796
|
+
"0.8.11",
|
|
566818
566797
|
" "
|
|
566819
566798
|
]
|
|
566820
566799
|
})
|
|
@@ -567030,7 +567009,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
567030
567009
|
dimColor: true,
|
|
567031
567010
|
children: [
|
|
567032
567011
|
"v",
|
|
567033
|
-
"0.8.
|
|
567012
|
+
"0.8.11",
|
|
567034
567013
|
" "
|
|
567035
567014
|
]
|
|
567036
567015
|
});
|
|
@@ -567239,7 +567218,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
567239
567218
|
dimColor: true,
|
|
567240
567219
|
children: [
|
|
567241
567220
|
"v",
|
|
567242
|
-
"0.8.
|
|
567221
|
+
"0.8.11",
|
|
567243
567222
|
" "
|
|
567244
567223
|
]
|
|
567245
567224
|
});
|
|
@@ -584032,6 +584011,18 @@ function Install({
|
|
|
584032
584011
|
async function run() {
|
|
584033
584012
|
try {
|
|
584034
584013
|
logForDebugging2(`Install: Starting installation process (force=${force}, target=${target})`);
|
|
584014
|
+
setState({
|
|
584015
|
+
type: "error",
|
|
584016
|
+
message: `Native installation is not available for @verboo/code.
|
|
584017
|
+
|
|
584018
|
+
` + `Verboo Code is distributed via npm. To install or update, run:
|
|
584019
|
+
` + ` npm install -g @verboo/code@latest
|
|
584020
|
+
` + `or
|
|
584021
|
+
` + ` bun install -g @verboo/code@latest
|
|
584022
|
+
|
|
584023
|
+
` + `If you already have it installed, simply run \`verboo update\` ` + `or wait for the auto-updater (checks every 30 minutes).`
|
|
584024
|
+
});
|
|
584025
|
+
return;
|
|
584035
584026
|
const channelOrVersion = target || getInitialSettings()?.autoUpdatesChannel || "latest";
|
|
584036
584027
|
setState({
|
|
584037
584028
|
type: "installing",
|
|
@@ -584610,7 +584601,7 @@ __export(exports_update, {
|
|
|
584610
584601
|
async function update() {
|
|
584611
584602
|
if (getAPIProvider() !== "firstParty") {
|
|
584612
584603
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
584613
|
-
`) + `Current version: ${"0.8.
|
|
584604
|
+
`) + `Current version: ${"0.8.11"}
|
|
584614
584605
|
|
|
584615
584606
|
` + `To update, reinstall from npm:
|
|
584616
584607
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -584621,7 +584612,7 @@ async function update() {
|
|
|
584621
584612
|
await gracefulShutdown(0);
|
|
584622
584613
|
}
|
|
584623
584614
|
logEvent("tengu_update_check", {});
|
|
584624
|
-
writeToStdout(`Current version: ${"0.8.
|
|
584615
|
+
writeToStdout(`Current version: ${"0.8.11"}
|
|
584625
584616
|
`);
|
|
584626
584617
|
const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
584627
584618
|
writeToStdout(`Checking for updates to ${channel2} version...
|
|
@@ -584706,8 +584697,8 @@ async function update() {
|
|
|
584706
584697
|
writeToStdout(`Verboo Code is managed by Homebrew.
|
|
584707
584698
|
`);
|
|
584708
584699
|
const latest = await getLatestVersion(channel2);
|
|
584709
|
-
if (latest && !gte("0.8.
|
|
584710
|
-
writeToStdout(`Update available: ${"0.8.
|
|
584700
|
+
if (latest && !gte("0.8.11", latest)) {
|
|
584701
|
+
writeToStdout(`Update available: ${"0.8.11"} → ${latest}
|
|
584711
584702
|
`);
|
|
584712
584703
|
writeToStdout(`
|
|
584713
584704
|
`);
|
|
@@ -584723,8 +584714,8 @@ async function update() {
|
|
|
584723
584714
|
writeToStdout(`Verboo Code is managed by winget.
|
|
584724
584715
|
`);
|
|
584725
584716
|
const latest = await getLatestVersion(channel2);
|
|
584726
|
-
if (latest && !gte("0.8.
|
|
584727
|
-
writeToStdout(`Update available: ${"0.8.
|
|
584717
|
+
if (latest && !gte("0.8.11", latest)) {
|
|
584718
|
+
writeToStdout(`Update available: ${"0.8.11"} → ${latest}
|
|
584728
584719
|
`);
|
|
584729
584720
|
writeToStdout(`
|
|
584730
584721
|
`);
|
|
@@ -584740,8 +584731,8 @@ async function update() {
|
|
|
584740
584731
|
writeToStdout(`Verboo Code is managed by apk.
|
|
584741
584732
|
`);
|
|
584742
584733
|
const latest = await getLatestVersion(channel2);
|
|
584743
|
-
if (latest && !gte("0.8.
|
|
584744
|
-
writeToStdout(`Update available: ${"0.8.
|
|
584734
|
+
if (latest && !gte("0.8.11", latest)) {
|
|
584735
|
+
writeToStdout(`Update available: ${"0.8.11"} → ${latest}
|
|
584745
584736
|
`);
|
|
584746
584737
|
writeToStdout(`
|
|
584747
584738
|
`);
|
|
@@ -584763,7 +584754,6 @@ async function update() {
|
|
|
584763
584754
|
}
|
|
584764
584755
|
if (config3.installMethod && diagnostic.configInstallMethod !== "not set" && diagnostic.installationType !== "package-manager") {
|
|
584765
584756
|
const runningType = diagnostic.installationType;
|
|
584766
|
-
const configExpects = diagnostic.configInstallMethod;
|
|
584767
584757
|
const typeMapping = {
|
|
584768
584758
|
"npm-local": "local",
|
|
584769
584759
|
"npm-global": "global",
|
|
@@ -584772,23 +584762,12 @@ async function update() {
|
|
|
584772
584762
|
unknown: "unknown"
|
|
584773
584763
|
};
|
|
584774
584764
|
const normalizedRunningType = typeMapping[runningType] || runningType;
|
|
584775
|
-
if (normalizedRunningType !==
|
|
584776
|
-
writeToStdout(`
|
|
584777
|
-
`);
|
|
584778
|
-
writeToStdout(source_default.yellow("Warning: Configuration mismatch") + `
|
|
584779
|
-
`);
|
|
584780
|
-
writeToStdout(`Config expects: ${configExpects} installation
|
|
584781
|
-
`);
|
|
584782
|
-
writeToStdout(`Currently running: ${runningType}
|
|
584783
|
-
`);
|
|
584784
|
-
writeToStdout(source_default.yellow(`Updating the ${runningType} installation you are currently using`) + `
|
|
584785
|
-
`);
|
|
584765
|
+
if (normalizedRunningType !== diagnostic.configInstallMethod && diagnostic.configInstallMethod !== "unknown") {
|
|
584786
584766
|
saveGlobalConfig((current) => ({
|
|
584787
584767
|
...current,
|
|
584788
584768
|
installMethod: normalizedRunningType
|
|
584789
584769
|
}));
|
|
584790
|
-
|
|
584791
|
-
`);
|
|
584770
|
+
logForDebugging2(`update: Silently corrected installMethod ${diagnostic.configInstallMethod} → ${normalizedRunningType}`);
|
|
584792
584771
|
}
|
|
584793
584772
|
}
|
|
584794
584773
|
if (diagnostic.installationType === "native") {
|
|
@@ -584806,11 +584785,11 @@ async function update() {
|
|
|
584806
584785
|
`);
|
|
584807
584786
|
await gracefulShutdown(1);
|
|
584808
584787
|
}
|
|
584809
|
-
if (result.latestVersion === "0.8.
|
|
584810
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
584788
|
+
if (result.latestVersion === "0.8.11") {
|
|
584789
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.11"})`) + `
|
|
584811
584790
|
`);
|
|
584812
584791
|
} else {
|
|
584813
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
584792
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.11"} to version ${result.latestVersion}`) + `
|
|
584814
584793
|
`);
|
|
584815
584794
|
await regenerateCompletionCache();
|
|
584816
584795
|
}
|
|
@@ -584870,12 +584849,12 @@ async function update() {
|
|
|
584870
584849
|
`);
|
|
584871
584850
|
await gracefulShutdown(1);
|
|
584872
584851
|
}
|
|
584873
|
-
if (latestVersion === "0.8.
|
|
584874
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
584852
|
+
if (latestVersion === "0.8.11") {
|
|
584853
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.11"})`) + `
|
|
584875
584854
|
`);
|
|
584876
584855
|
await gracefulShutdown(0);
|
|
584877
584856
|
}
|
|
584878
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.
|
|
584857
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.11"})
|
|
584879
584858
|
`);
|
|
584880
584859
|
writeToStdout(`Installing update...
|
|
584881
584860
|
`);
|
|
@@ -584920,7 +584899,7 @@ async function update() {
|
|
|
584920
584899
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
584921
584900
|
switch (status2) {
|
|
584922
584901
|
case "success":
|
|
584923
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
584902
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.11"} to version ${latestVersion}`) + `
|
|
584924
584903
|
`);
|
|
584925
584904
|
await regenerateCompletionCache();
|
|
584926
584905
|
break;
|
|
@@ -586180,7 +586159,7 @@ ${customInstructions}` : customInstructions;
|
|
|
586180
586159
|
is_native_binary: isInBundledMode()
|
|
586181
586160
|
});
|
|
586182
586161
|
logMemoryDiagnostics("start", {
|
|
586183
|
-
version: "0.8.
|
|
586162
|
+
version: "0.8.11",
|
|
586184
586163
|
debug: debug2,
|
|
586185
586164
|
debugToStderr,
|
|
586186
586165
|
print: print ?? false,
|
|
@@ -586986,7 +586965,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
586986
586965
|
pendingHookMessages
|
|
586987
586966
|
}, renderAndRun);
|
|
586988
586967
|
}
|
|
586989
|
-
}).version(`0.8.
|
|
586968
|
+
}).version(`0.8.11 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
586990
586969
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
586991
586970
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
586992
586971
|
if (canUserConfigureAdvisor()) {
|
|
@@ -587560,7 +587539,7 @@ if (false) {}
|
|
|
587560
587539
|
async function main2() {
|
|
587561
587540
|
const args = process.argv.slice(2);
|
|
587562
587541
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
587563
|
-
console.log(`${"0.8.
|
|
587542
|
+
console.log(`${"0.8.11"} (Verboo Code)`);
|
|
587564
587543
|
return;
|
|
587565
587544
|
}
|
|
587566
587545
|
if (!IS_VERBOO_CLI && args.includes("--provider")) {
|
|
@@ -587725,4 +587704,4 @@ async function main2() {
|
|
|
587725
587704
|
}
|
|
587726
587705
|
main2();
|
|
587727
587706
|
|
|
587728
|
-
//# debugId=
|
|
587707
|
+
//# debugId=62ABA9B623DE985764756E2164756E21
|