@verboo/code 0.10.4 → 0.10.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +38 -37
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -173421,7 +173421,8 @@ function normalizeSchemaForOpenAI(schema, strict = true) {
173421
173421
  return record2;
173422
173422
  }
173423
173423
  function convertTools(tools, options2 = {}) {
173424
- const strict = true;
173424
+ const isGemini = isGeminiMode();
173425
+ const strict = !isGemini && !isEnvTruthy(process.env.VERBOO_DISABLE_STRICT_TOOLS ?? process.env.OPENCLAUDE_DISABLE_STRICT_TOOLS) && !options2.skipStrict;
173425
173426
  return tools.filter((t) => t.name !== "ToolSearchTool").map((t) => {
173426
173427
  const schema = { ...t.input_schema ?? { type: "object", properties: {} } };
173427
173428
  if (t.name === "Agent" && schema.properties) {
@@ -389400,7 +389401,7 @@ function getAnthropicEnvMetadata() {
389400
389401
  function getBuildAgeMinutes() {
389401
389402
  if (false)
389402
389403
  ;
389403
- const buildTime = new Date("2026-06-17T11:48:50.493Z").getTime();
389404
+ const buildTime = new Date("2026-06-17T17:49:56.516Z").getTime();
389404
389405
  if (isNaN(buildTime))
389405
389406
  return;
389406
389407
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -417630,7 +417631,7 @@ function buildPrimarySection() {
417630
417631
  });
417631
417632
  return [{
417632
417633
  label: "Version",
417633
- value: "0.10.4"
417634
+ value: "0.10.5"
417634
417635
  }, {
417635
417636
  label: "Session name",
417636
417637
  value: nameValue
@@ -430558,7 +430559,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
430558
430559
  return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
430559
430560
  }
430560
430561
  function getPublicBuildVersion() {
430561
- return "0.10.4";
430562
+ return "0.10.5";
430562
430563
  }
430563
430564
  var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
430564
430565
  var init_version = __esm(() => {
@@ -485902,7 +485903,7 @@ var init_bridge_kick = __esm(() => {
485902
485903
  var call63 = async () => {
485903
485904
  return {
485904
485905
  type: "text",
485905
- value: `${"99.0.0"} (built ${"2026-06-17T11:48:50.493Z"})`
485906
+ value: `${"99.0.0"} (built ${"2026-06-17T17:49:56.516Z"})`
485906
485907
  };
485907
485908
  }, version2, version_default;
485908
485909
  var init_version2 = __esm(() => {
@@ -518146,7 +518147,7 @@ function printStartupScreen(modelOverride) {
518146
518147
  const home = process.env.HOME || process.env.USERPROFILE || "";
518147
518148
  const cwd2 = process.cwd();
518148
518149
  const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
518149
- const version3 = "0.10.4";
518150
+ const version3 = "0.10.5";
518150
518151
  const bold2 = `${ESC4}1m`;
518151
518152
  const PURPLE = rgb3(...ACCENT);
518152
518153
  const SOFT = rgb3(...CREAM);
@@ -536438,7 +536439,7 @@ var init_routerRateLimitHook = __esm(() => {
536438
536439
  function getSemverPart(version3) {
536439
536440
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
536440
536441
  }
536441
- function useUpdateNotification(updatedVersion, initialVersion = "0.10.4") {
536442
+ function useUpdateNotification(updatedVersion, initialVersion = "0.10.5") {
536442
536443
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react225.useState(() => getSemverPart(initialVersion));
536443
536444
  const [pendingNotification2, setPendingNotification] = import_react225.useState(null);
536444
536445
  if (updatedVersion) {
@@ -536478,7 +536479,7 @@ function AutoUpdater({
536478
536479
  return;
536479
536480
  }
536480
536481
  if (false) {}
536481
- const currentVersion = "0.10.4";
536482
+ const currentVersion = "0.10.5";
536482
536483
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
536483
536484
  let latestVersion = await getLatestVersion(channel2);
536484
536485
  const isDisabled = isAutoUpdaterDisabled();
@@ -536831,17 +536832,17 @@ function PackageManagerAutoUpdater(t0) {
536831
536832
  const maxVersion = await getMaxVersion();
536832
536833
  if (maxVersion && latest && gt(latest, maxVersion)) {
536833
536834
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
536834
- if (gte("0.10.4", maxVersion)) {
536835
- logForDebugging(`PackageManagerAutoUpdater: current version ${"0.10.4"} is already at or above maxVersion ${maxVersion}, skipping update`);
536835
+ if (gte("0.10.5", maxVersion)) {
536836
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"0.10.5"} is already at or above maxVersion ${maxVersion}, skipping update`);
536836
536837
  setUpdateAvailable(false);
536837
536838
  return;
536838
536839
  }
536839
536840
  latest = maxVersion;
536840
536841
  }
536841
- const hasUpdate = latest && !gte("0.10.4", latest) && !shouldSkipVersion(latest);
536842
+ const hasUpdate = latest && !gte("0.10.5", latest) && !shouldSkipVersion(latest);
536842
536843
  setUpdateAvailable(!!hasUpdate);
536843
536844
  if (hasUpdate) {
536844
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.10.4"} -> ${latest}`);
536845
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.10.5"} -> ${latest}`);
536845
536846
  }
536846
536847
  };
536847
536848
  $2[0] = t1;
@@ -536875,7 +536876,7 @@ function PackageManagerAutoUpdater(t0) {
536875
536876
  wrap: "truncate",
536876
536877
  children: [
536877
536878
  "currentVersion: ",
536878
- "0.10.4"
536879
+ "0.10.5"
536879
536880
  ]
536880
536881
  });
536881
536882
  $2[3] = verbose;
@@ -552648,10 +552649,10 @@ async function autoUpdateCliInBackground() {
552648
552649
  return;
552649
552650
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
552650
552651
  const latest = await getLatestVersion(channel2);
552651
- if (!latest || gte("0.10.4", latest))
552652
+ if (!latest || gte("0.10.5", latest))
552652
552653
  return;
552653
552654
  writeToStdout(`
552654
- Nova versão disponível: ${latest} (atual: ${"0.10.4"})
552655
+ Nova versão disponível: ${latest} (atual: ${"0.10.5"})
552655
552656
  `);
552656
552657
  writeToStdout(`Atualizando automaticamente...
552657
552658
  `);
@@ -569377,7 +569378,7 @@ function WelcomeV2() {
569377
569378
  dimColor: true,
569378
569379
  children: [
569379
569380
  "v",
569380
- "0.10.4",
569381
+ "0.10.5",
569381
569382
  " "
569382
569383
  ]
569383
569384
  })
@@ -569564,7 +569565,7 @@ function WelcomeV2() {
569564
569565
  dimColor: true,
569565
569566
  children: [
569566
569567
  "v",
569567
- "0.10.4",
569568
+ "0.10.5",
569568
569569
  " "
569569
569570
  ]
569570
569571
  })
@@ -569780,7 +569781,7 @@ function AppleTerminalWelcomeV2(t0) {
569780
569781
  dimColor: true,
569781
569782
  children: [
569782
569783
  "v",
569783
- "0.10.4",
569784
+ "0.10.5",
569784
569785
  " "
569785
569786
  ]
569786
569787
  });
@@ -569989,7 +569990,7 @@ function AppleTerminalWelcomeV2(t0) {
569989
569990
  dimColor: true,
569990
569991
  children: [
569991
569992
  "v",
569992
- "0.10.4",
569993
+ "0.10.5",
569993
569994
  " "
569994
569995
  ]
569995
569996
  });
@@ -587398,7 +587399,7 @@ __export(exports_update, {
587398
587399
  });
587399
587400
  async function update() {
587400
587401
  logEvent("tengu_update_check", {});
587401
- writeToStdout(`Current version: ${"0.10.4"}
587402
+ writeToStdout(`Current version: ${"0.10.5"}
587402
587403
  `);
587403
587404
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
587404
587405
  writeToStdout(`Checking for updates to ${channel2} version...
@@ -587483,8 +587484,8 @@ async function update() {
587483
587484
  writeToStdout(`Verboo Code is managed by Homebrew.
587484
587485
  `);
587485
587486
  const latest = await getLatestVersion(channel2);
587486
- if (latest && !gte("0.10.4", latest)) {
587487
- writeToStdout(`Update available: ${"0.10.4"} → ${latest}
587487
+ if (latest && !gte("0.10.5", latest)) {
587488
+ writeToStdout(`Update available: ${"0.10.5"} → ${latest}
587488
587489
  `);
587489
587490
  writeToStdout(`
587490
587491
  `);
@@ -587500,8 +587501,8 @@ async function update() {
587500
587501
  writeToStdout(`Verboo Code is managed by winget.
587501
587502
  `);
587502
587503
  const latest = await getLatestVersion(channel2);
587503
- if (latest && !gte("0.10.4", latest)) {
587504
- writeToStdout(`Update available: ${"0.10.4"} → ${latest}
587504
+ if (latest && !gte("0.10.5", latest)) {
587505
+ writeToStdout(`Update available: ${"0.10.5"} → ${latest}
587505
587506
  `);
587506
587507
  writeToStdout(`
587507
587508
  `);
@@ -587517,8 +587518,8 @@ async function update() {
587517
587518
  writeToStdout(`Verboo Code is managed by apk.
587518
587519
  `);
587519
587520
  const latest = await getLatestVersion(channel2);
587520
- if (latest && !gte("0.10.4", latest)) {
587521
- writeToStdout(`Update available: ${"0.10.4"} → ${latest}
587521
+ if (latest && !gte("0.10.5", latest)) {
587522
+ writeToStdout(`Update available: ${"0.10.5"} → ${latest}
587522
587523
  `);
587523
587524
  writeToStdout(`
587524
587525
  `);
@@ -587571,11 +587572,11 @@ async function update() {
587571
587572
  `);
587572
587573
  await gracefulShutdown(1);
587573
587574
  }
587574
- if (result.latestVersion === "0.10.4") {
587575
- writeToStdout(source_default.green(`Verboo Code is up to date (${"0.10.4"})`) + `
587575
+ if (result.latestVersion === "0.10.5") {
587576
+ writeToStdout(source_default.green(`Verboo Code is up to date (${"0.10.5"})`) + `
587576
587577
  `);
587577
587578
  } else {
587578
- writeToStdout(source_default.green(`Successfully updated from ${"0.10.4"} to version ${result.latestVersion}`) + `
587579
+ writeToStdout(source_default.green(`Successfully updated from ${"0.10.5"} to version ${result.latestVersion}`) + `
587579
587580
  `);
587580
587581
  await regenerateCompletionCache();
587581
587582
  }
@@ -587635,12 +587636,12 @@ async function update() {
587635
587636
  `);
587636
587637
  await gracefulShutdown(1);
587637
587638
  }
587638
- if (latestVersion === "0.10.4") {
587639
- writeToStdout(source_default.green(`Verboo Code is up to date (${"0.10.4"})`) + `
587639
+ if (latestVersion === "0.10.5") {
587640
+ writeToStdout(source_default.green(`Verboo Code is up to date (${"0.10.5"})`) + `
587640
587641
  `);
587641
587642
  await gracefulShutdown(0);
587642
587643
  }
587643
- writeToStdout(`New version available: ${latestVersion} (current: ${"0.10.4"})
587644
+ writeToStdout(`New version available: ${latestVersion} (current: ${"0.10.5"})
587644
587645
  `);
587645
587646
  writeToStdout(`Installing update...
587646
587647
  `);
@@ -587685,7 +587686,7 @@ async function update() {
587685
587686
  logForDebugging(`update: Installation status: ${status2}`);
587686
587687
  switch (status2) {
587687
587688
  case "success":
587688
- writeToStdout(source_default.green(`Successfully updated from ${"0.10.4"} to version ${latestVersion}`) + `
587689
+ writeToStdout(source_default.green(`Successfully updated from ${"0.10.5"} to version ${latestVersion}`) + `
587689
587690
  `);
587690
587691
  await regenerateCompletionCache();
587691
587692
  break;
@@ -588940,7 +588941,7 @@ ${customInstructions}` : customInstructions;
588940
588941
  is_native_binary: isInBundledMode()
588941
588942
  });
588942
588943
  logMemoryDiagnostics("start", {
588943
- version: "0.10.4",
588944
+ version: "0.10.5",
588944
588945
  debug: debug2,
588945
588946
  debugToStderr,
588946
588947
  print: print ?? false,
@@ -589746,7 +589747,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
589746
589747
  pendingHookMessages
589747
589748
  }, renderAndRun);
589748
589749
  }
589749
- }).version(`0.10.4 (${cliDesc})`, "-v, --version", "Output the version number");
589750
+ }).version(`0.10.5 (${cliDesc})`, "-v, --version", "Output the version number");
589750
589751
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
589751
589752
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
589752
589753
  if (canUserConfigureAdvisor()) {
@@ -590321,7 +590322,7 @@ if (false) {}
590321
590322
  async function main2() {
590322
590323
  const args = process.argv.slice(2);
590323
590324
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
590324
- console.log(`${"0.10.4"} (Verboo Code)`);
590325
+ console.log(`${"0.10.5"} (Verboo Code)`);
590325
590326
  return;
590326
590327
  }
590327
590328
  if (!IS_VERBOO_CLI && args.includes("--provider")) {
@@ -590495,4 +590496,4 @@ async function main2() {
590495
590496
  }
590496
590497
  main2();
590497
590498
 
590498
- //# debugId=FCA4266A140C2D8E64756E2164756E21
590499
+ //# debugId=5294E83A6E72216E64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verboo/code",
3
- "version": "0.10.4",
3
+ "version": "0.10.5",
4
4
  "description": "Verboo Code — coding agent for the Verboo platform",
5
5
  "type": "module",
6
6
  "bin": {