@verboo/code 0.8.2 → 0.8.3

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