skillfish 1.0.31 → 1.0.33
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/README.md +1 -1
- package/dist/lib/agents.js +11 -5
- package/dist/lib/installer.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -150,7 +150,7 @@ Works with 32 agents including:
|
|
|
150
150
|
| Antigravity | `~/.gemini/antigravity/skills/` |
|
|
151
151
|
| Droid | `~/.factory/skills/` |
|
|
152
152
|
| Augment | `~/.augment/rules/` |
|
|
153
|
-
| OpenClaw | `~/.
|
|
153
|
+
| OpenClaw | `~/.openclaw/skills/` |
|
|
154
154
|
| CodeBuddy | `~/.codebuddy/skills/` |
|
|
155
155
|
| Command Code | `~/.commandcode/skills/` |
|
|
156
156
|
| Crush | `~/.config/crush/skills/` |
|
package/dist/lib/agents.js
CHANGED
|
@@ -21,9 +21,14 @@ export const AGENT_CONFIGS = [
|
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
name: 'Windsurf',
|
|
24
|
-
dir: '.
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
dir: '.windsurf/skills',
|
|
25
|
+
globalDir: '.codeium/windsurf/skills',
|
|
26
|
+
homePaths: [
|
|
27
|
+
'.codeium/windsurf/config.json',
|
|
28
|
+
'.codeium/windsurf/argv.json',
|
|
29
|
+
'.codeium/windsurf',
|
|
30
|
+
],
|
|
31
|
+
cwdPaths: ['.windsurf'],
|
|
27
32
|
},
|
|
28
33
|
{
|
|
29
34
|
name: 'Codex',
|
|
@@ -115,8 +120,9 @@ export const AGENT_CONFIGS = [
|
|
|
115
120
|
{
|
|
116
121
|
name: 'OpenClaw',
|
|
117
122
|
dir: 'skills',
|
|
118
|
-
|
|
119
|
-
|
|
123
|
+
globalDir: '.openclaw/skills',
|
|
124
|
+
homePaths: ['.openclaw/openclaw.json', '.openclaw'],
|
|
125
|
+
cwdPaths: ['.openclaw'],
|
|
120
126
|
},
|
|
121
127
|
{
|
|
122
128
|
name: 'CodeBuddy',
|
package/dist/lib/installer.js
CHANGED
|
@@ -106,7 +106,7 @@ export async function installSkill(owner, repo, skillPath, skillName, agents, op
|
|
|
106
106
|
try {
|
|
107
107
|
// Download skill using giget (tarball-based, works reliably on all repo sizes)
|
|
108
108
|
// Build giget source: github:owner/repo[/subpath][#branch]
|
|
109
|
-
const downloadPath = skillPath === SKILL_FILENAME ? '' : skillPath;
|
|
109
|
+
const downloadPath = skillPath === SKILL_FILENAME || skillPath === '.' ? '' : skillPath;
|
|
110
110
|
let gigetSource = downloadPath
|
|
111
111
|
? `github:${owner}/${repo}/${downloadPath}`
|
|
112
112
|
: `github:${owner}/${repo}`;
|
package/package.json
CHANGED