@verboo/code 0.8.5 → 0.8.8
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 +83 -72
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -143578,7 +143578,7 @@ function calculateContextPercentages(currentUsage, contextWindowSize) {
|
|
|
143578
143578
|
if (!currentUsage) {
|
|
143579
143579
|
return { used: null, remaining: null };
|
|
143580
143580
|
}
|
|
143581
|
-
const totalInputTokens = currentUsage.input_tokens
|
|
143581
|
+
const totalInputTokens = currentUsage.input_tokens;
|
|
143582
143582
|
const usedPercentage = Math.round(totalInputTokens / contextWindowSize * 100);
|
|
143583
143583
|
const clampedUsed = Math.min(100, Math.max(0, usedPercentage));
|
|
143584
143584
|
return {
|
|
@@ -280711,7 +280711,7 @@ async function getLatestVersion(channel) {
|
|
|
280711
280711
|
const npmTag = channel === "stable" ? "stable" : "latest";
|
|
280712
280712
|
const result = await execFileNoThrowWithCwd("npm", ["view", `${"@verboo/code"}@${npmTag}`, "version", "--prefer-online"], { abortSignal: AbortSignal.timeout(5000), cwd: homedir19() });
|
|
280713
280713
|
if (result.code !== 0) {
|
|
280714
|
-
logForDebugging2(`npm view failed with code ${result.code}`);
|
|
280714
|
+
logForDebugging2(`npm view failed with code ${result.code} for tag '${npmTag}'`);
|
|
280715
280715
|
if (result.stderr) {
|
|
280716
280716
|
logForDebugging2(`npm stderr: ${result.stderr.trim()}`);
|
|
280717
280717
|
} else {
|
|
@@ -280720,6 +280720,13 @@ async function getLatestVersion(channel) {
|
|
|
280720
280720
|
if (result.stdout) {
|
|
280721
280721
|
logForDebugging2(`npm stdout: ${result.stdout.trim()}`);
|
|
280722
280722
|
}
|
|
280723
|
+
if (npmTag === "stable") {
|
|
280724
|
+
logForDebugging2(`Tag 'stable' indisponível; caindo para 'latest' como fallback`);
|
|
280725
|
+
const fallback = await execFileNoThrowWithCwd("npm", ["view", `${"@verboo/code"}@latest`, "version", "--prefer-online"], { abortSignal: AbortSignal.timeout(5000), cwd: homedir19() });
|
|
280726
|
+
if (fallback.code === 0) {
|
|
280727
|
+
return fallback.stdout.trim();
|
|
280728
|
+
}
|
|
280729
|
+
}
|
|
280723
280730
|
return null;
|
|
280724
280731
|
}
|
|
280725
280732
|
return result.stdout.trim();
|
|
@@ -389790,17 +389797,9 @@ async function* queryLoop(params, consumedCommandUuids) {
|
|
|
389790
389797
|
const lastAssistant = assistantMessages.at(-1);
|
|
389791
389798
|
if (lastAssistant?.type === "assistant") {
|
|
389792
389799
|
const lastText = lastAssistant.message.content.filter((b) => b.type === "text").map((b) => b.text).join(" ").toLowerCase();
|
|
389793
|
-
const
|
|
389794
|
-
|
|
389795
|
-
|
|
389796
|
-
/\blet me (go ahead and |now )?(do|create|write|edit|update|fix|implement|add|run|check|make|build|set up|proceed)\b/,
|
|
389797
|
-
...lastText.length < 80 ? [/\b(i('ll| will| need to| have to| must) (now )?(do|create|write|edit|update|fix|implement|add|run|check|make|build|set up))\b/] : [],
|
|
389798
|
-
/\btime to (do|create|write|edit|update|fix|implement|add|run|check|make|build|get started|begin)\b/,
|
|
389799
|
-
...lastText.length < 80 ? [/\bnext,?\s+(i('ll| will)|let me|i need to) (do|create|write|edit|update|fix|implement|add|run|check|make|build)\b/] : []
|
|
389800
|
-
];
|
|
389801
|
-
const completionMarkers = /\b(done|finished|completed|complete|summary|that's all|that is all|all set|hope this helps|let me know if)\b/;
|
|
389802
|
-
if (completionMarkers.test(lastText)) {} else if (continuationSignals.some((re) => re.test(lastText))) {
|
|
389803
|
-
logForDebugging2(`Continuation nudge triggered (${state2.continuationNudgeCount + 1}/${MAX_CONTINUATION_NUDGES}): model said "${lastText.slice(-120)}" without tool calls`);
|
|
389800
|
+
const completionMarkers = /\b(done|finished|completed|complete|summary|that's all|that is all|all set|hope this helps|let me know if|pronto|conclu[íi]do|finalizado|terminado|conclus[ãa]o|resumo|isso [ée] tudo|espero que ajude|qualquer d[úu]vida|qualquer coisa avise|fico [àa] disposi[çc][ãa]o)\b/;
|
|
389801
|
+
if (!completionMarkers.test(lastText)) {
|
|
389802
|
+
logForDebugging2(`Continuation nudge triggered (${state2.continuationNudgeCount + 1}/${MAX_CONTINUATION_NUDGES}): assistant produced text without tool_use, tail="${lastText.slice(-120)}"`);
|
|
389804
389803
|
const nudge = createUserMessage({
|
|
389805
389804
|
content: "Continue with the task. Use the appropriate tools to proceed.",
|
|
389806
389805
|
isMeta: true
|
|
@@ -389823,6 +389822,24 @@ async function* queryLoop(params, consumedCommandUuids) {
|
|
|
389823
389822
|
}
|
|
389824
389823
|
}
|
|
389825
389824
|
}
|
|
389825
|
+
{
|
|
389826
|
+
const lastAssistantForDiag = assistantMessages.at(-1);
|
|
389827
|
+
const lastTextForDiag = lastAssistantForDiag?.type === "assistant" ? lastAssistantForDiag.message.content.filter((b) => b.type === "text").map((b) => b.text).join(" ") : "";
|
|
389828
|
+
const lastTextLower = lastTextForDiag.toLowerCase();
|
|
389829
|
+
const completionMarkersDiag = /\b(done|finished|completed|complete|summary|that's all|that is all|all set|hope this helps|let me know if|pronto|conclu[íi]do|finalizado|terminado|conclus[ãa]o|resumo|isso [ée] tudo|espero que ajude|qualquer d[úu]vida|qualquer coisa avise|fico [àa] disposi[çc][ãa]o)\b/;
|
|
389830
|
+
logForDebugging2(JSON.stringify({
|
|
389831
|
+
type: "silent_stop_diagnostic",
|
|
389832
|
+
turnCount,
|
|
389833
|
+
continuationNudgeCount: state2.continuationNudgeCount,
|
|
389834
|
+
maxContinuationNudges: MAX_CONTINUATION_NUDGES,
|
|
389835
|
+
assistantMessagesCount: assistantMessages.length,
|
|
389836
|
+
hasAssistantText: lastTextForDiag.length > 0,
|
|
389837
|
+
textLength: lastTextForDiag.length,
|
|
389838
|
+
textPreview: lastTextForDiag.slice(-500),
|
|
389839
|
+
matchedCompletionMarker: completionMarkersDiag.test(lastTextLower),
|
|
389840
|
+
reachedNudgeCap: state2.continuationNudgeCount >= MAX_CONTINUATION_NUDGES
|
|
389841
|
+
}), { level: "debug" });
|
|
389842
|
+
}
|
|
389826
389843
|
return { reason: "completed" };
|
|
389827
389844
|
}
|
|
389828
389845
|
let shouldPreventContinuation = false;
|
|
@@ -390136,7 +390153,7 @@ function getAnthropicEnvMetadata() {
|
|
|
390136
390153
|
function getBuildAgeMinutes() {
|
|
390137
390154
|
if (false)
|
|
390138
390155
|
;
|
|
390139
|
-
const buildTime = new Date("2026-05-
|
|
390156
|
+
const buildTime = new Date("2026-05-13T14:00:04.454Z").getTime();
|
|
390140
390157
|
if (isNaN(buildTime))
|
|
390141
390158
|
return;
|
|
390142
390159
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -418257,7 +418274,7 @@ function buildPrimarySection() {
|
|
|
418257
418274
|
}, undefined, false, undefined, this);
|
|
418258
418275
|
return [{
|
|
418259
418276
|
label: "Version",
|
|
418260
|
-
value: "0.8.
|
|
418277
|
+
value: "0.8.8"
|
|
418261
418278
|
}, {
|
|
418262
418279
|
label: "Session name",
|
|
418263
418280
|
value: nameValue
|
|
@@ -432552,7 +432569,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
|
|
|
432552
432569
|
return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
|
|
432553
432570
|
}
|
|
432554
432571
|
function getPublicBuildVersion() {
|
|
432555
|
-
return "0.8.
|
|
432572
|
+
return "0.8.8";
|
|
432556
432573
|
}
|
|
432557
432574
|
var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
|
|
432558
432575
|
var init_version = __esm(() => {
|
|
@@ -487648,7 +487665,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
487648
487665
|
var call62 = async () => {
|
|
487649
487666
|
return {
|
|
487650
487667
|
type: "text",
|
|
487651
|
-
value: `${"99.0.0"} (built ${"2026-05-
|
|
487668
|
+
value: `${"99.0.0"} (built ${"2026-05-13T14:00:04.454Z"})`
|
|
487652
487669
|
};
|
|
487653
487670
|
}, version2, version_default;
|
|
487654
487671
|
var init_version2 = __esm(() => {
|
|
@@ -519805,7 +519822,7 @@ function printStartupScreen(modelOverride) {
|
|
|
519805
519822
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
519806
519823
|
const cwd2 = process.cwd();
|
|
519807
519824
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
519808
|
-
const version3 = "0.8.
|
|
519825
|
+
const version3 = "0.8.8";
|
|
519809
519826
|
const bold2 = `${ESC3}1m`;
|
|
519810
519827
|
const PURPLE = rgb3(...ACCENT);
|
|
519811
519828
|
const SOFT = rgb3(...CREAM);
|
|
@@ -538039,17 +538056,17 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
538039
538056
|
function getSemverPart(version3) {
|
|
538040
538057
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
538041
538058
|
}
|
|
538042
|
-
function useUpdateNotification(updatedVersion, initialVersion = "
|
|
538059
|
+
function useUpdateNotification(updatedVersion, initialVersion = "0.8.8") {
|
|
538043
538060
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react223.useState(() => getSemverPart(initialVersion));
|
|
538044
|
-
|
|
538045
|
-
|
|
538046
|
-
|
|
538047
|
-
|
|
538048
|
-
|
|
538049
|
-
|
|
538050
|
-
|
|
538061
|
+
const [pendingNotification2, setPendingNotification] = import_react223.useState(null);
|
|
538062
|
+
if (updatedVersion) {
|
|
538063
|
+
const updatedSemver = getSemverPart(updatedVersion);
|
|
538064
|
+
if (updatedSemver !== lastNotifiedSemver) {
|
|
538065
|
+
setLastNotifiedSemver(updatedSemver);
|
|
538066
|
+
setPendingNotification(updatedSemver);
|
|
538067
|
+
}
|
|
538051
538068
|
}
|
|
538052
|
-
return
|
|
538069
|
+
return pendingNotification2;
|
|
538053
538070
|
}
|
|
538054
538071
|
var import_react223, import_semver13;
|
|
538055
538072
|
var init_useUpdateNotification = __esm(() => {
|
|
@@ -538079,7 +538096,7 @@ function AutoUpdater({
|
|
|
538079
538096
|
return;
|
|
538080
538097
|
}
|
|
538081
538098
|
if (false) {}
|
|
538082
|
-
const currentVersion = "0.8.
|
|
538099
|
+
const currentVersion = "0.8.8";
|
|
538083
538100
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
538084
538101
|
let latestVersion = await getLatestVersion(channel);
|
|
538085
538102
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -538432,17 +538449,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538432
538449
|
const maxVersion = await getMaxVersion();
|
|
538433
538450
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
538434
538451
|
logForDebugging2(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
538435
|
-
if (gte("0.8.
|
|
538436
|
-
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.
|
|
538452
|
+
if (gte("0.8.8", maxVersion)) {
|
|
538453
|
+
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.8"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
538437
538454
|
setUpdateAvailable(false);
|
|
538438
538455
|
return;
|
|
538439
538456
|
}
|
|
538440
538457
|
latest = maxVersion;
|
|
538441
538458
|
}
|
|
538442
|
-
const hasUpdate = latest && !gte("0.8.
|
|
538459
|
+
const hasUpdate = latest && !gte("0.8.8", latest) && !shouldSkipVersion(latest);
|
|
538443
538460
|
setUpdateAvailable(!!hasUpdate);
|
|
538444
538461
|
if (hasUpdate) {
|
|
538445
|
-
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.
|
|
538462
|
+
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.8"} -> ${latest}`);
|
|
538446
538463
|
}
|
|
538447
538464
|
};
|
|
538448
538465
|
$2[0] = t1;
|
|
@@ -538476,7 +538493,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538476
538493
|
wrap: "truncate",
|
|
538477
538494
|
children: [
|
|
538478
538495
|
"currentVersion: ",
|
|
538479
|
-
"0.8.
|
|
538496
|
+
"0.8.8"
|
|
538480
538497
|
]
|
|
538481
538498
|
}, undefined, true, undefined, this);
|
|
538482
538499
|
$2[3] = verbose;
|
|
@@ -551089,7 +551106,7 @@ function PromptInput({
|
|
|
551089
551106
|
columns,
|
|
551090
551107
|
rows
|
|
551091
551108
|
} = useTerminalSize();
|
|
551092
|
-
const textInputColumns = columns -
|
|
551109
|
+
const textInputColumns = columns - 5 - companionReservedColumns(columns, companionSpeaking);
|
|
551093
551110
|
const maxVisibleLines = isFullscreenEnvEnabled() ? Math.max(MIN_INPUT_VIEWPORT_LINES, Math.floor(rows / 2) - PROMPT_FOOTER_LINES) : undefined;
|
|
551094
551111
|
const handleInputClick = import_react257.useCallback((e2) => {
|
|
551095
551112
|
if (!input || isSearchingHistory)
|
|
@@ -551441,18 +551458,16 @@ function PromptInput({
|
|
|
551441
551458
|
}, undefined, false, undefined, this)
|
|
551442
551459
|
]
|
|
551443
551460
|
}, undefined, true, undefined, this) : /* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedBox_default, {
|
|
551444
|
-
flexDirection: "column",
|
|
551445
551461
|
width: "100%",
|
|
551446
|
-
children:
|
|
551447
|
-
|
|
551448
|
-
|
|
551449
|
-
|
|
551450
|
-
|
|
551451
|
-
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedBox_default, {
|
|
551462
|
+
children: /* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedBox_default, {
|
|
551463
|
+
borderStyle: "round",
|
|
551464
|
+
borderColor: getBorderColor(),
|
|
551465
|
+
paddingLeft: 1,
|
|
551466
|
+
width: "100%",
|
|
551467
|
+
children: /* @__PURE__ */ jsx_dev_runtime434.jsxDEV(ThemedBox_default, {
|
|
551452
551468
|
flexDirection: "row",
|
|
551453
551469
|
alignItems: "flex-start",
|
|
551454
551470
|
justifyContent: "flex-start",
|
|
551455
|
-
backgroundColor: "userMessageBackground",
|
|
551456
551471
|
children: [
|
|
551457
551472
|
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(PromptInputModeIndicator, {
|
|
551458
551473
|
mode,
|
|
@@ -551479,13 +551494,9 @@ function PromptInput({
|
|
|
551479
551494
|
children: textInputElement
|
|
551480
551495
|
}, undefined, false, undefined, this)
|
|
551481
551496
|
]
|
|
551482
|
-
}, undefined, true, undefined, this)
|
|
551483
|
-
|
|
551484
|
-
|
|
551485
|
-
children: "▀".repeat(columns)
|
|
551486
|
-
}, undefined, false, undefined, this)
|
|
551487
|
-
]
|
|
551488
|
-
}, undefined, true, undefined, this),
|
|
551497
|
+
}, undefined, true, undefined, this)
|
|
551498
|
+
}, undefined, false, undefined, this)
|
|
551499
|
+
}, undefined, false, undefined, this),
|
|
551489
551500
|
/* @__PURE__ */ jsx_dev_runtime434.jsxDEV(PromptInputFooter_default, {
|
|
551490
551501
|
apiKeyStatus,
|
|
551491
551502
|
debug,
|
|
@@ -570889,7 +570900,7 @@ function WelcomeV2() {
|
|
|
570889
570900
|
dimColor: true,
|
|
570890
570901
|
children: [
|
|
570891
570902
|
"v",
|
|
570892
|
-
"0.8.
|
|
570903
|
+
"0.8.8",
|
|
570893
570904
|
" "
|
|
570894
570905
|
]
|
|
570895
570906
|
}, undefined, true, undefined, this)
|
|
@@ -571076,7 +571087,7 @@ function WelcomeV2() {
|
|
|
571076
571087
|
dimColor: true,
|
|
571077
571088
|
children: [
|
|
571078
571089
|
"v",
|
|
571079
|
-
"0.8.
|
|
571090
|
+
"0.8.8",
|
|
571080
571091
|
" "
|
|
571081
571092
|
]
|
|
571082
571093
|
}, undefined, true, undefined, this)
|
|
@@ -571292,7 +571303,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571292
571303
|
dimColor: true,
|
|
571293
571304
|
children: [
|
|
571294
571305
|
"v",
|
|
571295
|
-
"0.8.
|
|
571306
|
+
"0.8.8",
|
|
571296
571307
|
" "
|
|
571297
571308
|
]
|
|
571298
571309
|
}, undefined, true, undefined, this);
|
|
@@ -571501,7 +571512,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571501
571512
|
dimColor: true,
|
|
571502
571513
|
children: [
|
|
571503
571514
|
"v",
|
|
571504
|
-
"0.8.
|
|
571515
|
+
"0.8.8",
|
|
571505
571516
|
" "
|
|
571506
571517
|
]
|
|
571507
571518
|
}, undefined, true, undefined, this);
|
|
@@ -588872,7 +588883,7 @@ __export(exports_update, {
|
|
|
588872
588883
|
async function update() {
|
|
588873
588884
|
if (getAPIProvider() !== "firstParty") {
|
|
588874
588885
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
588875
|
-
`) + `Current version: ${"0.8.
|
|
588886
|
+
`) + `Current version: ${"0.8.8"}
|
|
588876
588887
|
|
|
588877
588888
|
` + `To update, reinstall from npm:
|
|
588878
588889
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -588883,7 +588894,7 @@ async function update() {
|
|
|
588883
588894
|
await gracefulShutdown(0);
|
|
588884
588895
|
}
|
|
588885
588896
|
logEvent("tengu_update_check", {});
|
|
588886
|
-
writeToStdout(`Current version: ${"0.8.
|
|
588897
|
+
writeToStdout(`Current version: ${"0.8.8"}
|
|
588887
588898
|
`);
|
|
588888
588899
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
588889
588900
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -588968,8 +588979,8 @@ async function update() {
|
|
|
588968
588979
|
writeToStdout(`Verboo Code is managed by Homebrew.
|
|
588969
588980
|
`);
|
|
588970
588981
|
const latest = await getLatestVersion(channel);
|
|
588971
|
-
if (latest && !gte("0.8.
|
|
588972
|
-
writeToStdout(`Update available: ${"0.8.
|
|
588982
|
+
if (latest && !gte("0.8.8", latest)) {
|
|
588983
|
+
writeToStdout(`Update available: ${"0.8.8"} → ${latest}
|
|
588973
588984
|
`);
|
|
588974
588985
|
writeToStdout(`
|
|
588975
588986
|
`);
|
|
@@ -588985,8 +588996,8 @@ async function update() {
|
|
|
588985
588996
|
writeToStdout(`Verboo Code is managed by winget.
|
|
588986
588997
|
`);
|
|
588987
588998
|
const latest = await getLatestVersion(channel);
|
|
588988
|
-
if (latest && !gte("0.8.
|
|
588989
|
-
writeToStdout(`Update available: ${"0.8.
|
|
588999
|
+
if (latest && !gte("0.8.8", latest)) {
|
|
589000
|
+
writeToStdout(`Update available: ${"0.8.8"} → ${latest}
|
|
588990
589001
|
`);
|
|
588991
589002
|
writeToStdout(`
|
|
588992
589003
|
`);
|
|
@@ -589002,8 +589013,8 @@ async function update() {
|
|
|
589002
589013
|
writeToStdout(`Verboo Code is managed by apk.
|
|
589003
589014
|
`);
|
|
589004
589015
|
const latest = await getLatestVersion(channel);
|
|
589005
|
-
if (latest && !gte("0.8.
|
|
589006
|
-
writeToStdout(`Update available: ${"0.8.
|
|
589016
|
+
if (latest && !gte("0.8.8", latest)) {
|
|
589017
|
+
writeToStdout(`Update available: ${"0.8.8"} → ${latest}
|
|
589007
589018
|
`);
|
|
589008
589019
|
writeToStdout(`
|
|
589009
589020
|
`);
|
|
@@ -589068,11 +589079,11 @@ async function update() {
|
|
|
589068
589079
|
`);
|
|
589069
589080
|
await gracefulShutdown(1);
|
|
589070
589081
|
}
|
|
589071
|
-
if (result.latestVersion === "0.8.
|
|
589072
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589082
|
+
if (result.latestVersion === "0.8.8") {
|
|
589083
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.8"})`) + `
|
|
589073
589084
|
`);
|
|
589074
589085
|
} else {
|
|
589075
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589086
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.8"} to version ${result.latestVersion}`) + `
|
|
589076
589087
|
`);
|
|
589077
589088
|
await regenerateCompletionCache();
|
|
589078
589089
|
}
|
|
@@ -589132,12 +589143,12 @@ async function update() {
|
|
|
589132
589143
|
`);
|
|
589133
589144
|
await gracefulShutdown(1);
|
|
589134
589145
|
}
|
|
589135
|
-
if (latestVersion === "0.8.
|
|
589136
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589146
|
+
if (latestVersion === "0.8.8") {
|
|
589147
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.8"})`) + `
|
|
589137
589148
|
`);
|
|
589138
589149
|
await gracefulShutdown(0);
|
|
589139
589150
|
}
|
|
589140
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.
|
|
589151
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.8"})
|
|
589141
589152
|
`);
|
|
589142
589153
|
writeToStdout(`Installing update...
|
|
589143
589154
|
`);
|
|
@@ -589182,7 +589193,7 @@ async function update() {
|
|
|
589182
589193
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
589183
589194
|
switch (status2) {
|
|
589184
589195
|
case "success":
|
|
589185
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589196
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.8"} to version ${latestVersion}`) + `
|
|
589186
589197
|
`);
|
|
589187
589198
|
await regenerateCompletionCache();
|
|
589188
589199
|
break;
|
|
@@ -590442,7 +590453,7 @@ ${customInstructions}` : customInstructions;
|
|
|
590442
590453
|
is_native_binary: isInBundledMode()
|
|
590443
590454
|
});
|
|
590444
590455
|
logMemoryDiagnostics("start", {
|
|
590445
|
-
version: "0.8.
|
|
590456
|
+
version: "0.8.8",
|
|
590446
590457
|
debug: debug2,
|
|
590447
590458
|
debugToStderr,
|
|
590448
590459
|
print: print ?? false,
|
|
@@ -591248,7 +591259,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
591248
591259
|
pendingHookMessages
|
|
591249
591260
|
}, renderAndRun);
|
|
591250
591261
|
}
|
|
591251
|
-
}).version(`0.8.
|
|
591262
|
+
}).version(`0.8.8 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
591252
591263
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
591253
591264
|
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
591265
|
if (canUserConfigureAdvisor()) {
|
|
@@ -591822,7 +591833,7 @@ if (false) {}
|
|
|
591822
591833
|
async function main2() {
|
|
591823
591834
|
const args = process.argv.slice(2);
|
|
591824
591835
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
591825
|
-
console.log(`${"0.8.
|
|
591836
|
+
console.log(`${"0.8.8"} (Verboo Code)`);
|
|
591826
591837
|
return;
|
|
591827
591838
|
}
|
|
591828
591839
|
if (!IS_VERBOO_CLI && args.includes("--provider")) {
|
|
@@ -591987,4 +591998,4 @@ async function main2() {
|
|
|
591987
591998
|
}
|
|
591988
591999
|
main2();
|
|
591989
592000
|
|
|
591990
|
-
//# debugId=
|
|
592001
|
+
//# debugId=2C9E0A9507621FFB64756E2164756E21
|