@vm0/cli 9.173.0 → 9.174.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.
- package/{chunk-2P2LCHJX.js → chunk-XKSHXEND.js} +13 -27
- package/{chunk-2P2LCHJX.js.map → chunk-XKSHXEND.js.map} +1 -1
- package/index.js +9 -9
- package/package.json +1 -1
- package/zero.js +26 -2
- package/zero.js.map +1 -1
package/index.js
CHANGED
|
@@ -67,7 +67,7 @@ import {
|
|
|
67
67
|
source_default,
|
|
68
68
|
volumeConfigSchema,
|
|
69
69
|
withErrorHandler
|
|
70
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-XKSHXEND.js";
|
|
71
71
|
import {
|
|
72
72
|
__toESM,
|
|
73
73
|
init_esm_shims
|
|
@@ -400,7 +400,7 @@ function getConfigPath() {
|
|
|
400
400
|
return join(os.homedir(), ".vm0", "config.json");
|
|
401
401
|
}
|
|
402
402
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
403
|
-
console.log(source_default.bold(`VM0 CLI v${"9.
|
|
403
|
+
console.log(source_default.bold(`VM0 CLI v${"9.174.2"}`));
|
|
404
404
|
console.log();
|
|
405
405
|
const config = await loadConfig();
|
|
406
406
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -4293,7 +4293,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
4293
4293
|
options.autoUpdate = false;
|
|
4294
4294
|
}
|
|
4295
4295
|
if (options.autoUpdate !== false) {
|
|
4296
|
-
await startSilentUpgrade("9.
|
|
4296
|
+
await startSilentUpgrade("9.174.2");
|
|
4297
4297
|
}
|
|
4298
4298
|
try {
|
|
4299
4299
|
let result;
|
|
@@ -4395,7 +4395,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
4395
4395
|
withErrorHandler(
|
|
4396
4396
|
async (identifier, prompt, options) => {
|
|
4397
4397
|
if (options.autoUpdate !== false) {
|
|
4398
|
-
await startSilentUpgrade("9.
|
|
4398
|
+
await startSilentUpgrade("9.174.2");
|
|
4399
4399
|
}
|
|
4400
4400
|
const { name, version } = parseIdentifier(identifier);
|
|
4401
4401
|
let composeId;
|
|
@@ -6189,13 +6189,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6189
6189
|
if (latestVersion === null) {
|
|
6190
6190
|
throw new Error("Could not check for updates. Please try again later.");
|
|
6191
6191
|
}
|
|
6192
|
-
if (latestVersion === "9.
|
|
6193
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.
|
|
6192
|
+
if (latestVersion === "9.174.2") {
|
|
6193
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.174.2"})`));
|
|
6194
6194
|
return;
|
|
6195
6195
|
}
|
|
6196
6196
|
console.log(
|
|
6197
6197
|
source_default.yellow(
|
|
6198
|
-
`Current version: ${"9.
|
|
6198
|
+
`Current version: ${"9.174.2"} -> Latest version: ${latestVersion}`
|
|
6199
6199
|
)
|
|
6200
6200
|
);
|
|
6201
6201
|
console.log();
|
|
@@ -6222,7 +6222,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
6222
6222
|
const success = await performUpgrade(packageManager);
|
|
6223
6223
|
if (success) {
|
|
6224
6224
|
console.log(
|
|
6225
|
-
source_default.green(`\u2713 Upgraded from ${"9.
|
|
6225
|
+
source_default.green(`\u2713 Upgraded from ${"9.174.2"} to ${latestVersion}`)
|
|
6226
6226
|
);
|
|
6227
6227
|
return;
|
|
6228
6228
|
}
|
|
@@ -6289,7 +6289,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
6289
6289
|
|
|
6290
6290
|
// src/index.ts
|
|
6291
6291
|
var program = new Command();
|
|
6292
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.
|
|
6292
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.174.2");
|
|
6293
6293
|
program.addCommand(authCommand);
|
|
6294
6294
|
program.addCommand(infoCommand);
|
|
6295
6295
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
package/zero.js
CHANGED
|
@@ -145,7 +145,7 @@ import {
|
|
|
145
145
|
withErrorHandler,
|
|
146
146
|
zeroAgentCustomSkillNameSchema,
|
|
147
147
|
zeroTokenAllowsFeatureSwitch
|
|
148
|
-
} from "./chunk-
|
|
148
|
+
} from "./chunk-XKSHXEND.js";
|
|
149
149
|
import {
|
|
150
150
|
__toESM,
|
|
151
151
|
init_esm_shims
|
|
@@ -9657,6 +9657,30 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
9657
9657
|
ref: VM0_SKILLS_REF,
|
|
9658
9658
|
path: "illustration-template/shadow-pop"
|
|
9659
9659
|
}
|
|
9660
|
+
},
|
|
9661
|
+
{
|
|
9662
|
+
id: "vm0:image-style:tiny-wanderer",
|
|
9663
|
+
kind: "image-style",
|
|
9664
|
+
name: "Tiny Wanderer",
|
|
9665
|
+
description: "Contemplative bande-dessin\xE9e landscape illustration \u2014 tiny human dwarfed by vast nature, ink hatching + flat color, vertical portrait canvas.",
|
|
9666
|
+
desc: 'Contemplative bande-dessin\xE9e landscape illustration in a locked house style \u2014 a tiny human (or 2\u20133 figures) is dwarfed by a vast natural panorama, hand-drawn black ink contour + parallel/cross-hatching for clouds, rock walls, foliage, grass, and water texture, sitting on flat color blocks beneath the ink (no gradients, no airbrush). Restrained 3\u20135 color palette per piece including black ink, vertical portrait canvas (1024x1536, reads ~3:5). Always outdoor/wilderness. Moebius / Christophe Chabout\xE9 travel-sketchbook lineage, quiet wonder mood. Six dials per brief: palette family (sage-plains / sunset-warm / coastal-teal / cool-mist / autumn-rust / winter-pale / custom), landscape archetype (plains+clouds / mountain valley / river vista / rocky ridge / coastal cliffs / misty gorge / forest clearing / alpine pass / desert mesa / lakeshore), activity (walking / cycling / hiking / standing-and-gazing), solitude count (1 / 2 / 3), complexity (L1 single plane / L2 fore+mid / L3 full multi-plane vista), and weather/time (midday / golden hour / sunset / overcast / mist / blue hour). Trigger when user says /tiny-wanderer, asks for a "tiny wanderer illustration", "bande-dessin\xE9e landscape", "Moebius-style travel illustration", "ink-hatched vertical landscape", or briefs with a palette + landscape archetype + complexity in this house style.',
|
|
9667
|
+
source: {
|
|
9668
|
+
repo: VM0_SKILLS_REPO,
|
|
9669
|
+
ref: VM0_SKILLS_REF,
|
|
9670
|
+
path: "illustration-template/tiny-wanderer"
|
|
9671
|
+
}
|
|
9672
|
+
},
|
|
9673
|
+
{
|
|
9674
|
+
id: "vm0:image-style:iberian-vignette",
|
|
9675
|
+
kind: "image-style",
|
|
9676
|
+
name: "Iberian Vignette",
|
|
9677
|
+
description: "Hand-drawn editorial vignette style \u2014 loose wobble ink, flat muted cream + burgundy + one accent (sage / mustard / dusty blue / terracotta), minimal abstract faces, observed Mediterranean composition with a serif Spanish wordmark at the bottom.",
|
|
9678
|
+
desc: 'Iberian-vignette hand-drawn editorial illustration: loose hand-drawn ink linework with visible wobble and varied weight, flat muted color fills (no gradients, no shading, no texture) on a warm cream off-white background, burgundy/wine always present as the anchor color somewhere in the scene, exactly one secondary accent per piece (sage green / mustard yellow / dusty muted blue / terracotta-rust), minimal abstract faces (tiny dot or short-mark eyes, soft nose hint, almost no mouth), hair as flat color masses, warm sand skin tones, casually-observed body language (leaning, holding, mid-action, never stiffly posed), and a short Spanish serif lowercase wordmark anchored at the bottom center of the canvas. Always grounded by an architectural / scenic prop (stone arched doorway, tall arched window, balcony, sunlit courtyard, wooden counter, archway, stoop, open terrace). Six dials per brief: scene metaphor (trade shop, domestic moment, leisure ritual), cast (solo L1 / pair L2 / 3-4 figures L3), architectural prop, secondary accent (one only), wordmark (Spanish noun), complexity (L1/L2/L3). Trained on nano-banana-2 image-to-image with one of three locked anchor references (ma\xF1ana / ritmo / familia). Trigger when user says /iberian-vignette, asks for an "Iberian vignette illustration", a "Spanish editorial illustration", a "Mediterranean observed-moment scene", or briefs a scene metaphor + cast + complexity in this hand-drawn editorial style.',
|
|
9679
|
+
source: {
|
|
9680
|
+
repo: VM0_SKILLS_REPO,
|
|
9681
|
+
ref: VM0_SKILLS_REF,
|
|
9682
|
+
path: "illustration-template/iberian-vignette"
|
|
9683
|
+
}
|
|
9660
9684
|
}
|
|
9661
9685
|
];
|
|
9662
9686
|
function filterByKind(kind) {
|
|
@@ -12628,7 +12652,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
12628
12652
|
var program = new Command();
|
|
12629
12653
|
program.name("zero").description(
|
|
12630
12654
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
12631
|
-
).version("9.
|
|
12655
|
+
).version("9.174.2").addHelpText("after", () => {
|
|
12632
12656
|
return buildZeroHelpText();
|
|
12633
12657
|
});
|
|
12634
12658
|
if (process.argv[1]?.endsWith("zero.js") || process.argv[1]?.endsWith("zero.ts") || process.argv[1]?.endsWith("zero")) {
|