skillfish 1.0.31 → 1.0.32
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 +3 -2
- 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
|
@@ -115,8 +115,9 @@ export const AGENT_CONFIGS = [
|
|
|
115
115
|
{
|
|
116
116
|
name: 'OpenClaw',
|
|
117
117
|
dir: 'skills',
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
globalDir: '.openclaw/skills',
|
|
119
|
+
homePaths: ['.openclaw/openclaw.json', '.openclaw'],
|
|
120
|
+
cwdPaths: ['.openclaw'],
|
|
120
121
|
},
|
|
121
122
|
{
|
|
122
123
|
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