istarshine 1.0.2 → 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 +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -22,7 +22,7 @@ program
22
22
  program
23
23
  .command('install <skill-name>')
24
24
  .description('安装指定名称的 Skill 到当前项目')
25
- .option('-d, --dir <path>', '安装目标目录', '.kiro/skills')
25
+ .option('-d, --dir <path>', '安装目标目录', './skills')
26
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "istarshine",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "iStarshine Skills Hub CLI - 一键安装和管理 Skills",
5
5
  "type": "module",
6
6
  "main": "index.js",