@elisym/cli 0.11.1 → 0.11.2
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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3259,7 +3259,7 @@ async function cmdStart(nameArg, options = {}) {
|
|
|
3259
3259
|
const hasPaid = allSkills.some((s) => s.priceSubunits > 0);
|
|
3260
3260
|
if (hasPaid && !solanaAddress) {
|
|
3261
3261
|
console.error(
|
|
3262
|
-
" ! Paid skills require a Solana address. Run `npx @elisym/cli
|
|
3262
|
+
" ! Paid skills require a Solana address. Run `npx @elisym/cli profile` to configure.\n"
|
|
3263
3263
|
);
|
|
3264
3264
|
process.exit(1);
|
|
3265
3265
|
}
|
|
@@ -3471,7 +3471,7 @@ async function cmdStart(nameArg, options = {}) {
|
|
|
3471
3471
|
try {
|
|
3472
3472
|
await client.discovery.publishProfile(
|
|
3473
3473
|
identity,
|
|
3474
|
-
agentName,
|
|
3474
|
+
loaded.yaml.display_name ?? agentName,
|
|
3475
3475
|
loaded.yaml.description ?? "",
|
|
3476
3476
|
pictureUrl,
|
|
3477
3477
|
bannerUrl
|