@verboo/code 0.8.8 → 0.8.9
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 +73 -39
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -389797,9 +389797,43 @@ async function* queryLoop(params, consumedCommandUuids) {
|
|
|
389797
389797
|
const lastAssistant = assistantMessages.at(-1);
|
|
389798
389798
|
if (lastAssistant?.type === "assistant") {
|
|
389799
389799
|
const lastText = lastAssistant.message.content.filter((b) => b.type === "text").map((b) => b.text).join(" ").toLowerCase();
|
|
389800
|
-
const
|
|
389801
|
-
|
|
389802
|
-
|
|
389800
|
+
const VERBS_EN = "do|create|write|edit|update|fix|implement|add|run|check|make|build|set up|deploy|test|install|refactor|investigate|search|explore|analyze|analyse|review|validate|patch|start|finish|prepare|plan|design|draft|generate|produce|begin|commit|push|debug|verify|inspect|trace|compile|launch|kick off|spin up|wire up|hook up|tackle|address|handle";
|
|
389801
|
+
const VERBS_PT = "fazer|criar|escrever|editar|atualizar|corrigir|consertar|implementar|adicionar|incluir|rodar|executar|verificar|checar|construir|montar|configurar|come[çc]ar|iniciar|continuar|seguir|proceder|prosseguir|deployar|testar|instalar|refatorar|investigar|buscar|procurar|explorar|analisar|revisar|validar|terminar|preparar|planejar|desenhar|esbo[çc]ar|rascunhar|gerar|produzir|commitar|push(ar|ear)|debugar|inspecionar|tra[çc]ar|compilar|subir|lan[çc]ar|atacar|tratar|resolver|abordar|mexer (no|na|nos|nas|em)|alterar|trocar|substituir";
|
|
389802
|
+
const continuationSignals = [
|
|
389803
|
+
new RegExp(`\\bso now (i|let me|we|i'll) (need to|have to|should|must|will|am going to|am about to)?\\s*(${VERBS_EN})\\b`),
|
|
389804
|
+
new RegExp(`\\bnow (i('ll| will| am going to| am about to)|let me|we'll|we will)\\s+(${VERBS_EN}|go|proceed)\\b`),
|
|
389805
|
+
new RegExp(`\\blet me (go ahead and |now |first |then |also |quickly |actually )?(${VERBS_EN}|proceed)\\b`),
|
|
389806
|
+
new RegExp(`\\bi'?m (going to|about to|gonna)\\s+(${VERBS_EN}|go|proceed)\\b`),
|
|
389807
|
+
...lastText.length < 200 ? [new RegExp(`\\bi('ll| will| need to| have to| must)\\s+(now |then |first |also |actually )?(${VERBS_EN})\\b`)] : [],
|
|
389808
|
+
new RegExp(`\\btime to\\s+(${VERBS_EN}|get started)\\b`),
|
|
389809
|
+
new RegExp(`\\b(next|first|then|after that|moving on|onto|on to),?\\s+(i('ll| will)|let me|i need to|i'?m going to)\\s+(${VERBS_EN})\\b`),
|
|
389810
|
+
new RegExp(`\\b(starting with|beginning by|tackling|diving into|heading (in)?to|stepping into|kicking off|moving to|going to|about to)\\s+(the |a |an )?(${VERBS_EN}|task|step|next|implementation)\\b`),
|
|
389811
|
+
/\b(continuing|proceeding|moving) (with|to|on)\b/,
|
|
389812
|
+
/\bplan(:|\s+is to|\s+now is|\s+here is)\b/,
|
|
389813
|
+
/\b(step|phase|stage)\s*\d+\b/,
|
|
389814
|
+
/\b(first|next|then|finally|lastly),?\s+(i('ll| will)|let me)\b/,
|
|
389815
|
+
/\b(here'?s|here is) (the|my|what) (plan|approach|strategy|steps)\b/,
|
|
389816
|
+
/\bgoing to (start|begin) (by|with)\b/,
|
|
389817
|
+
/\bonce (that'?s|that is|i'?m) done,?\s+(i('ll| will)|let me)\b/,
|
|
389818
|
+
new RegExp(`\\b(agora|ent[ãa]o|ai|a[ií]|da[íi])\\s+(vou|preciso|posso|tenho que|devo|estou indo|estou prestes a|irei|farei|seguirei|come[çc]arei|continuarei)\\s+(${VERBS_PT})\\b`),
|
|
389819
|
+
new RegExp(`\\bvou\\s+(${VERBS_PT})\\b`),
|
|
389820
|
+
new RegExp(`\\b(vamos|bora)\\s+(${VERBS_PT})\\b`),
|
|
389821
|
+
new RegExp(`\\b(deixa|deixe)\\s+(eu|me)\\s+(${VERBS_PT})\\b`),
|
|
389822
|
+
new RegExp(`\\bhora de\\s+(${VERBS_PT}|come[çc]ar|seguir|continuar|botar a m[ãa]o)\\b`),
|
|
389823
|
+
new RegExp(`\\b(pretendo|tenciono|planejo|preciso|tenho que|devo)\\s+(${VERBS_PT})\\b`),
|
|
389824
|
+
new RegExp(`\\b(estou|t[ôo])\\s+(indo|prestes a|come[çc]ando a|partindo para|partindo pra|encaminhando para)\\s+(${VERBS_PT})\\b`),
|
|
389825
|
+
new RegExp(`\\b(pegando|partindo|seguindo|avan[çc]ando|encaminhando|indo)\\s+(para|pra)\\s+(${VERBS_PT})\\b`),
|
|
389826
|
+
/\b(pr[óo]ximo passo|em seguida|a seguir|na sequ[êe]ncia|seguindo em frente|m[ãa]os [àa] obra|partiu|bora l[áa]|l[áa] vai|l[áa] vou eu|j[áa] vou|aqui vai|manda ver|j[áa] j[áa]|de cara)\b/,
|
|
389827
|
+
new RegExp(`\\b(continuando|prosseguindo|seguindo|avan[çc]ando|retomando)(\\s+com|\\s+a|\\s+o|\\s+para|\\s+pra|,)`),
|
|
389828
|
+
/\b(passo|etapa|fase)\s*\d+\b/,
|
|
389829
|
+
/\b(plano|estrat[ée]gia|abordagem|roteiro|sequ[êe]ncia)(:|\s+[ée]|\s+seria|\s+ser[áa]|\s+aqui [ée])\b/,
|
|
389830
|
+
new RegExp(`\\b(primeiro|depois|ent[ãa]o|em seguida|por fim|por [úu]ltimo|ap[óo]s isso),?\\s+(vou|preciso|tenho que|devo|farei|criarei|implementarei|come[çc]arei|verificarei|checarei|seguirei|continuarei|terminarei|rodarei|executarei|testarei)\\b`),
|
|
389831
|
+
/\b(aqui (vai|est[áa])|aqui segue) (o|a|os|as|meu|minha)?\s*(plano|abordagem|estrat[ée]gia|roteiro|passos|etapas)\b/,
|
|
389832
|
+
new RegExp(`\\bquando (terminar|acabar|finalizar) (essa|esta|essa parte|esta parte),?\\s+(vou|farei|seguirei)\\s+(${VERBS_PT})\\b`)
|
|
389833
|
+
];
|
|
389834
|
+
const completionMarkers = /\b(done|finished|completed|complete|summary|that's all|that is all|all (set|good|finished|done)|hope (this|that) helps|let me know if|happy to help|anything (else|more|i can)|feel free to (ask|tell|share|let)|if you need|is there anything|i'?m here|available if|task (complete|is complete|done|finished|is done|is finished)|i'?m done|we'?re done|wrapping (up|things up)|that should (do it|cover)|sounds good|all yours|over to you|ready for (review|next)|pronto|conclu[íi]do|finalizado|terminado|encerrad[oa]|conclus[ãa]o|resumo|isso [ée] tudo|isso [ée] o que|espero (que ajude|ter ajudado)|qualquer (d[úu]vida|coisa(\s+(avise|me avise|me chame|chame|fale))?)|fico [àa] disposi[çc][ãa]o|estou [àa] (sua )?disposi[çc][ãa]o|para mais informa[çc][õo]es|feliz em ajudar|tudo (certo|pronto|feito|ok|certinho)|est[áa] (feito|pronto|tudo certo|ok)|tarefa (conclu[íi]da|finalizada|completada|pronta|encerrada)|como posso ajudar|posso ajudar (em mais|com algo)|precisa de (mais alguma coisa|algo mais)|se precisar de (algo|mais)|aguardo (suas instru[çc][õo]es|sua resposta|seu retorno)|me avise se|deixe me saber se|qualquer outra (coisa|d[úu]vida))\b/;
|
|
389835
|
+
if (completionMarkers.test(lastText)) {} else if (continuationSignals.some((re) => re.test(lastText))) {
|
|
389836
|
+
logForDebugging2(`Continuation nudge triggered (${state2.continuationNudgeCount + 1}/${MAX_CONTINUATION_NUDGES}): model said "${lastText.slice(-120)}" without tool calls`);
|
|
389803
389837
|
const nudge = createUserMessage({
|
|
389804
389838
|
content: "Continue with the task. Use the appropriate tools to proceed.",
|
|
389805
389839
|
isMeta: true
|
|
@@ -389826,7 +389860,7 @@ async function* queryLoop(params, consumedCommandUuids) {
|
|
|
389826
389860
|
const lastAssistantForDiag = assistantMessages.at(-1);
|
|
389827
389861
|
const lastTextForDiag = lastAssistantForDiag?.type === "assistant" ? lastAssistantForDiag.message.content.filter((b) => b.type === "text").map((b) => b.text).join(" ") : "";
|
|
389828
389862
|
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|
|
|
389863
|
+
const completionMarkersDiag = /\b(done|finished|completed|complete|summary|that's all|that is all|all (set|good|finished|done)|hope (this|that) helps|let me know if|happy to help|anything (else|more|i can)|feel free to (ask|tell|share|let)|if you need|is there anything|i'?m here|available if|task (complete|is complete|done|finished|is done|is finished)|i'?m done|we'?re done|wrapping (up|things up)|that should (do it|cover)|sounds good|all yours|over to you|ready for (review|next)|pronto|conclu[íi]do|finalizado|terminado|encerrad[oa]|conclus[ãa]o|resumo|isso [ée] tudo|isso [ée] o que|espero (que ajude|ter ajudado)|qualquer (d[úu]vida|coisa(\s+(avise|me avise|me chame|chame|fale))?)|fico [àa] disposi[çc][ãa]o|estou [àa] (sua )?disposi[çc][ãa]o|para mais informa[çc][õo]es|feliz em ajudar|tudo (certo|pronto|feito|ok|certinho)|est[áa] (feito|pronto|tudo certo|ok)|tarefa (conclu[íi]da|finalizada|completada|pronta|encerrada)|como posso ajudar|posso ajudar (em mais|com algo)|precisa de (mais alguma coisa|algo mais)|se precisar de (algo|mais)|aguardo (suas instru[çc][õo]es|sua resposta|seu retorno)|me avise se|deixe me saber se|qualquer outra (coisa|d[úu]vida))\b/;
|
|
389830
389864
|
logForDebugging2(JSON.stringify({
|
|
389831
389865
|
type: "silent_stop_diagnostic",
|
|
389832
389866
|
turnCount,
|
|
@@ -390153,7 +390187,7 @@ function getAnthropicEnvMetadata() {
|
|
|
390153
390187
|
function getBuildAgeMinutes() {
|
|
390154
390188
|
if (false)
|
|
390155
390189
|
;
|
|
390156
|
-
const buildTime = new Date("2026-05-13T14:
|
|
390190
|
+
const buildTime = new Date("2026-05-13T14:13:32.092Z").getTime();
|
|
390157
390191
|
if (isNaN(buildTime))
|
|
390158
390192
|
return;
|
|
390159
390193
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -418274,7 +418308,7 @@ function buildPrimarySection() {
|
|
|
418274
418308
|
}, undefined, false, undefined, this);
|
|
418275
418309
|
return [{
|
|
418276
418310
|
label: "Version",
|
|
418277
|
-
value: "0.8.
|
|
418311
|
+
value: "0.8.9"
|
|
418278
418312
|
}, {
|
|
418279
418313
|
label: "Session name",
|
|
418280
418314
|
value: nameValue
|
|
@@ -432569,7 +432603,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
|
|
|
432569
432603
|
return `${VERBOO_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
|
|
432570
432604
|
}
|
|
432571
432605
|
function getPublicBuildVersion() {
|
|
432572
|
-
return "0.8.
|
|
432606
|
+
return "0.8.9";
|
|
432573
432607
|
}
|
|
432574
432608
|
var import_semver10, VERBOO_RELEASES_URL = "https://github.com/verbeux-ai/code/releases", fallbackBuildVersion, publicBuildVersion;
|
|
432575
432609
|
var init_version = __esm(() => {
|
|
@@ -487665,7 +487699,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
487665
487699
|
var call62 = async () => {
|
|
487666
487700
|
return {
|
|
487667
487701
|
type: "text",
|
|
487668
|
-
value: `${"99.0.0"} (built ${"2026-05-13T14:
|
|
487702
|
+
value: `${"99.0.0"} (built ${"2026-05-13T14:13:32.092Z"})`
|
|
487669
487703
|
};
|
|
487670
487704
|
}, version2, version_default;
|
|
487671
487705
|
var init_version2 = __esm(() => {
|
|
@@ -519822,7 +519856,7 @@ function printStartupScreen(modelOverride) {
|
|
|
519822
519856
|
const home = process.env.HOME || process.env.USERPROFILE || "";
|
|
519823
519857
|
const cwd2 = process.cwd();
|
|
519824
519858
|
const displayCwd = home && cwd2.startsWith(home) ? `~${cwd2.slice(home.length)}` : cwd2;
|
|
519825
|
-
const version3 = "0.8.
|
|
519859
|
+
const version3 = "0.8.9";
|
|
519826
519860
|
const bold2 = `${ESC3}1m`;
|
|
519827
519861
|
const PURPLE = rgb3(...ACCENT);
|
|
519828
519862
|
const SOFT = rgb3(...CREAM);
|
|
@@ -538056,7 +538090,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
538056
538090
|
function getSemverPart(version3) {
|
|
538057
538091
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
538058
538092
|
}
|
|
538059
|
-
function useUpdateNotification(updatedVersion, initialVersion = "0.8.
|
|
538093
|
+
function useUpdateNotification(updatedVersion, initialVersion = "0.8.9") {
|
|
538060
538094
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react223.useState(() => getSemverPart(initialVersion));
|
|
538061
538095
|
const [pendingNotification2, setPendingNotification] = import_react223.useState(null);
|
|
538062
538096
|
if (updatedVersion) {
|
|
@@ -538096,7 +538130,7 @@ function AutoUpdater({
|
|
|
538096
538130
|
return;
|
|
538097
538131
|
}
|
|
538098
538132
|
if (false) {}
|
|
538099
|
-
const currentVersion = "0.8.
|
|
538133
|
+
const currentVersion = "0.8.9";
|
|
538100
538134
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
538101
538135
|
let latestVersion = await getLatestVersion(channel);
|
|
538102
538136
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -538449,17 +538483,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538449
538483
|
const maxVersion = await getMaxVersion();
|
|
538450
538484
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
538451
538485
|
logForDebugging2(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
538452
|
-
if (gte("0.8.
|
|
538453
|
-
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.
|
|
538486
|
+
if (gte("0.8.9", maxVersion)) {
|
|
538487
|
+
logForDebugging2(`PackageManagerAutoUpdater: current version ${"0.8.9"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
538454
538488
|
setUpdateAvailable(false);
|
|
538455
538489
|
return;
|
|
538456
538490
|
}
|
|
538457
538491
|
latest = maxVersion;
|
|
538458
538492
|
}
|
|
538459
|
-
const hasUpdate = latest && !gte("0.8.
|
|
538493
|
+
const hasUpdate = latest && !gte("0.8.9", latest) && !shouldSkipVersion(latest);
|
|
538460
538494
|
setUpdateAvailable(!!hasUpdate);
|
|
538461
538495
|
if (hasUpdate) {
|
|
538462
|
-
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.
|
|
538496
|
+
logForDebugging2(`PackageManagerAutoUpdater: Update available ${"0.8.9"} -> ${latest}`);
|
|
538463
538497
|
}
|
|
538464
538498
|
};
|
|
538465
538499
|
$2[0] = t1;
|
|
@@ -538493,7 +538527,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
538493
538527
|
wrap: "truncate",
|
|
538494
538528
|
children: [
|
|
538495
538529
|
"currentVersion: ",
|
|
538496
|
-
"0.8.
|
|
538530
|
+
"0.8.9"
|
|
538497
538531
|
]
|
|
538498
538532
|
}, undefined, true, undefined, this);
|
|
538499
538533
|
$2[3] = verbose;
|
|
@@ -570900,7 +570934,7 @@ function WelcomeV2() {
|
|
|
570900
570934
|
dimColor: true,
|
|
570901
570935
|
children: [
|
|
570902
570936
|
"v",
|
|
570903
|
-
"0.8.
|
|
570937
|
+
"0.8.9",
|
|
570904
570938
|
" "
|
|
570905
570939
|
]
|
|
570906
570940
|
}, undefined, true, undefined, this)
|
|
@@ -571087,7 +571121,7 @@ function WelcomeV2() {
|
|
|
571087
571121
|
dimColor: true,
|
|
571088
571122
|
children: [
|
|
571089
571123
|
"v",
|
|
571090
|
-
"0.8.
|
|
571124
|
+
"0.8.9",
|
|
571091
571125
|
" "
|
|
571092
571126
|
]
|
|
571093
571127
|
}, undefined, true, undefined, this)
|
|
@@ -571303,7 +571337,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571303
571337
|
dimColor: true,
|
|
571304
571338
|
children: [
|
|
571305
571339
|
"v",
|
|
571306
|
-
"0.8.
|
|
571340
|
+
"0.8.9",
|
|
571307
571341
|
" "
|
|
571308
571342
|
]
|
|
571309
571343
|
}, undefined, true, undefined, this);
|
|
@@ -571512,7 +571546,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
571512
571546
|
dimColor: true,
|
|
571513
571547
|
children: [
|
|
571514
571548
|
"v",
|
|
571515
|
-
"0.8.
|
|
571549
|
+
"0.8.9",
|
|
571516
571550
|
" "
|
|
571517
571551
|
]
|
|
571518
571552
|
}, undefined, true, undefined, this);
|
|
@@ -588883,7 +588917,7 @@ __export(exports_update, {
|
|
|
588883
588917
|
async function update() {
|
|
588884
588918
|
if (getAPIProvider() !== "firstParty") {
|
|
588885
588919
|
writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
|
|
588886
|
-
`) + `Current version: ${"0.8.
|
|
588920
|
+
`) + `Current version: ${"0.8.9"}
|
|
588887
588921
|
|
|
588888
588922
|
` + `To update, reinstall from npm:
|
|
588889
588923
|
` + source_default.bold(` npm install -g ${"@verboo/code"}@latest`) + `
|
|
@@ -588894,7 +588928,7 @@ async function update() {
|
|
|
588894
588928
|
await gracefulShutdown(0);
|
|
588895
588929
|
}
|
|
588896
588930
|
logEvent("tengu_update_check", {});
|
|
588897
|
-
writeToStdout(`Current version: ${"0.8.
|
|
588931
|
+
writeToStdout(`Current version: ${"0.8.9"}
|
|
588898
588932
|
`);
|
|
588899
588933
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
588900
588934
|
writeToStdout(`Checking for updates to ${channel} version...
|
|
@@ -588979,8 +589013,8 @@ async function update() {
|
|
|
588979
589013
|
writeToStdout(`Verboo Code is managed by Homebrew.
|
|
588980
589014
|
`);
|
|
588981
589015
|
const latest = await getLatestVersion(channel);
|
|
588982
|
-
if (latest && !gte("0.8.
|
|
588983
|
-
writeToStdout(`Update available: ${"0.8.
|
|
589016
|
+
if (latest && !gte("0.8.9", latest)) {
|
|
589017
|
+
writeToStdout(`Update available: ${"0.8.9"} → ${latest}
|
|
588984
589018
|
`);
|
|
588985
589019
|
writeToStdout(`
|
|
588986
589020
|
`);
|
|
@@ -588996,8 +589030,8 @@ async function update() {
|
|
|
588996
589030
|
writeToStdout(`Verboo Code is managed by winget.
|
|
588997
589031
|
`);
|
|
588998
589032
|
const latest = await getLatestVersion(channel);
|
|
588999
|
-
if (latest && !gte("0.8.
|
|
589000
|
-
writeToStdout(`Update available: ${"0.8.
|
|
589033
|
+
if (latest && !gte("0.8.9", latest)) {
|
|
589034
|
+
writeToStdout(`Update available: ${"0.8.9"} → ${latest}
|
|
589001
589035
|
`);
|
|
589002
589036
|
writeToStdout(`
|
|
589003
589037
|
`);
|
|
@@ -589013,8 +589047,8 @@ async function update() {
|
|
|
589013
589047
|
writeToStdout(`Verboo Code is managed by apk.
|
|
589014
589048
|
`);
|
|
589015
589049
|
const latest = await getLatestVersion(channel);
|
|
589016
|
-
if (latest && !gte("0.8.
|
|
589017
|
-
writeToStdout(`Update available: ${"0.8.
|
|
589050
|
+
if (latest && !gte("0.8.9", latest)) {
|
|
589051
|
+
writeToStdout(`Update available: ${"0.8.9"} → ${latest}
|
|
589018
589052
|
`);
|
|
589019
589053
|
writeToStdout(`
|
|
589020
589054
|
`);
|
|
@@ -589079,11 +589113,11 @@ async function update() {
|
|
|
589079
589113
|
`);
|
|
589080
589114
|
await gracefulShutdown(1);
|
|
589081
589115
|
}
|
|
589082
|
-
if (result.latestVersion === "0.8.
|
|
589083
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589116
|
+
if (result.latestVersion === "0.8.9") {
|
|
589117
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.9"})`) + `
|
|
589084
589118
|
`);
|
|
589085
589119
|
} else {
|
|
589086
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589120
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.9"} to version ${result.latestVersion}`) + `
|
|
589087
589121
|
`);
|
|
589088
589122
|
await regenerateCompletionCache();
|
|
589089
589123
|
}
|
|
@@ -589143,12 +589177,12 @@ async function update() {
|
|
|
589143
589177
|
`);
|
|
589144
589178
|
await gracefulShutdown(1);
|
|
589145
589179
|
}
|
|
589146
|
-
if (latestVersion === "0.8.
|
|
589147
|
-
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.
|
|
589180
|
+
if (latestVersion === "0.8.9") {
|
|
589181
|
+
writeToStdout(source_default.green(`Verboo Code is up to date (${"0.8.9"})`) + `
|
|
589148
589182
|
`);
|
|
589149
589183
|
await gracefulShutdown(0);
|
|
589150
589184
|
}
|
|
589151
|
-
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.
|
|
589185
|
+
writeToStdout(`New version available: ${latestVersion} (current: ${"0.8.9"})
|
|
589152
589186
|
`);
|
|
589153
589187
|
writeToStdout(`Installing update...
|
|
589154
589188
|
`);
|
|
@@ -589193,7 +589227,7 @@ async function update() {
|
|
|
589193
589227
|
logForDebugging2(`update: Installation status: ${status2}`);
|
|
589194
589228
|
switch (status2) {
|
|
589195
589229
|
case "success":
|
|
589196
|
-
writeToStdout(source_default.green(`Successfully updated from ${"0.8.
|
|
589230
|
+
writeToStdout(source_default.green(`Successfully updated from ${"0.8.9"} to version ${latestVersion}`) + `
|
|
589197
589231
|
`);
|
|
589198
589232
|
await regenerateCompletionCache();
|
|
589199
589233
|
break;
|
|
@@ -590453,7 +590487,7 @@ ${customInstructions}` : customInstructions;
|
|
|
590453
590487
|
is_native_binary: isInBundledMode()
|
|
590454
590488
|
});
|
|
590455
590489
|
logMemoryDiagnostics("start", {
|
|
590456
|
-
version: "0.8.
|
|
590490
|
+
version: "0.8.9",
|
|
590457
590491
|
debug: debug2,
|
|
590458
590492
|
debugToStderr,
|
|
590459
590493
|
print: print ?? false,
|
|
@@ -591259,7 +591293,7 @@ Usage: verboo --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
591259
591293
|
pendingHookMessages
|
|
591260
591294
|
}, renderAndRun);
|
|
591261
591295
|
}
|
|
591262
|
-
}).version(`0.8.
|
|
591296
|
+
}).version(`0.8.9 (${cliDesc})`, "-v, --version", "Output the version number");
|
|
591263
591297
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
591264
591298
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
591265
591299
|
if (canUserConfigureAdvisor()) {
|
|
@@ -591833,7 +591867,7 @@ if (false) {}
|
|
|
591833
591867
|
async function main2() {
|
|
591834
591868
|
const args = process.argv.slice(2);
|
|
591835
591869
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
591836
|
-
console.log(`${"0.8.
|
|
591870
|
+
console.log(`${"0.8.9"} (Verboo Code)`);
|
|
591837
591871
|
return;
|
|
591838
591872
|
}
|
|
591839
591873
|
if (!IS_VERBOO_CLI && args.includes("--provider")) {
|
|
@@ -591998,4 +592032,4 @@ async function main2() {
|
|
|
591998
592032
|
}
|
|
591999
592033
|
main2();
|
|
592000
592034
|
|
|
592001
|
-
//# debugId=
|
|
592035
|
+
//# debugId=85EB46B624F936ED64756E2164756E21
|