@vm0/cli 6.4.0 → 6.4.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.
Files changed (2) hide show
  1. package/index.js +6 -6
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -641,7 +641,7 @@ var unifiedRunRequestSchema = z4.object({
641
641
  volumeVersions: z4.record(z4.string(), z4.string()).optional(),
642
642
  // Debug flag to force real Claude in mock environments (internal use only)
643
643
  debugNoMockClaude: z4.boolean().optional(),
644
- // Model provider for automatic LLM credential injection
644
+ // Model provider for automatic credential injection
645
645
  modelProvider: z4.string().optional(),
646
646
  // Required
647
647
  prompt: z4.string().min(1, "Missing prompt")
@@ -6166,7 +6166,7 @@ var mainRunCommand = new Command2().name("run").description("Execute an agent").
6166
6166
  "Use realtime event streaming instead of polling (experimental)"
6167
6167
  ).option(
6168
6168
  "--model-provider <type>",
6169
- "Override model provider for LLM credentials (e.g., anthropic-api-key)"
6169
+ "Override model provider (e.g., anthropic-api-key)"
6170
6170
  ).addOption(new Option("--debug-no-mock-claude").hideHelp()).action(
6171
6171
  // eslint-disable-next-line complexity -- TODO: refactor complex function
6172
6172
  async (identifier, prompt, options) => {
@@ -6351,7 +6351,7 @@ var resumeCommand = new Command3().name("resume").description("Resume an agent r
6351
6351
  "Use realtime event streaming instead of polling (experimental)"
6352
6352
  ).option(
6353
6353
  "--model-provider <type>",
6354
- "Override model provider for LLM credentials (e.g., anthropic-api-key)"
6354
+ "Override model provider (e.g., anthropic-api-key)"
6355
6355
  ).addOption(new Option2("--debug-no-mock-claude").hideHelp()).action(
6356
6356
  // eslint-disable-next-line complexity -- TODO: refactor complex function
6357
6357
  async (checkpointId, prompt, options, command) => {
@@ -6472,7 +6472,7 @@ var continueCommand = new Command4().name("continue").description(
6472
6472
  "Use realtime event streaming instead of polling (experimental)"
6473
6473
  ).option(
6474
6474
  "--model-provider <type>",
6475
- "Override model provider for LLM credentials (e.g., anthropic-api-key)"
6475
+ "Override model provider (e.g., anthropic-api-key)"
6476
6476
  ).addOption(new Option3("--debug-no-mock-claude").hideHelp()).action(
6477
6477
  // eslint-disable-next-line complexity -- TODO: refactor complex function
6478
6478
  async (agentSessionId, prompt, options, command) => {
@@ -7889,7 +7889,7 @@ cookCmd.argument("[prompt]", "Prompt for the agent").option("-y, --yes", "Skip c
7889
7889
  // eslint-disable-next-line complexity -- TODO: refactor complex function
7890
7890
  async (prompt, options) => {
7891
7891
  if (!options.noAutoUpdate) {
7892
- const shouldExit = await checkAndUpgrade("6.4.0", prompt);
7892
+ const shouldExit = await checkAndUpgrade("6.4.1", prompt);
7893
7893
  if (shouldExit) {
7894
7894
  process.exit(0);
7895
7895
  }
@@ -11089,7 +11089,7 @@ var modelProviderCommand = new Command46().name("model-provider").description("M
11089
11089
 
11090
11090
  // src/index.ts
11091
11091
  var program = new Command47();
11092
- program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("6.4.0");
11092
+ program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("6.4.1");
11093
11093
  program.command("info").description("Display environment information").action(async () => {
11094
11094
  console.log(chalk47.bold("System Information:"));
11095
11095
  console.log(`Node Version: ${process.version}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "6.4.0",
3
+ "version": "6.4.1",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",