@vm0/cli 9.199.5 → 9.199.6
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.
|
@@ -72936,7 +72936,7 @@ if (DSN) {
|
|
|
72936
72936
|
init2({
|
|
72937
72937
|
dsn: DSN,
|
|
72938
72938
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
72939
|
-
release: "9.199.
|
|
72939
|
+
release: "9.199.6",
|
|
72940
72940
|
sendDefaultPii: false,
|
|
72941
72941
|
tracesSampleRate: 0,
|
|
72942
72942
|
shutdownTimeout: 500,
|
|
@@ -72955,7 +72955,7 @@ if (DSN) {
|
|
|
72955
72955
|
}
|
|
72956
72956
|
});
|
|
72957
72957
|
setContext("cli", {
|
|
72958
|
-
version: "9.199.
|
|
72958
|
+
version: "9.199.6",
|
|
72959
72959
|
command: process.argv.slice(2).join(" ")
|
|
72960
72960
|
});
|
|
72961
72961
|
setContext("runtime", {
|
|
@@ -166610,4 +166610,4 @@ undici/lib/web/fetch/body.js:
|
|
|
166610
166610
|
undici/lib/web/websocket/frame.js:
|
|
166611
166611
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
166612
166612
|
*/
|
|
166613
|
-
//# sourceMappingURL=chunk-
|
|
166613
|
+
//# sourceMappingURL=chunk-YMC5XY7J.js.map
|
package/index.js
CHANGED
|
@@ -75,7 +75,7 @@ import {
|
|
|
75
75
|
uo,
|
|
76
76
|
volumeConfigSchema,
|
|
77
77
|
withErrorHandler
|
|
78
|
-
} from "./chunk-
|
|
78
|
+
} from "./chunk-YMC5XY7J.js";
|
|
79
79
|
import "./chunk-FDYQ7Z5J.js";
|
|
80
80
|
import {
|
|
81
81
|
__toESM,
|
|
@@ -409,7 +409,7 @@ function getConfigPath() {
|
|
|
409
409
|
return join(os.homedir(), ".vm0", "config.json");
|
|
410
410
|
}
|
|
411
411
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
412
|
-
console.log(source_default.bold(`VM0 CLI v${"9.199.
|
|
412
|
+
console.log(source_default.bold(`VM0 CLI v${"9.199.6"}`));
|
|
413
413
|
console.log();
|
|
414
414
|
const config = await loadConfig();
|
|
415
415
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -1111,7 +1111,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
1111
1111
|
options.autoUpdate = false;
|
|
1112
1112
|
}
|
|
1113
1113
|
if (options.autoUpdate !== false) {
|
|
1114
|
-
await startSilentUpgrade("9.199.
|
|
1114
|
+
await startSilentUpgrade("9.199.6");
|
|
1115
1115
|
}
|
|
1116
1116
|
try {
|
|
1117
1117
|
const { config, agentName, agent, basePath } = await loadAndValidateConfig(resolvedConfigFile);
|
|
@@ -1208,7 +1208,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
1208
1208
|
withErrorHandler(
|
|
1209
1209
|
async (identifier, prompt, options) => {
|
|
1210
1210
|
if (options.autoUpdate !== false) {
|
|
1211
|
-
await startSilentUpgrade("9.199.
|
|
1211
|
+
await startSilentUpgrade("9.199.6");
|
|
1212
1212
|
}
|
|
1213
1213
|
const { name, version } = parseIdentifier(identifier);
|
|
1214
1214
|
let composeId;
|
|
@@ -3014,13 +3014,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
3014
3014
|
if (latestVersion === null) {
|
|
3015
3015
|
throw new Error("Could not check for updates. Please try again later.");
|
|
3016
3016
|
}
|
|
3017
|
-
if (latestVersion === "9.199.
|
|
3018
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.199.
|
|
3017
|
+
if (latestVersion === "9.199.6") {
|
|
3018
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.199.6"})`));
|
|
3019
3019
|
return;
|
|
3020
3020
|
}
|
|
3021
3021
|
console.log(
|
|
3022
3022
|
source_default.yellow(
|
|
3023
|
-
`Current version: ${"9.199.
|
|
3023
|
+
`Current version: ${"9.199.6"} -> Latest version: ${latestVersion}`
|
|
3024
3024
|
)
|
|
3025
3025
|
);
|
|
3026
3026
|
console.log();
|
|
@@ -3047,7 +3047,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
3047
3047
|
const success = await performUpgrade(packageManager);
|
|
3048
3048
|
if (success) {
|
|
3049
3049
|
console.log(
|
|
3050
|
-
source_default.green(`\u2713 Upgraded from ${"9.199.
|
|
3050
|
+
source_default.green(`\u2713 Upgraded from ${"9.199.6"} to ${latestVersion}`)
|
|
3051
3051
|
);
|
|
3052
3052
|
return;
|
|
3053
3053
|
}
|
|
@@ -3114,7 +3114,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
3114
3114
|
|
|
3115
3115
|
// src/index.ts
|
|
3116
3116
|
var program = new Command();
|
|
3117
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.199.
|
|
3117
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.199.6");
|
|
3118
3118
|
program.addCommand(authCommand);
|
|
3119
3119
|
program.addCommand(infoCommand);
|
|
3120
3120
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -185,7 +185,7 @@ import {
|
|
|
185
185
|
uploadWebFile,
|
|
186
186
|
upsertZeroOrgModelProvider,
|
|
187
187
|
withErrorHandler
|
|
188
|
-
} from "./chunk-
|
|
188
|
+
} from "./chunk-YMC5XY7J.js";
|
|
189
189
|
import "./chunk-FDYQ7Z5J.js";
|
|
190
190
|
import {
|
|
191
191
|
__toESM,
|
|
@@ -10988,7 +10988,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
10988
10988
|
var program = new Command();
|
|
10989
10989
|
program.name("zero").description(
|
|
10990
10990
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
10991
|
-
).version("9.199.
|
|
10991
|
+
).version("9.199.6").addHelpText("after", () => {
|
|
10992
10992
|
return buildZeroHelpText();
|
|
10993
10993
|
});
|
|
10994
10994
|
if (process.argv[1]?.endsWith("zero.js") || process.argv[1]?.endsWith("zero.ts") || process.argv[1]?.endsWith("zero")) {
|
|
File without changes
|