create-aixyz-app 0.19.0 → 0.20.0

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/index.js CHANGED
@@ -3419,10 +3419,12 @@ if (!opts.install) {
3419
3419
  Ve([`cd ${pkgName}`, openaiApiKey ? "" : "Set OPENAI_API_KEY in .env.local", "bun run dev"].filter(Boolean).join(`
3420
3420
  `), "Next steps");
3421
3421
  Ve("aixyz erc-8004 register", "To register ERC-8004: Agent Identity");
3422
- Le(`Success! Created ${agentName} at ./${pkgName}`);
3423
- if (packageManager !== "bun" && packageManager !== "unknown") {
3424
- R2.warn("");
3425
- R2.error(`⚠️ You are using ${packageManager}, but this project requires Bun.`);
3426
- R2.error(" Please use Bun for this project: https://bun.sh");
3427
- R2.warn("");
3422
+ R2.info("⭐ If you find aixyz useful, please give us a star on GitHub: https://github.com/AgentlyHQ/aixyz");
3423
+ var notBun = packageManager !== "bun" && packageManager !== "unknown";
3424
+ if (notBun) {
3425
+ R2.info(`Success! Created ${agentName} at ./${pkgName}`);
3426
+ Le(`⚠ This project requires Bun you ran this with ${packageManager}.
3427
+ Install Bun: https://bun.sh`);
3428
+ } else {
3429
+ Le(`Success! Created ${agentName} at ./${pkgName}`);
3428
3430
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-aixyz-app",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Payment-native SDK for AI Agent",
5
5
  "keywords": [
6
6
  "ai",
@@ -34,7 +34,7 @@
34
34
  "@types/bun": "^1.3.9",
35
35
  "@types/node": "^22",
36
36
  "ai": "^6",
37
- "aixyz": "0.19.0",
37
+ "aixyz": "0.20.0",
38
38
  "typescript": "^5",
39
39
  "zod": "^4"
40
40
  }
@@ -8,7 +8,7 @@
8
8
  "dependencies": {
9
9
  "@ai-sdk/openai": "^3",
10
10
  "ai": "^6",
11
- "aixyz": "0.19.0",
11
+ "aixyz": "0.20.0",
12
12
  "zod": "^4"
13
13
  },
14
14
  "devDependencies": {