@vm0/cli 1.3.0 → 1.3.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 +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -12868,6 +12868,9 @@ var EventRenderer = class {
12868
12868
  }
12869
12869
  static renderVm0Start(event) {
12870
12870
  console.log(chalk3.cyan("[vm0_start]") + " Run starting");
12871
+ if (event.data.runId) {
12872
+ console.log(` Run ID: ${chalk3.gray(String(event.data.runId))}`);
12873
+ }
12871
12874
  const prompt = String(event.data.prompt || "");
12872
12875
  const displayPrompt = prompt.length > 100 ? prompt.substring(0, 100) + "..." : prompt;
12873
12876
  console.log(` Prompt: ${chalk3.gray(displayPrompt)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "CLI application",
5
5
  "type": "module",
6
6
  "bin": {