@vm0/cli 9.37.3 → 9.37.4
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/index.js +7 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -45,7 +45,7 @@ if (DSN) {
|
|
|
45
45
|
Sentry.init({
|
|
46
46
|
dsn: DSN,
|
|
47
47
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
48
|
-
release: "9.37.
|
|
48
|
+
release: "9.37.4",
|
|
49
49
|
sendDefaultPii: false,
|
|
50
50
|
tracesSampleRate: 0,
|
|
51
51
|
shutdownTimeout: 500,
|
|
@@ -64,7 +64,7 @@ if (DSN) {
|
|
|
64
64
|
}
|
|
65
65
|
});
|
|
66
66
|
Sentry.setContext("cli", {
|
|
67
|
-
version: "9.37.
|
|
67
|
+
version: "9.37.4",
|
|
68
68
|
command: process.argv.slice(2).join(" ")
|
|
69
69
|
});
|
|
70
70
|
Sentry.setContext("runtime", {
|
|
@@ -607,7 +607,7 @@ function getConfigPath() {
|
|
|
607
607
|
return join2(homedir2(), ".vm0", "config.json");
|
|
608
608
|
}
|
|
609
609
|
var infoCommand = new Command6().name("info").description("Display environment and debug information").action(async () => {
|
|
610
|
-
console.log(chalk7.bold(`VM0 CLI v${"9.37.
|
|
610
|
+
console.log(chalk7.bold(`VM0 CLI v${"9.37.4"}`));
|
|
611
611
|
console.log();
|
|
612
612
|
const config = await loadConfig();
|
|
613
613
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -6443,7 +6443,7 @@ var composeCommand = new Command7().name("compose").description("Create or updat
|
|
|
6443
6443
|
options.autoUpdate = false;
|
|
6444
6444
|
}
|
|
6445
6445
|
if (options.autoUpdate !== false) {
|
|
6446
|
-
await startSilentUpgrade("9.37.
|
|
6446
|
+
await startSilentUpgrade("9.37.4");
|
|
6447
6447
|
}
|
|
6448
6448
|
try {
|
|
6449
6449
|
let result;
|
|
@@ -8657,7 +8657,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
|
|
|
8657
8657
|
async (identifier, prompt, options) => {
|
|
8658
8658
|
try {
|
|
8659
8659
|
if (options.autoUpdate !== false) {
|
|
8660
|
-
await startSilentUpgrade("9.37.
|
|
8660
|
+
await startSilentUpgrade("9.37.4");
|
|
8661
8661
|
}
|
|
8662
8662
|
const { scope, name, version } = parseIdentifier(identifier);
|
|
8663
8663
|
if (scope && !options.experimentalSharedAgent) {
|
|
@@ -10233,7 +10233,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
10233
10233
|
).option("-y, --yes", "Skip confirmation prompts").option("-v, --verbose", "Show full tool inputs and outputs").addOption(new Option5("--debug-no-mock-claude").hideHelp()).addOption(new Option5("--no-auto-update").hideHelp()).action(
|
|
10234
10234
|
async (prompt, options) => {
|
|
10235
10235
|
if (options.autoUpdate !== false) {
|
|
10236
|
-
const shouldExit = await checkAndUpgrade("9.37.
|
|
10236
|
+
const shouldExit = await checkAndUpgrade("9.37.4", prompt);
|
|
10237
10237
|
if (shouldExit) {
|
|
10238
10238
|
process.exit(0);
|
|
10239
10239
|
}
|
|
@@ -14958,7 +14958,7 @@ var preferenceCommand = new Command77().name("preference").description("View or
|
|
|
14958
14958
|
|
|
14959
14959
|
// src/index.ts
|
|
14960
14960
|
var program = new Command78();
|
|
14961
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.37.
|
|
14961
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.37.4");
|
|
14962
14962
|
program.addCommand(authCommand);
|
|
14963
14963
|
program.addCommand(infoCommand);
|
|
14964
14964
|
program.addCommand(composeCommand);
|