@vm0/cli 9.137.1 → 9.137.2
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.
|
@@ -66716,7 +66716,7 @@ if (DSN) {
|
|
|
66716
66716
|
init2({
|
|
66717
66717
|
dsn: DSN,
|
|
66718
66718
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
66719
|
-
release: "9.137.
|
|
66719
|
+
release: "9.137.2",
|
|
66720
66720
|
sendDefaultPii: false,
|
|
66721
66721
|
tracesSampleRate: 0,
|
|
66722
66722
|
shutdownTimeout: 500,
|
|
@@ -66735,7 +66735,7 @@ if (DSN) {
|
|
|
66735
66735
|
}
|
|
66736
66736
|
});
|
|
66737
66737
|
setContext("cli", {
|
|
66738
|
-
version: "9.137.
|
|
66738
|
+
version: "9.137.2",
|
|
66739
66739
|
command: process.argv.slice(2).join(" ")
|
|
66740
66740
|
});
|
|
66741
66741
|
setContext("runtime", {
|
|
@@ -98869,4 +98869,4 @@ undici/lib/web/fetch/body.js:
|
|
|
98869
98869
|
undici/lib/web/websocket/frame.js:
|
|
98870
98870
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
98871
98871
|
*/
|
|
98872
|
-
//# sourceMappingURL=chunk-
|
|
98872
|
+
//# sourceMappingURL=chunk-FODJBXTT.js.map
|
package/index.js
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
source_default,
|
|
63
63
|
volumeConfigSchema,
|
|
64
64
|
withErrorHandler
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-FODJBXTT.js";
|
|
66
66
|
import {
|
|
67
67
|
__commonJS,
|
|
68
68
|
__require,
|
|
@@ -7771,7 +7771,7 @@ function getConfigPath() {
|
|
|
7771
7771
|
return join(homedir(), ".vm0", "config.json");
|
|
7772
7772
|
}
|
|
7773
7773
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
7774
|
-
console.log(source_default.bold(`VM0 CLI v${"9.137.
|
|
7774
|
+
console.log(source_default.bold(`VM0 CLI v${"9.137.2"}`));
|
|
7775
7775
|
console.log();
|
|
7776
7776
|
const config = await loadConfig();
|
|
7777
7777
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -11716,7 +11716,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
11716
11716
|
options.autoUpdate = false;
|
|
11717
11717
|
}
|
|
11718
11718
|
if (options.autoUpdate !== false) {
|
|
11719
|
-
await startSilentUpgrade("9.137.
|
|
11719
|
+
await startSilentUpgrade("9.137.2");
|
|
11720
11720
|
}
|
|
11721
11721
|
try {
|
|
11722
11722
|
let result;
|
|
@@ -11808,7 +11808,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
11808
11808
|
withErrorHandler(
|
|
11809
11809
|
async (identifier, prompt, options) => {
|
|
11810
11810
|
if (options.autoUpdate !== false) {
|
|
11811
|
-
await startSilentUpgrade("9.137.
|
|
11811
|
+
await startSilentUpgrade("9.137.2");
|
|
11812
11812
|
}
|
|
11813
11813
|
const { name, version } = parseIdentifier(identifier);
|
|
11814
11814
|
let composeId;
|
|
@@ -13582,13 +13582,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
13582
13582
|
if (latestVersion === null) {
|
|
13583
13583
|
throw new Error("Could not check for updates. Please try again later.");
|
|
13584
13584
|
}
|
|
13585
|
-
if (latestVersion === "9.137.
|
|
13586
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.137.
|
|
13585
|
+
if (latestVersion === "9.137.2") {
|
|
13586
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.137.2"})`));
|
|
13587
13587
|
return;
|
|
13588
13588
|
}
|
|
13589
13589
|
console.log(
|
|
13590
13590
|
source_default.yellow(
|
|
13591
|
-
`Current version: ${"9.137.
|
|
13591
|
+
`Current version: ${"9.137.2"} -> Latest version: ${latestVersion}`
|
|
13592
13592
|
)
|
|
13593
13593
|
);
|
|
13594
13594
|
console.log();
|
|
@@ -13615,7 +13615,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
13615
13615
|
const success = await performUpgrade(packageManager);
|
|
13616
13616
|
if (success) {
|
|
13617
13617
|
console.log(
|
|
13618
|
-
source_default.green(`\u2713 Upgraded from ${"9.137.
|
|
13618
|
+
source_default.green(`\u2713 Upgraded from ${"9.137.2"} to ${latestVersion}`)
|
|
13619
13619
|
);
|
|
13620
13620
|
return;
|
|
13621
13621
|
}
|
|
@@ -13682,7 +13682,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
13682
13682
|
|
|
13683
13683
|
// src/index.ts
|
|
13684
13684
|
var program = new Command();
|
|
13685
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.137.
|
|
13685
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.137.2");
|
|
13686
13686
|
program.addCommand(authCommand);
|
|
13687
13687
|
program.addCommand(infoCommand);
|
|
13688
13688
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -117,7 +117,7 @@ import {
|
|
|
117
117
|
upsertZeroOrgModelProvider,
|
|
118
118
|
withErrorHandler,
|
|
119
119
|
zeroAgentCustomSkillNameSchema
|
|
120
|
-
} from "./chunk-
|
|
120
|
+
} from "./chunk-FODJBXTT.js";
|
|
121
121
|
import {
|
|
122
122
|
__toESM,
|
|
123
123
|
init_esm_shims
|
|
@@ -14005,8 +14005,7 @@ var FEATURE_SWITCHES = {
|
|
|
14005
14005
|
["telegramIntegration" /* TelegramIntegration */]: {
|
|
14006
14006
|
maintainer: "ethan@vm0.ai",
|
|
14007
14007
|
description: "Show the Telegram integration settings UI. The backend Telegram routes do not consult this frontend rollout flag.",
|
|
14008
|
-
enabled:
|
|
14009
|
-
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
14008
|
+
enabled: true
|
|
14010
14009
|
},
|
|
14011
14010
|
["trinity" /* Trinity */]: {
|
|
14012
14011
|
maintainer: "ethan@vm0.ai",
|
|
@@ -19221,7 +19220,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
19221
19220
|
var program = new Command();
|
|
19222
19221
|
program.name("zero").description(
|
|
19223
19222
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
19224
|
-
).version("9.137.
|
|
19223
|
+
).version("9.137.2").addHelpText(
|
|
19225
19224
|
"after",
|
|
19226
19225
|
`
|
|
19227
19226
|
Examples:
|