@kg-ai/kugou-skill 0.0.19 → 0.0.20
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/SKILL.md
CHANGED
|
@@ -112,6 +112,7 @@ kugou-cli auth check -q <qrcode>
|
|
|
112
112
|
| `kugou-cli install` | 显示平台选择提示 | 否 |
|
|
113
113
|
| `kugou-cli install --all` | 安装 SKILL.md 到所有平台 | 否 |
|
|
114
114
|
| `kugou-cli install --claude` | 安装到 Claude skills 目录 | 否 |
|
|
115
|
+
| `kugou-cli install --mavis` | 安装到 Mavis skills 目录 | 否 |
|
|
115
116
|
| `kugou-cli install --hermes` | 安装到 Hermes skills 目录 | 否 |
|
|
116
117
|
| `kugou-cli install --openclaw` | 安装到 Openclaw skills 目录 | 否 |
|
|
117
118
|
| `kugou-cli install --codex` | 安装到 Codex skills 目录 | 否 |
|
|
Binary file
|
package/bin/darwin-x64/kugou-cli
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/linux-x64/kugou-cli
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/scripts/install.js
CHANGED
|
@@ -38,6 +38,7 @@ console.log(`Installed ${config.exe} for ${platform}-${arch}`);
|
|
|
38
38
|
const skillSrc = path.join(pkgRoot, 'SKILL.md');
|
|
39
39
|
const skillDirs = [
|
|
40
40
|
path.join(os.homedir(), '.claude', 'skills', 'kugou-skill'),
|
|
41
|
+
path.join(os.homedir(), '.mavis', 'skills', 'kugou-skill'),
|
|
41
42
|
path.join(os.homedir(), '.hermes', 'skills', 'kugou-skill'),
|
|
42
43
|
path.join(os.homedir(), '.openclaw', 'skills', 'kugou-skill'),
|
|
43
44
|
path.join(os.homedir(), '.codex', 'skills', 'kugou-skill'),
|