aiguild 1.0.1 → 1.0.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/bin/aiguild.mjs CHANGED
@@ -8,7 +8,7 @@ import { registerList } from "../src/commands/list.mjs";
8
8
  import { registerUpdate } from "../src/commands/update.mjs";
9
9
  import { loadConfig } from "../src/config.mjs";
10
10
 
11
- const pkg = { version: "1.0.1" };
11
+ const pkg = { version: "1.0.2" };
12
12
 
13
13
  const program = new Command();
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiguild",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "AIGuild CLI — install and manage AI skills from your terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -66,7 +66,7 @@ export function registerAuth(program) {
66
66
 
67
67
  auth
68
68
  .command("set-url <url>")
69
- .description("Override the AIGuild server URL (default: https://aiguild.replit.app)")
69
+ .description("Override the AIGuild server URL (default: https://api.aiguild.dev)")
70
70
  .action((url) => {
71
71
  saveConfig({ apiUrl: url });
72
72
  console.log(`\x1b[32m✔\x1b[0m API URL set to \x1b[36m${url}\x1b[0m`);