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.
- package/bin/cli.js +1 -1
- 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>', '安装目标目录', '
|
|
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);
|