istarshine 1.0.1 → 1.0.3

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/bin/cli.js +5 -5
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -16,14 +16,14 @@ const program = new Command();
16
16
  program
17
17
  .name('istarshine')
18
18
  .description('iStarshine Skills Hub CLI - 一键安装和管理 Skills')
19
- .version('1.0.0');
19
+ .version('1.0.2');
20
20
 
21
21
  // install 子命令
22
22
  program
23
23
  .command('install <skill-name>')
24
24
  .description('安装指定名称的 Skill 到当前项目')
25
- .option('-d, --dir <path>', '安装目标目录', '.kiro/skills')
26
- .option('--server <url>', 'Skills Hub 服务器地址', 'https://xgzn.istarshine.com')
25
+ .option('-d, --dir <path>', '安装目标目录', './skills')
26
+ .option('--server <url>', 'Skills Hub 服务器地址', 'https://skills.istarshine.com')
27
27
  .action(async (skill_name, options) => {
28
28
  await install_skill(skill_name, options);
29
29
  });
@@ -32,7 +32,7 @@ program
32
32
  program
33
33
  .command('search <keyword>')
34
34
  .description('搜索 Skills Hub 中的 Skill')
35
- .option('--server <url>', 'Skills Hub 服务器地址', 'https://xgzn.istarshine.com')
35
+ .option('--server <url>', 'Skills Hub 服务器地址', 'https://skills.istarshine.com')
36
36
  .action(async (keyword, options) => {
37
37
  await search_skills(keyword, options);
38
38
  });
@@ -41,7 +41,7 @@ program
41
41
  program
42
42
  .command('list')
43
43
  .description('列出热门 Skills')
44
- .option('--server <url>', 'Skills Hub 服务器地址', 'https://xgzn.istarshine.com')
44
+ .option('--server <url>', 'Skills Hub 服务器地址', 'https://skills.istarshine.com')
45
45
  .action(async (options) => {
46
46
  await list_skills(options);
47
47
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "istarshine",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "iStarshine Skills Hub CLI - 一键安装和管理 Skills",
5
5
  "type": "module",
6
6
  "main": "index.js",