@verboo/code 0.15.8 → 0.15.10

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 +34 -34
  2. package/package.json +6 -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.8";
117995
+ const version2 = "0.15.10";
117996
117996
  return `verboo-code/${version2}`;
117997
117997
  }
117998
117998
 
@@ -390235,7 +390235,7 @@ function getAnthropicEnvMetadata() {
390235
390235
  function getBuildAgeMinutes() {
390236
390236
  if (false)
390237
390237
  ;
390238
- const buildTime = new Date("2026-08-08T20:16:10.186Z").getTime();
390238
+ const buildTime = new Date("2026-08-08T22:00:21.304Z").getTime();
390239
390239
  if (isNaN(buildTime))
390240
390240
  return;
390241
390241
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -431923,7 +431923,7 @@ function buildPrimarySection() {
431923
431923
  });
431924
431924
  return [{
431925
431925
  label: "Version",
431926
- value: "0.15.8"
431926
+ value: "0.15.10"
431927
431927
  }, {
431928
431928
  label: "Session name",
431929
431929
  value: nameValue
@@ -445809,7 +445809,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
445809
445809
  return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
445810
445810
  }
445811
445811
  function getPublicBuildVersion() {
445812
- return "0.15.8";
445812
+ return "0.15.10";
445813
445813
  }
445814
445814
  var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
445815
445815
  var init_version = __esm(() => {
@@ -497203,7 +497203,7 @@ var init_bridge_kick = __esm(() => {
497203
497203
  var call66 = async () => {
497204
497204
  return {
497205
497205
  type: "text",
497206
- value: `${"99.0.0"} (built ${"2026-08-08T20:16:10.186Z"})`
497206
+ value: `${"99.0.0"} (built ${"2026-08-08T22:00:21.304Z"})`
497207
497207
  };
497208
497208
  }, version2, version_default;
497209
497209
  var init_version2 = __esm(() => {
@@ -521465,7 +521465,7 @@ function printStartupScreen(modelOverride) {
521465
521465
  const home = process.env.HOME || process.env.USERPROFILE || "";
521466
521466
  const cwd2 = process.cwd();
521467
521467
  const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
521468
- const version3 = "0.15.8";
521468
+ const version3 = "0.15.10";
521469
521469
  const columns = process.stdout.columns ?? STARTUP_DEFAULT_COLUMNS;
521470
521470
  process.stdout.write(renderStartupScreen(p, version3, displayCwd, columns));
521471
521471
  }
@@ -540694,7 +540694,7 @@ var init_routerRateLimitHook = __esm(() => {
540694
540694
  function getSemverPart(version3) {
540695
540695
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
540696
540696
  }
540697
- function useUpdateNotification(updatedVersion, initialVersion = "0.15.8") {
540697
+ function useUpdateNotification(updatedVersion, initialVersion = "0.15.10") {
540698
540698
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react227.useState(() => getSemverPart(initialVersion));
540699
540699
  const [pendingNotification2, setPendingNotification] = import_react227.useState(null);
540700
540700
  if (updatedVersion) {
@@ -540734,7 +540734,7 @@ function AutoUpdater({
540734
540734
  return;
540735
540735
  }
540736
540736
  if (false) {}
540737
- const currentVersion = "0.15.8";
540737
+ const currentVersion = "0.15.10";
540738
540738
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
540739
540739
  let latestVersion = await getLatestVersion(channel2);
540740
540740
  const isDisabled = isAutoUpdaterDisabled();
@@ -541087,17 +541087,17 @@ function PackageManagerAutoUpdater(t0) {
541087
541087
  const maxVersion = await getMaxVersion();
541088
541088
  if (maxVersion && latest && gt(latest, maxVersion)) {
541089
541089
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
541090
- if (gte("0.15.8", maxVersion)) {
541091
- logForDebugging(`PackageManagerAutoUpdater: current version ${"0.15.8"} is already at or above maxVersion ${maxVersion}, skipping update`);
541090
+ if (gte("0.15.10", maxVersion)) {
541091
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"0.15.10"} is already at or above maxVersion ${maxVersion}, skipping update`);
541092
541092
  setUpdateAvailable(false);
541093
541093
  return;
541094
541094
  }
541095
541095
  latest = maxVersion;
541096
541096
  }
541097
- const hasUpdate = latest && !gte("0.15.8", latest) && !shouldSkipVersion(latest);
541097
+ const hasUpdate = latest && !gte("0.15.10", latest) && !shouldSkipVersion(latest);
541098
541098
  setUpdateAvailable(!!hasUpdate);
541099
541099
  if (hasUpdate) {
541100
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.15.8"} -> ${latest}`);
541100
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"0.15.10"} -> ${latest}`);
541101
541101
  }
541102
541102
  };
541103
541103
  $2[0] = t1;
@@ -541131,7 +541131,7 @@ function PackageManagerAutoUpdater(t0) {
541131
541131
  wrap: "truncate",
541132
541132
  children: [
541133
541133
  "currentVersion: ",
541134
- "0.15.8"
541134
+ "0.15.10"
541135
541135
  ]
541136
541136
  });
541137
541137
  $2[3] = verbose;
@@ -557174,10 +557174,10 @@ async function autoUpdateCliInBackground() {
557174
557174
  return;
557175
557175
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
557176
557176
  const latest = await getLatestVersion(channel2);
557177
- if (!latest || gte("0.15.8", latest))
557177
+ if (!latest || gte("0.15.10", latest))
557178
557178
  return;
557179
557179
  writeToStdout(`
557180
- Nova versão disponível: ${latest} (atual: ${"0.15.8"})
557180
+ Nova versão disponível: ${latest} (atual: ${"0.15.10"})
557181
557181
  `);
557182
557182
  writeToStdout(`Atualizando automaticamente...
557183
557183
  `);
@@ -575356,7 +575356,7 @@ var init_ApproveApiKey = __esm(() => {
575356
575356
 
575357
575357
  // src/components/LogoV2/WelcomeV2.tsx
575358
575358
  function WelcomeV2() {
575359
- const version3 = "0.15.8";
575359
+ const version3 = "0.15.10";
575360
575360
  return /* @__PURE__ */ jsx_runtime480.jsxs(ThemedBox_default, {
575361
575361
  flexDirection: "column",
575362
575362
  marginY: 1,
@@ -593664,7 +593664,7 @@ __export(exports_update, {
593664
593664
  });
593665
593665
  async function update() {
593666
593666
  logEvent("tengu_update_check", {});
593667
- writeToStdout(`Current version: ${"0.15.8"}
593667
+ writeToStdout(`Current version: ${"0.15.10"}
593668
593668
  `);
593669
593669
  const channel2 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
593670
593670
  writeToStdout(`Checking for updates to ${channel2} version...
@@ -593749,8 +593749,8 @@ async function update() {
593749
593749
  writeToStdout(`Verboo Code is managed by Homebrew.
593750
593750
  `);
593751
593751
  const latest = await getLatestVersion(channel2);
593752
- if (latest && !gte("0.15.8", latest)) {
593753
- writeToStdout(`Update available: ${"0.15.8"} → ${latest}
593752
+ if (latest && !gte("0.15.10", latest)) {
593753
+ writeToStdout(`Update available: ${"0.15.10"} → ${latest}
593754
593754
  `);
593755
593755
  writeToStdout(`
593756
593756
  `);
@@ -593766,8 +593766,8 @@ async function update() {
593766
593766
  writeToStdout(`Verboo Code is managed by winget.
593767
593767
  `);
593768
593768
  const latest = await getLatestVersion(channel2);
593769
- if (latest && !gte("0.15.8", latest)) {
593770
- writeToStdout(`Update available: ${"0.15.8"} → ${latest}
593769
+ if (latest && !gte("0.15.10", latest)) {
593770
+ writeToStdout(`Update available: ${"0.15.10"} → ${latest}
593771
593771
  `);
593772
593772
  writeToStdout(`
593773
593773
  `);
@@ -593783,8 +593783,8 @@ async function update() {
593783
593783
  writeToStdout(`Verboo Code is managed by apk.
593784
593784
  `);
593785
593785
  const latest = await getLatestVersion(channel2);
593786
- if (latest && !gte("0.15.8", latest)) {
593787
- writeToStdout(`Update available: ${"0.15.8"} → ${latest}
593786
+ if (latest && !gte("0.15.10", latest)) {
593787
+ writeToStdout(`Update available: ${"0.15.10"} → ${latest}
593788
593788
  `);
593789
593789
  writeToStdout(`
593790
593790
  `);
@@ -593837,11 +593837,11 @@ async function update() {
593837
593837
  `);
593838
593838
  await gracefulShutdown(1);
593839
593839
  }
593840
- if (result.latestVersion === "0.15.8") {
593841
- writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.8"})`) + `
593840
+ if (result.latestVersion === "0.15.10") {
593841
+ writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.10"})`) + `
593842
593842
  `);
593843
593843
  } else {
593844
- writeToStdout(source_default.green(`Successfully updated from ${"0.15.8"} to version ${result.latestVersion}`) + `
593844
+ writeToStdout(source_default.green(`Successfully updated from ${"0.15.10"} to version ${result.latestVersion}`) + `
593845
593845
  `);
593846
593846
  await regenerateCompletionCache();
593847
593847
  }
@@ -593901,12 +593901,12 @@ async function update() {
593901
593901
  `);
593902
593902
  await gracefulShutdown(1);
593903
593903
  }
593904
- if (latestVersion === "0.15.8") {
593905
- writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.8"})`) + `
593904
+ if (latestVersion === "0.15.10") {
593905
+ writeToStdout(source_default.green(`Verboo Code is up to date (${"0.15.10"})`) + `
593906
593906
  `);
593907
593907
  await gracefulShutdown(0);
593908
593908
  }
593909
- writeToStdout(`New version available: ${latestVersion} (current: ${"0.15.8"})
593909
+ writeToStdout(`New version available: ${latestVersion} (current: ${"0.15.10"})
593910
593910
  `);
593911
593911
  writeToStdout(`Installing update...
593912
593912
  `);
@@ -593951,7 +593951,7 @@ async function update() {
593951
593951
  logForDebugging(`update: Installation status: ${status2}`);
593952
593952
  switch (status2) {
593953
593953
  case "success":
593954
- writeToStdout(source_default.green(`Successfully updated from ${"0.15.8"} to version ${latestVersion}`) + `
593954
+ writeToStdout(source_default.green(`Successfully updated from ${"0.15.10"} to version ${latestVersion}`) + `
593955
593955
  `);
593956
593956
  await regenerateCompletionCache();
593957
593957
  break;
@@ -595270,7 +595270,7 @@ ${customInstructions}` : customInstructions;
595270
595270
  is_native_binary: isInBundledMode()
595271
595271
  });
595272
595272
  logMemoryDiagnostics("start", {
595273
- version: "0.15.8",
595273
+ version: "0.15.10",
595274
595274
  debug: debug2,
595275
595275
  debugToStderr,
595276
595276
  print: print ?? false,
@@ -596081,7 +596081,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
596081
596081
  pendingHookMessages
596082
596082
  }, renderAndRun);
596083
596083
  }
596084
- }).version(`0.15.8 (${cliDesc})`, "-v, --version", "Output the version number");
596084
+ }).version(`0.15.10 (${cliDesc})`, "-v, --version", "Output the version number");
596085
596085
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
596086
596086
  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
596087
  if (canUserConfigureAdvisor()) {
@@ -596662,7 +596662,7 @@ if (false) {}
596662
596662
  async function main2() {
596663
596663
  const args = process.argv.slice(2);
596664
596664
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
596665
- console.log(`${"0.15.8"} (Verboo Code)`);
596665
+ console.log(`${"0.15.10"} (Verboo Code)`);
596666
596666
  return;
596667
596667
  }
596668
596668
  if (!IS_VERBOO_CLI && args.includes("--provider")) {
@@ -596836,4 +596836,4 @@ async function main2() {
596836
596836
  }
596837
596837
  main2();
596838
596838
 
596839
- //# debugId=BFD42A66E2F1999764756E2164756E21
596839
+ //# debugId=BE609D0D09F2E37364756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verboo/code",
3
- "version": "0.15.8",
3
+ "version": "0.15.10",
4
4
  "description": "Verboo Code — coding agent for the Verboo platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -24,6 +24,11 @@
24
24
  ],
25
25
  "scripts": {
26
26
  "build": "bun run scripts/build.ts",
27
+ "desktop:contract:test": "bun test scripts/desktop-release/contract.test.ts",
28
+ "desktop:package": "bun run scripts/desktop-release/package.ts",
29
+ "desktop:manifest": "bun run scripts/desktop-release/manifest.ts",
30
+ "desktop:verify": "bun run scripts/desktop-release/verify-release.ts",
31
+ "desktop:test": "bun test scripts/desktop-release/*.test.ts",
27
32
  "postinstall": "node scripts/postinstall.mjs || true",
28
33
  "integrations:generate": "bun run scripts/generate-integrations-artifacts.ts",
29
34
  "integrations:check": "bun run scripts/generate-integrations-artifacts.ts --check",