@vm0/cli 9.20.0 → 9.20.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 +5 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4900,7 +4900,7 @@ function getInstructionsFilename(framework) {
|
|
|
4900
4900
|
return "CLAUDE.md";
|
|
4901
4901
|
}
|
|
4902
4902
|
async function uploadInstructions(agentName, instructionsFilePath, basePath, framework) {
|
|
4903
|
-
const storageName = getInstructionsStorageName(agentName);
|
|
4903
|
+
const storageName = getInstructionsStorageName(agentName.toLowerCase());
|
|
4904
4904
|
const absolutePath = path4.isAbsolute(instructionsFilePath) ? instructionsFilePath : path4.join(basePath, instructionsFilePath);
|
|
4905
4905
|
const content = await fs4.readFile(absolutePath, "utf8");
|
|
4906
4906
|
const tmpDir = await fs4.mkdtemp(path4.join(os3.tmpdir(), "vm0-instructions-"));
|
|
@@ -5425,7 +5425,7 @@ async function finalizeCompose(config, agent, variables, options) {
|
|
|
5425
5425
|
)
|
|
5426
5426
|
);
|
|
5427
5427
|
if (options.autoUpdate !== false) {
|
|
5428
|
-
await silentUpgradeAfterCommand("9.20.
|
|
5428
|
+
await silentUpgradeAfterCommand("9.20.1");
|
|
5429
5429
|
}
|
|
5430
5430
|
}
|
|
5431
5431
|
async function handleGitHubCompose(url, options) {
|
|
@@ -7793,7 +7793,7 @@ var mainRunCommand = new Command8().name("run").description("Run an agent").argu
|
|
|
7793
7793
|
}
|
|
7794
7794
|
showNextSteps(result);
|
|
7795
7795
|
if (options.autoUpdate !== false) {
|
|
7796
|
-
await silentUpgradeAfterCommand("9.20.
|
|
7796
|
+
await silentUpgradeAfterCommand("9.20.1");
|
|
7797
7797
|
}
|
|
7798
7798
|
} catch (error) {
|
|
7799
7799
|
handleRunError(error, identifier);
|
|
@@ -9300,7 +9300,7 @@ var cookAction = new Command27().name("cook").description("Quick start: prepare,
|
|
|
9300
9300
|
).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(
|
|
9301
9301
|
async (prompt, options) => {
|
|
9302
9302
|
if (options.autoUpdate !== false) {
|
|
9303
|
-
const shouldExit = await checkAndUpgrade("9.20.
|
|
9303
|
+
const shouldExit = await checkAndUpgrade("9.20.1", prompt);
|
|
9304
9304
|
if (shouldExit) {
|
|
9305
9305
|
process.exit(0);
|
|
9306
9306
|
}
|
|
@@ -13415,7 +13415,7 @@ var setupClaudeCommand = new Command67().name("setup-claude").description("Insta
|
|
|
13415
13415
|
|
|
13416
13416
|
// src/index.ts
|
|
13417
13417
|
var program = new Command68();
|
|
13418
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.20.
|
|
13418
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.20.1");
|
|
13419
13419
|
program.addCommand(authCommand);
|
|
13420
13420
|
program.addCommand(infoCommand);
|
|
13421
13421
|
program.addCommand(composeCommand);
|