@verboo/code 0.7.16 → 0.7.17
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 +35 -27
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -115518,7 +115518,7 @@ function printStartupScreen(modelOverride) {
|
|
|
115518
115518
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
115519
115519
|
const cwd2 = process.cwd();
|
|
115520
115520
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
115521
|
-
const version2 = "0.7.
|
|
115521
|
+
const version2 = "0.7.17";
|
|
115522
115522
|
const bold2 = `${ESC}1m`;
|
|
115523
115523
|
const PURPLE = rgb(...ACCENT);
|
|
115524
115524
|
const SOFT = rgb(...CREAM);
|
|
@@ -365571,6 +365571,7 @@ var init_AgentTool = __esm(() => {
|
|
|
365571
365571
|
init_ids();
|
|
365572
365572
|
init_agentContext();
|
|
365573
365573
|
init_agentSwarmsEnabled();
|
|
365574
|
+
init_abortController();
|
|
365574
365575
|
init_cwd2();
|
|
365575
365576
|
init_debug();
|
|
365576
365577
|
init_envUtils();
|
|
@@ -366047,6 +366048,7 @@ var init_AgentTool = __esm(() => {
|
|
|
366047
366048
|
let foregroundTaskId;
|
|
366048
366049
|
let backgroundPromise;
|
|
366049
366050
|
let cancelAutoBackground;
|
|
366051
|
+
let foregroundAbortController;
|
|
366050
366052
|
if (!isBackgroundTasksDisabled2) {
|
|
366051
366053
|
const registration = registerAgentForeground({
|
|
366052
366054
|
agentId: syncAgentId,
|
|
@@ -366062,6 +366064,7 @@ var init_AgentTool = __esm(() => {
|
|
|
366062
366064
|
type: "background"
|
|
366063
366065
|
}));
|
|
366064
366066
|
cancelAutoBackground = registration.cancelAutoBackground;
|
|
366067
|
+
foregroundAbortController = createChildAbortController(registration.abortController);
|
|
366065
366068
|
}
|
|
366066
366069
|
let backgroundHintShown = false;
|
|
366067
366070
|
let wasBackgrounded = false;
|
|
@@ -366071,7 +366074,10 @@ var init_AgentTool = __esm(() => {
|
|
|
366071
366074
|
...runAgentParams,
|
|
366072
366075
|
override: {
|
|
366073
366076
|
...runAgentParams.override,
|
|
366074
|
-
agentId: syncAgentId
|
|
366077
|
+
agentId: syncAgentId,
|
|
366078
|
+
...foregroundAbortController && {
|
|
366079
|
+
abortController: foregroundAbortController
|
|
366080
|
+
}
|
|
366075
366081
|
},
|
|
366076
366082
|
onCacheSafeParams: summaryTaskId && getSdkAgentProgressSummariesEnabled() ? (params) => {
|
|
366077
366083
|
const {
|
|
@@ -366110,6 +366116,7 @@ var init_AgentTool = __esm(() => {
|
|
|
366110
366116
|
const backgroundedTaskId = foregroundTaskId;
|
|
366111
366117
|
wasBackgrounded = true;
|
|
366112
366118
|
stopForegroundSummarization?.();
|
|
366119
|
+
foregroundAbortController?.abort("backgrounded");
|
|
366113
366120
|
runWithAgentContext(syncAgentContext, async () => {
|
|
366114
366121
|
let stopBackgroundedSummarization;
|
|
366115
366122
|
try {
|
|
@@ -367671,6 +367678,7 @@ function registerAgentForeground({
|
|
|
367671
367678
|
}
|
|
367672
367679
|
return {
|
|
367673
367680
|
taskId: agentId,
|
|
367681
|
+
abortController,
|
|
367674
367682
|
backgroundSignal,
|
|
367675
367683
|
cancelAutoBackground
|
|
367676
367684
|
};
|
|
@@ -376910,7 +376918,7 @@ function getAnthropicEnvMetadata() {
|
|
|
376910
376918
|
function getBuildAgeMinutes() {
|
|
376911
376919
|
if (false)
|
|
376912
376920
|
;
|
|
376913
|
-
const buildTime = new Date("2026-05-
|
|
376921
|
+
const buildTime = new Date("2026-05-02T19:34:06.611Z").getTime();
|
|
376914
376922
|
if (isNaN(buildTime))
|
|
376915
376923
|
return;
|
|
376916
376924
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -417446,7 +417454,7 @@ function buildPrimarySection() {
|
|
|
417446
417454
|
}, undefined, false, undefined, this);
|
|
417447
417455
|
return [{
|
|
417448
417456
|
label: "Version",
|
|
417449
|
-
value: "0.7.
|
|
417457
|
+
value: "0.7.17"
|
|
417450
417458
|
}, {
|
|
417451
417459
|
label: "Session name",
|
|
417452
417460
|
value: nameValue
|
|
@@ -485396,7 +485404,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
485396
485404
|
var call60 = async () => {
|
|
485397
485405
|
return {
|
|
485398
485406
|
type: "text",
|
|
485399
|
-
value: `${"99.0.0"} (built ${"2026-05-
|
|
485407
|
+
value: `${"99.0.0"} (built ${"2026-05-02T19:34:06.611Z"})`
|
|
485400
485408
|
};
|
|
485401
485409
|
}, version2, version_default;
|
|
485402
485410
|
var init_version = __esm(() => {
|
|
@@ -561178,7 +561186,7 @@ function WelcomeV2() {
|
|
|
561178
561186
|
dimColor: true,
|
|
561179
561187
|
children: [
|
|
561180
561188
|
"v",
|
|
561181
|
-
"0.7.
|
|
561189
|
+
"0.7.17",
|
|
561182
561190
|
" "
|
|
561183
561191
|
]
|
|
561184
561192
|
}, undefined, true, undefined, this)
|
|
@@ -561365,7 +561373,7 @@ function WelcomeV2() {
|
|
|
561365
561373
|
dimColor: true,
|
|
561366
561374
|
children: [
|
|
561367
561375
|
"v",
|
|
561368
|
-
"0.7.
|
|
561376
|
+
"0.7.17",
|
|
561369
561377
|
" "
|
|
561370
561378
|
]
|
|
561371
561379
|
}, undefined, true, undefined, this)
|
|
@@ -561581,7 +561589,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
561581
561589
|
dimColor: true,
|
|
561582
561590
|
children: [
|
|
561583
561591
|
"v",
|
|
561584
|
-
"0.7.
|
|
561592
|
+
"0.7.17",
|
|
561585
561593
|
" "
|
|
561586
561594
|
]
|
|
561587
561595
|
}, undefined, true, undefined, this);
|
|
@@ -561790,7 +561798,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
561790
561798
|
dimColor: true,
|
|
561791
561799
|
children: [
|
|
561792
561800
|
"v",
|
|
561793
|
-
"0.7.
|
|
561801
|
+
"0.7.17",
|
|
561794
561802
|
" "
|
|
561795
561803
|
]
|
|
561796
561804
|
}, undefined, true, undefined, this);
|
|
@@ -579921,7 +579929,7 @@ __export(exports_update, {
|
|
|
579921
579929
|
async function update() {
|
|
579922
579930
|
if (getAPIProvider() !== "firstParty") {
|
|
579923
579931
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
579924
|
-
`) + `Current version: ${"0.7.
|
|
579932
|
+
`) + `Current version: ${"0.7.17"}
|
|
579925
579933
|
|
|
579926
579934
|
` + `To update, reinstall from npm:
|
|
579927
579935
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -579932,7 +579940,7 @@ async function update() {
|
|
|
579932
579940
|
await gracefulShutdown(0);
|
|
579933
579941
|
}
|
|
579934
579942
|
logEvent("tengu_update_check", {});
|
|
579935
|
-
writeToStdout(`Current version: ${"0.7.
|
|
579943
|
+
writeToStdout(`Current version: ${"0.7.17"}
|
|
579936
579944
|
`);
|
|
579937
579945
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
579938
579946
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -580017,8 +580025,8 @@ async function update() {
|
|
|
580017
580025
|
writeToStdout(`Claude is managed by Homebrew.
|
|
580018
580026
|
`);
|
|
580019
580027
|
const latest = await getLatestVersion(channel);
|
|
580020
|
-
if (latest && !gte("0.7.
|
|
580021
|
-
writeToStdout(`Update available: ${"0.7.
|
|
580028
|
+
if (latest && !gte("0.7.17", latest)) {
|
|
580029
|
+
writeToStdout(`Update available: ${"0.7.17"} → ${latest}
|
|
580022
580030
|
`);
|
|
580023
580031
|
writeToStdout(`
|
|
580024
580032
|
`);
|
|
@@ -580034,8 +580042,8 @@ async function update() {
|
|
|
580034
580042
|
writeToStdout(`Claude is managed by winget.
|
|
580035
580043
|
`);
|
|
580036
580044
|
const latest = await getLatestVersion(channel);
|
|
580037
|
-
if (latest && !gte("0.7.
|
|
580038
|
-
writeToStdout(`Update available: ${"0.7.
|
|
580045
|
+
if (latest && !gte("0.7.17", latest)) {
|
|
580046
|
+
writeToStdout(`Update available: ${"0.7.17"} → ${latest}
|
|
580039
580047
|
`);
|
|
580040
580048
|
writeToStdout(`
|
|
580041
580049
|
`);
|
|
@@ -580051,8 +580059,8 @@ async function update() {
|
|
|
580051
580059
|
writeToStdout(`Claude is managed by apk.
|
|
580052
580060
|
`);
|
|
580053
580061
|
const latest = await getLatestVersion(channel);
|
|
580054
|
-
if (latest && !gte("0.7.
|
|
580055
|
-
writeToStdout(`Update available: ${"0.7.
|
|
580062
|
+
if (latest && !gte("0.7.17", latest)) {
|
|
580063
|
+
writeToStdout(`Update available: ${"0.7.17"} → ${latest}
|
|
580056
580064
|
`);
|
|
580057
580065
|
writeToStdout(`
|
|
580058
580066
|
`);
|
|
@@ -580117,11 +580125,11 @@ async function update() {
|
|
|
580117
580125
|
`);
|
|
580118
580126
|
await gracefulShutdown(1);
|
|
580119
580127
|
}
|
|
580120
|
-
if (result.latestVersion === "0.7.
|
|
580121
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.
|
|
580128
|
+
if (result.latestVersion === "0.7.17") {
|
|
580129
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.17"})`) + `
|
|
580122
580130
|
`);
|
|
580123
580131
|
} else {
|
|
580124
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.7.
|
|
580132
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.7.17"} to version ${result.latestVersion}`) + `
|
|
580125
580133
|
`);
|
|
580126
580134
|
await regenerateCompletionCache();
|
|
580127
580135
|
}
|
|
@@ -580181,12 +580189,12 @@ async function update() {
|
|
|
580181
580189
|
`);
|
|
580182
580190
|
await gracefulShutdown(1);
|
|
580183
580191
|
}
|
|
580184
|
-
if (latestVersion === "0.7.
|
|
580185
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.
|
|
580192
|
+
if (latestVersion === "0.7.17") {
|
|
580193
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.7.17"})`) + `
|
|
580186
580194
|
`);
|
|
580187
580195
|
await gracefulShutdown(0);
|
|
580188
580196
|
}
|
|
580189
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.7.
|
|
580197
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.7.17"})
|
|
580190
580198
|
`);
|
|
580191
580199
|
writeToStdout(`Installing update...
|
|
580192
580200
|
`);
|
|
@@ -580231,7 +580239,7 @@ async function update() {
|
|
|
580231
580239
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
580232
580240
|
switch (status2) {
|
|
580233
580241
|
case "success":
|
|
580234
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.7.
|
|
580242
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.7.17"} to version ${latestVersion}`) + `
|
|
580235
580243
|
`);
|
|
580236
580244
|
await regenerateCompletionCache();
|
|
580237
580245
|
break;
|
|
@@ -582284,7 +582292,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
582284
582292
|
pendingHookMessages
|
|
582285
582293
|
}, renderAndRun);
|
|
582286
582294
|
}
|
|
582287
|
-
}).version(`0.7.
|
|
582295
|
+
}).version(`0.7.17 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
582288
582296
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
582289
582297
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
582290
582298
|
if (canUserConfigureAdvisor()) {
|
|
@@ -582852,7 +582860,7 @@ if (false) {}
|
|
|
582852
582860
|
async function main2() {
|
|
582853
582861
|
const args = process.argv.slice(2);
|
|
582854
582862
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
582855
|
-
console.log(`${"0.7.
|
|
582863
|
+
console.log(`${"0.7.17"} (Verboo Code)`);
|
|
582856
582864
|
return;
|
|
582857
582865
|
}
|
|
582858
582866
|
if (args.includes("--provider")) {
|
|
@@ -583008,4 +583016,4 @@ async function main2() {
|
|
|
583008
583016
|
}
|
|
583009
583017
|
main2();
|
|
583010
583018
|
|
|
583011
|
-
//# debugId=
|
|
583019
|
+
//# debugId=08D24D8DFB1E3D9764756E2164756E21
|