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.
- package/lib/create.mjs +7 -4
- 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:")}
|
|
353
|
-
|
|
354
|
-
|
|
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
|
|
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