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 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 | `~/.moltbot/skills/` |
153
+ | OpenClaw | `~/.openclaw/skills/` |
154
154
  | CodeBuddy | `~/.codebuddy/skills/` |
155
155
  | Command Code | `~/.commandcode/skills/` |
156
156
  | Crush | `~/.config/crush/skills/` |
@@ -115,8 +115,9 @@ export const AGENT_CONFIGS = [
115
115
  {
116
116
  name: 'OpenClaw',
117
117
  dir: 'skills',
118
- homePaths: ['.moltbot'],
119
- cwdPaths: ['skills'],
118
+ globalDir: '.openclaw/skills',
119
+ homePaths: ['.openclaw/openclaw.json', '.openclaw'],
120
+ cwdPaths: ['.openclaw'],
120
121
  },
121
122
  {
122
123
  name: 'CodeBuddy',
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillfish",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "All in one Skill manager for AI coding agents. Install, update, and sync Skills across Claude Code, Cursor, Copilot + more.",
5
5
  "type": "module",
6
6
  "bin": {