@vm0/cli 9.30.0 → 9.30.1
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.30.
|
|
48
|
+
release: "9.30.1",
|
|
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.30.
|
|
67
|
+
version: "9.30.1",
|
|
68
68
|
command: process.argv.slice(2).join(" ")
|
|
69
69
|
});
|
|
70
70
|
Sentry.setContext("runtime", {
|
|
@@ -605,7 +605,7 @@ async function waitForSilentUpgrade(timeout = TIMEOUT_MS) {
|
|
|
605
605
|
// src/commands/info/index.ts
|
|
606
606
|
var CONFIG_PATH = join2(homedir2(), ".vm0", "config.json");
|
|
607
607
|
var infoCommand = new Command6().name("info").description("Display environment and debug information").action(async () => {
|
|
608
|
-
console.log(chalk7.bold(`VM0 CLI v${"9.30.
|
|
608
|
+
console.log(chalk7.bold(`VM0 CLI v${"9.30.1"}`));
|
|
609
609
|
console.log();
|
|
610
610
|
const config = await loadConfig();
|
|
611
611
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -6118,7 +6118,7 @@ var composeCommand = new Command7().name("compose").description("Create or updat
|
|
|
6118
6118
|
options.autoUpdate = false;
|
|
6119
6119
|
}
|
|
6120
6120
|
if (options.autoUpdate !== false) {
|
|
6121
|
-
await startSilentUpgrade("9.30.
|
|
6121
|
+
await startSilentUpgrade("9.30.1");
|
|
6122
6122
|
}
|
|
6123
6123
|
try {
|
|
6124
6124
|
let result;
|
|
@@ -8315,7 +8315,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
|
|
|
8315
8315
|
async (identifier, prompt, options) => {
|
|
8316
8316
|
try {
|
|
8317
8317
|
if (options.autoUpdate !== false) {
|
|
8318
|
-
await startSilentUpgrade("9.30.
|
|
8318
|
+
await startSilentUpgrade("9.30.1");
|
|
8319
8319
|
}
|
|
8320
8320
|
const { scope, name, version } = parseIdentifier(identifier);
|
|
8321
8321
|
if (scope && !options.experimentalSharedAgent) {
|
|
@@ -9888,7 +9888,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
9888
9888
|
).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(
|
|
9889
9889
|
async (prompt, options) => {
|
|
9890
9890
|
if (options.autoUpdate !== false) {
|
|
9891
|
-
const shouldExit = await checkAndUpgrade("9.30.
|
|
9891
|
+
const shouldExit = await checkAndUpgrade("9.30.1", prompt);
|
|
9892
9892
|
if (shouldExit) {
|
|
9893
9893
|
process.exit(0);
|
|
9894
9894
|
}
|
|
@@ -14304,7 +14304,7 @@ var devToolCommand = new Command75().name("dev-tool").description("Developer too
|
|
|
14304
14304
|
|
|
14305
14305
|
// src/index.ts
|
|
14306
14306
|
var program = new Command76();
|
|
14307
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.30.
|
|
14307
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.30.1");
|
|
14308
14308
|
program.addCommand(authCommand);
|
|
14309
14309
|
program.addCommand(infoCommand);
|
|
14310
14310
|
program.addCommand(composeCommand);
|