unoverse 0.1.43 → 0.1.44

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/lib/create.mjs +7 -4
  2. package/package.json +1 -1
package/lib/create.mjs CHANGED
@@ -349,9 +349,12 @@ export async function create(nameArg) {
349
349
  cd ${name}`}
350
350
  unoverse start
351
351
 
352
- ${cyan("Build with Claude:")} open the folder in Claude Code. It ships an
353
- authoring skill (components, nodes, agent skills) and a builder MCP that
354
- constructs workflows live on your Canvas. Ask for what you want.
352
+ ${cyan("Build with Claude:")} this folder is ready for Claude Code. Open it
353
+ there and describe what you want, in plain words. Claude already knows how
354
+ to build unoverse components, custom nodes, agent skills, and workflows on
355
+ your Canvas.
356
+
357
+ ${dim("How it works: https://github.com/unoverse-platform/docs")}
355
358
  `);
356
359
  return;
357
360
  }
@@ -361,7 +364,7 @@ export async function create(nameArg) {
361
364
  // The reference client ships inside the starter — take just that folder.
362
365
  download(name, 3, "'*/packages/client'");
363
366
  ok(`client app scaffolded in ${label(name)}`);
364
- console.log(`\n Next:${name === "." ? "" : `\n cd ${name}`}\n npm install && npm run dev\n\n ${cyan("Build with Claude:")} open the folder in Claude Code and ask for what you want.\n`);
367
+ console.log(`\n Next:${name === "." ? "" : `\n cd ${name}`}\n npm install && npm run dev\n\n ${cyan("Build with Claude:")} open this folder in Claude Code and describe what you want, in plain words.\n`);
365
368
  return;
366
369
  }
367
370
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.43",
3
+ "version": "0.1.44",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",