@verboo/code 0.15.9 → 0.15.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +38 -39
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -117992,7 +117992,7 @@ function getClaudeCodeUserAgent() {
117992
117992
  return `claude-code/${"99.0.0"}`;
117993
117993
  }
117994
117994
  function getVerbooCodeUserAgent() {
117995
- const version2 = "0.15.9";
117995
+ const version2 = "0.15.11";
117996
117996
  return `verboo-code/${version2}`;
117997
117997
  }
117998
117998
 
@@ -194669,7 +194669,6 @@ class OpenAIShimMessages {
194669
194669
  }
194670
194670
  if (request.reasoning) {
194671
194671
  body.reasoning_effort = request.reasoning.effort;
194672
- body.effort = request.reasoning.effort;
194673
194672
  }
194674
194673
  const maxTokensValue = typeof params.max_tokens === "number" && params.max_tokens > 0 ? params.max_tokens : undefined;
194675
194674
  const maxCompletionTokensValue = typeof params.max_completion_tokens === "number" ? params.max_completion_tokens : undefined;
@@ -390235,7 +390234,7 @@ function getAnthropicEnvMetadata() {
390235
390234
  function getBuildAgeMinutes() {
390236
390235
  if (false)
390237
390236
  ;
390238
- const buildTime = new Date("2026-08-08T21:47:37.595Z").getTime();
390237
+ const buildTime = new Date("2026-08-09T05:34:07.656Z").getTime();
390239
390238
  if (isNaN(buildTime))
390240
390239
  return;
390241
390240
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -431923,7 +431922,7 @@ function buildPrimarySection() {
431923
431922
  });
431924
431923
  return [{
431925
431924
  label: "Version",
431926
- value: "0.15.9"
431925
+ value: "0.15.11"
431927
431926
  }, {
431928
431927
  label: "Session name",
431929
431928
  value: nameValue
@@ -445809,7 +445808,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
445809
445808
  return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
445810
445809
  }
445811
445810
  function getPublicBuildVersion() {
445812
- return "0.15.9";
445811
+ return "0.15.11";
445813
445812
  }
445814
445813
  var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
445815
445814
  var init_version = __esm(() => {
@@ -497203,7 +497202,7 @@ var init_bridge_kick = __esm(() => {
497203
497202
  var call66 = async () => {
497204
497203
  return {
497205
497204
  type: "text",
497206
- value: `${"99.0.0"} (built ${"2026-08-08T21:47:37.595Z"})`
497205
+ value: `${"99.0.0"} (built ${"2026-08-09T05:34:07.656Z"})`
497207
497206
  };
497208
497207
  }, version2, version_default;
497209
497208
  var init_version2 = __esm(() => {
@@ -521450,9 +521449,9 @@ function renderStartupScreen(p, version3, displayCwd, columns) {
521450
521449
  const shownVersion = truncateStartupText(version3, Math.max(1, columns - 22));
521451
521450
  const model2 = truncateStartupText(providerAndModel, Math.max(1, columns - statusLabel.length - 10));
521452
521451
  const cwd2 = truncateStartupText(displayCwd, Math.max(1, columns - 5));
521453
- out.push(` ${PURPLE}╭${RESET2} \uD83D\uDC7B ${bold2}${PURPLE}Verboo Code${RESET2} ${DIMP}v${shownVersion}${RESET2}`);
521454
- out.push(` ${PURPLE}│${RESET2} ${STATUS_C}●${RESET2} ${DIMP}${model2} · ${statusLabel}${RESET2}`);
521455
- out.push(` ${PURPLE}╰${RESET2} ${DIMP}${cwd2}${RESET2}`);
521452
+ out.push(` \uD83D\uDC7B ${bold2}${PURPLE}Verboo Code${RESET2} ${DIMP}v${shownVersion}${RESET2}`);
521453
+ out.push(` ${STATUS_C}●${RESET2} ${DIMP}${model2} · ${statusLabel}${RESET2}`);
521454
+ out.push(` ${DIMP}${cwd2}${RESET2}`);
521456
521455
  out.push("");
521457
521456
  return `${out.join(`
521458
521457
  `)}
@@ -521465,7 +521464,7 @@ function printStartupScreen(modelOverride) {
521465
521464
  const home = process.env.HOME || process.env.USERPROFILE || "";
521466
521465
  const cwd2 = process.cwd();
521467
521466
  const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
521468
- const version3 = "0.15.9";
521467
+ const version3 = "0.15.11";
521469
521468
  const columns = process.stdout.columns ?? STARTUP_DEFAULT_COLUMNS;
521470
521469
  process.stdout.write(renderStartupScreen(p, version3, displayCwd, columns));
521471
521470
  }
@@ -540694,7 +540693,7 @@ var init_routerRateLimitHook = __esm(() => {
540694
540693
  function getSemverPart(version3) {
540695
540694
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
540696
540695
  }
540697
- function useUpdateNotification(updatedVersion, initialVersion = "0.15.9") {
540696
+ function useUpdateNotification(updatedVersion, initialVersion = "0.15.11") {
540698
540697
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react227.useState(() => getSemverPart(initialVersion));
540699
540698
  const [pendingNotification2, setPendingNotification] = import_react227.useState(null);
540700
540699
  if (updatedVersion) {
@@ -540734,7 +540733,7 @@ function AutoUpdater({
540734
540733
  return;
540735
540734
  }
540736
540735
  if (false) {}
540737
- const currentVersion = "0.15.9";
540736
+ const currentVersion = "0.15.11";
540738
540737
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
540739
540738
  let latestVersion = await getLatestVersion(channel2);
540740
540739
  const isDisabled = isAutoUpdaterDisabled();
@@ -541087,17 +541086,17 @@ function PackageManagerAutoUpdater(t0) {
541087
541086
  const maxVersion = await getMaxVersion();
541088
541087
  if (maxVersion && latest && gt(latest, maxVersion)) {
541089
541088
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
541090
- if (gte("0.15.9", maxVersion)) {
541091
- logForDebugging(`PackageManagerAutoUpdater: current version ${"0.15.9"} is already at or above maxVersion ${maxVersion}, skipping update`);
541089
+ if (gte("0.15.11", maxVersion)) {
541090
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"0.15.11"} is already at or above maxVersion ${maxVersion}, skipping update`);
541092
541091
  setUpdateAvailable(false);
541093
541092
  return;
541094
541093
  }
541095
541094
  latest = maxVersion;
541096
541095
  }
541097
- const hasUpdate = latest && !gte("0.15.9", latest) && !shouldSkipVersion(latest);
541096
+ const hasUpdate = latest && !gte("0.15.11", latest) && !shouldSkipVersion(latest);
541098
541097
  setUpdateAvailable(!!hasUpdate);
541099
541098
  if (hasUpdate) {
541100
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.15.9"} -> ${latest}`);
541099
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.15.11"} -> ${latest}`);
541101
541100
  }
541102
541101
  };
541103
541102
  $2[0] = t1;
@@ -541131,7 +541130,7 @@ function PackageManagerAutoUpdater(t0) {
541131
541130
  wrap: "truncate",
541132
541131
  children: [
541133
541132
  "currentVersion: ",
541134
- "0.15.9"
541133
+ "0.15.11"
541135
541134
  ]
541136
541135
  });
541137
541136
  $2[3] = verbose;
@@ -554381,7 +554380,7 @@ function PromptInput({
554381
554380
  children: /* @__PURE__ */ jsx_runtime441.jsx(ThemedBox_default, {
554382
554381
  borderStyle: "round",
554383
554382
  borderColor: getBorderColor(),
554384
- borderText: buildPromptBorderText(mode),
554383
+ borderText: mode === "bash" ? buildPromptBorderText(mode) : undefined,
554385
554384
  paddingLeft: 1,
554386
554385
  width: "100%",
554387
554386
  children: /* @__PURE__ */ jsx_runtime441.jsxs(ThemedBox_default, {
@@ -557174,10 +557173,10 @@ async function autoUpdateCliInBackground() {
557174
557173
  return;
557175
557174
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
557176
557175
  const latest = await getLatestVersion(channel2);
557177
- if (!latest || gte("0.15.9", latest))
557176
+ if (!latest || gte("0.15.11", latest))
557178
557177
  return;
557179
557178
  writeToStdout(`
557180
- Nova versão disponível: ${latest} (atual: ${"0.15.9"})
557179
+ Nova versão disponível: ${latest} (atual: ${"0.15.11"})
557181
557180
  `);
557182
557181
  writeToStdout(`Atualizando automaticamente...
557183
557182
  `);
@@ -575356,7 +575355,7 @@ var init_ApproveApiKey = __esm(() => {
575356
575355
 
575357
575356
  // src/components/LogoV2/WelcomeV2.tsx
575358
575357
  function WelcomeV2() {
575359
- const version3 = "0.15.9";
575358
+ const version3 = "0.15.11";
575360
575359
  return /* @__PURE__ */ jsx_runtime480.jsxs(ThemedBox_default, {
575361
575360
  flexDirection: "column",
575362
575361
  marginY: 1,
@@ -593664,7 +593663,7 @@ __export(exports_update, {
593664
593663
  });
593665
593664
  async function update() {
593666
593665
  logEvent("tengu_update_check", {});
593667
- writeToStdout(`Current version: ${"0.15.9"}
593666
+ writeToStdout(`Current version: ${"0.15.11"}
593668
593667
  `);
593669
593668
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
593670
593669
  writeToStdout(`Checking for updates to ${channel2} version...
@@ -593749,8 +593748,8 @@ async function update() {
593749
593748
  writeToStdout(`Verboo Code is managed by Homebrew.
593750
593749
  `);
593751
593750
  const latest = await getLatestVersion(channel2);
593752
- if (latest && !gte("0.15.9", latest)) {
593753
- writeToStdout(`Update available: ${"0.15.9"} → ${latest}
593751
+ if (latest && !gte("0.15.11", latest)) {
593752
+ writeToStdout(`Update available: ${"0.15.11"} → ${latest}
593754
593753
  `);
593755
593754
  writeToStdout(`
593756
593755
  `);
@@ -593766,8 +593765,8 @@ async function update() {
593766
593765
  writeToStdout(`Verboo Code is managed by winget.
593767
593766
  `);
593768
593767
  const latest = await getLatestVersion(channel2);
593769
- if (latest && !gte("0.15.9", latest)) {
593770
- writeToStdout(`Update available: ${"0.15.9"} → ${latest}
593768
+ if (latest && !gte("0.15.11", latest)) {
593769
+ writeToStdout(`Update available: ${"0.15.11"} → ${latest}
593771
593770
  `);
593772
593771
  writeToStdout(`
593773
593772
  `);
@@ -593783,8 +593782,8 @@ async function update() {
593783
593782
  writeToStdout(`Verboo Code is managed by apk.
593784
593783
  `);
593785
593784
  const latest = await getLatestVersion(channel2);
593786
- if (latest && !gte("0.15.9", latest)) {
593787
- writeToStdout(`Update available: ${"0.15.9"} → ${latest}
593785
+ if (latest && !gte("0.15.11", latest)) {
593786
+ writeToStdout(`Update available: ${"0.15.11"} → ${latest}
593788
593787
  `);
593789
593788
  writeToStdout(`
593790
593789
  `);
@@ -593837,11 +593836,11 @@ async function update() {
593837
593836
  `);
593838
593837
  await gracefulShutdown(1);
593839
593838
  }
593840
- if (result.latestVersion === "0.15.9") {
593841
- writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.9"})`) + `
593839
+ if (result.latestVersion === "0.15.11") {
593840
+ writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.11"})`) + `
593842
593841
  `);
593843
593842
  } else {
593844
- writeToStdout(source_default.green(`Successfully updated from ${"0.15.9"} to version ${result.latestVersion}`) + `
593843
+ writeToStdout(source_default.green(`Successfully updated from ${"0.15.11"} to version ${result.latestVersion}`) + `
593845
593844
  `);
593846
593845
  await regenerateCompletionCache();
593847
593846
  }
@@ -593901,12 +593900,12 @@ async function update() {
593901
593900
  `);
593902
593901
  await gracefulShutdown(1);
593903
593902
  }
593904
- if (latestVersion === "0.15.9") {
593905
- writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.9"})`) + `
593903
+ if (latestVersion === "0.15.11") {
593904
+ writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.11"})`) + `
593906
593905
  `);
593907
593906
  await gracefulShutdown(0);
593908
593907
  }
593909
- writeToStdout(`New version available: ${latestVersion} (current: ${"0.15.9"})
593908
+ writeToStdout(`New version available: ${latestVersion} (current: ${"0.15.11"})
593910
593909
  `);
593911
593910
  writeToStdout(`Installing update...
593912
593911
  `);
@@ -593951,7 +593950,7 @@ async function update() {
593951
593950
  logForDebugging(`update: Installation status: ${status2}`);
593952
593951
  switch (status2) {
593953
593952
  case "success":
593954
- writeToStdout(source_default.green(`Successfully updated from ${"0.15.9"} to version ${latestVersion}`) + `
593953
+ writeToStdout(source_default.green(`Successfully updated from ${"0.15.11"} to version ${latestVersion}`) + `
593955
593954
  `);
593956
593955
  await regenerateCompletionCache();
593957
593956
  break;
@@ -595270,7 +595269,7 @@ ${customInstructions}` : customInstructions;
595270
595269
  is_native_binary: isInBundledMode()
595271
595270
  });
595272
595271
  logMemoryDiagnostics("start", {
595273
- version: "0.15.9",
595272
+ version: "0.15.11",
595274
595273
  debug: debug2,
595275
595274
  debugToStderr,
595276
595275
  print: print ?? false,
@@ -596081,7 +596080,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
596081
596080
  pendingHookMessages
596082
596081
  }, renderAndRun);
596083
596082
  }
596084
- }).version(`0.15.9 (${cliDesc})`, "-v, --version", "Output the version number");
596083
+ }).version(`0.15.11 (${cliDesc})`, "-v, --version", "Output the version number");
596085
596084
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
596086
596085
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
596087
596086
  if (canUserConfigureAdvisor()) {
@@ -596662,7 +596661,7 @@ if (false) {}
596662
596661
  async function main2() {
596663
596662
  const args = process.argv.slice(2);
596664
596663
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
596665
- console.log(`${"0.15.9"} (Verboo Code)`);
596664
+ console.log(`${"0.15.11"} (Verboo Code)`);
596666
596665
  return;
596667
596666
  }
596668
596667
  if (!IS_VERBOO_CLI && args.includes("--provider")) {
@@ -596836,4 +596835,4 @@ async function main2() {
596836
596835
  }
596837
596836
  main2();
596838
596837
 
596839
- //# debugId=58B07E27F76C846E64756E2164756E21
596838
+ //# debugId=C1893523CCE7EC6064756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verboo/code",
3
- "version": "0.15.9",
3
+ "version": "0.15.11",
4
4
  "description": "Verboo Code — coding agent for the Verboo platform",
5
5
  "type": "module",
6
6
  "bin": {