buildwithnexus 0.2.2 → 0.2.3

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/dist/bin.js CHANGED
@@ -16,7 +16,7 @@ var BANNER = `
16
16
  `;
17
17
  function showBanner() {
18
18
  console.log(BANNER);
19
- console.log(chalk.dim(" v0.2.2 \xB7 buildwithnexus.dev\n"));
19
+ console.log(chalk.dim(" v0.2.3 \xB7 buildwithnexus.dev\n"));
20
20
  }
21
21
  function showPhase(phase, total, description) {
22
22
  const progress = chalk.cyan(`[${phase}/${total}]`);
@@ -513,7 +513,10 @@ async function launchVm(platform, diskPath, initIsoPath, ram, cpus, ports) {
513
513
  `file=${diskPath},if=virtio,cache=writethrough`,
514
514
  "-drive",
515
515
  `file=${initIsoPath},if=virtio,cache=writethrough`,
516
- "-nographic",
516
+ "-display",
517
+ "none",
518
+ "-serial",
519
+ "none",
517
520
  "-net",
518
521
  "nic,model=virtio",
519
522
  "-net",
@@ -1591,7 +1594,7 @@ var brainstormCommand = new Command11("brainstorm").description("Brainstorm an i
1591
1594
  });
1592
1595
 
1593
1596
  // src/cli.ts
1594
- var cli = new Command12().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version("0.2.2");
1597
+ var cli = new Command12().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version("0.2.3");
1595
1598
  cli.addCommand(initCommand);
1596
1599
  cli.addCommand(startCommand);
1597
1600
  cli.addCommand(stopCommand);
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildwithnexus",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Launch an autonomous AI runtime with triple-nested VM isolation in one command",
5
5
  "type": "module",
6
6
  "bin": {