skild 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -416,12 +416,12 @@ async function signup(options) {
416
416
  } else if (parsed.verification.sent) {
417
417
  console.log(chalk9.dim("Verification email sent. Check your inbox (and spam)."));
418
418
  } else {
419
- console.log(chalk9.yellow("Verification email was not sent. You may need to resend from the Console."));
419
+ console.log(chalk9.yellow("Verification email was not sent. You may need to resend from the Skild Hub."));
420
420
  }
421
- console.log(chalk9.dim(`Verify/resend in Console: ${(parsed.verification.consoleUrl || "https://console.skild.sh").replace(/\/+$/, "")}/verify-email/request`));
421
+ console.log(chalk9.dim(`Verify/resend in Skild Hub: ${(parsed.verification.consoleUrl || "https://hub.skild.sh").replace(/\/+$/, "")}/verify-email/request`));
422
422
  } else if (parsed.verification) {
423
423
  console.log(chalk9.dim("Email verification is recommended. Publishing may be restricted in the future."));
424
- console.log(chalk9.dim(`Verify/resend in Console: ${(parsed.verification.consoleUrl || "https://console.skild.sh").replace(/\/+$/, "")}/verify-email/request`));
424
+ console.log(chalk9.dim(`Verify/resend in Skild Hub: ${(parsed.verification.consoleUrl || "https://hub.skild.sh").replace(/\/+$/, "")}/verify-email/request`));
425
425
  }
426
426
  } catch {
427
427
  }
@@ -486,7 +486,7 @@ async function login(options) {
486
486
  console.log(chalk10.green(`Logged in as ${chalk10.cyan(json.publisher.handle)}.`));
487
487
  if (json.publisher.emailVerified === false) {
488
488
  console.log(chalk10.yellow("Email not verified. Publishing may be restricted by server policy."));
489
- console.log(chalk10.dim("Open the Publisher Console to verify: https://console.skild.sh/verify-email/request"));
489
+ console.log(chalk10.dim("Open the Skild Hub to verify: https://hub.skild.sh/verify-email/request"));
490
490
  }
491
491
  }
492
492
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skild",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "The npm for Agent Skills — Discover, install, manage, and publish AI Agent Skills with ease.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",