@empjs/skill 1.0.6 → 1.0.8
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 +37 -7
- package/dist/index.cjs +226 -137
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +226 -137
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Unified CLI tool for managing AI agent skills across Claude Code, Cursor, Windsu
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- ✅ **Unified Storage**: All skills stored in `~/.emp-agent/skills/`
|
|
8
|
-
- ✅ **Multi-Agent Support**: Auto-detect and link to
|
|
8
|
+
- ✅ **Multi-Agent Support**: Auto-detect and link to 18+ agents (AMP, Claude, Cursor, Windsurf, Cline, Gemini, etc.)
|
|
9
9
|
- ✅ **Symlink Distribution**: Skills symlinked to each AI agent's directory
|
|
10
10
|
- ✅ **Dev Mode**: Local development with instant updates
|
|
11
11
|
- ✅ **NPM Integration**: Install from public NPM registry or Git URL
|
|
@@ -72,12 +72,23 @@ eskill list
|
|
|
72
72
|
|
|
73
73
|
The CLI automatically detects and links to:
|
|
74
74
|
|
|
75
|
+
- **AMP** - `~/.config/agents/skills/`
|
|
76
|
+
- **Antigravity** - `~/.gemini/antigravity/skills/`
|
|
75
77
|
- **Claude Code** - `~/.claude/skills/`
|
|
76
|
-
- **
|
|
77
|
-
- **Windsurf** - `~/.windsurf/skills/`
|
|
78
|
+
- **ClawdBot** - `~/.openclaw/skills/` or `~/.clawdbot/skills/`
|
|
78
79
|
- **Cline** - `~/.cline/skills/`
|
|
79
|
-
- **
|
|
80
|
+
- **Codex** - `~/.codex/skills/`
|
|
81
|
+
- **Cursor** - `~/.cursor/skills/` (uses copy instead of symlink due to [Cursor bug](https://forum.cursor.com/t/cursor-doesnt-follow-symlinks-to-discover-skills/149693))
|
|
82
|
+
- **Droid** - `~/.factory/skills/`
|
|
83
|
+
- **Gemini** - `~/.gemini/skills/`
|
|
80
84
|
- **GitHub Copilot** - `~/.copilot/skills/`
|
|
85
|
+
- **Goose** - `~/.config/goose/skills/`
|
|
86
|
+
- **Kilo Code** - `~/.kilocode/skills/`
|
|
87
|
+
- **Kiro CLI** - `~/.kiro/skills/`
|
|
88
|
+
- **OpenCode** - `~/.config/opencode/skills/`
|
|
89
|
+
- **Roo Code** - `~/.roo/skills/`
|
|
90
|
+
- **Trae** - `~/.trae/skills/`
|
|
91
|
+
- **Windsurf** - `~/.windsurf/skills/` or `~/.codeium/windsurf/skills/`
|
|
81
92
|
|
|
82
93
|
## Directory Structure
|
|
83
94
|
|
|
@@ -90,9 +101,9 @@ The CLI automatically detects and links to:
|
|
|
90
101
|
├── config.json
|
|
91
102
|
└── cache/
|
|
92
103
|
|
|
93
|
-
# Symlinks to AI agents
|
|
104
|
+
# Symlinks (or copies for Cursor) to AI agents
|
|
94
105
|
~/.claude/skills/skill-name -> ~/.emp-agent/skills/skill-name
|
|
95
|
-
~/.cursor/skills/skill-name
|
|
106
|
+
~/.cursor/skills/skill-name/ # Copy (Cursor doesn't follow symlinks)
|
|
96
107
|
~/.windsurf/skills/skill-name -> ~/.emp-agent/skills/skill-name
|
|
97
108
|
```
|
|
98
109
|
|
|
@@ -223,7 +234,10 @@ sudo chown -R $(whoami) /usr/local/lib/node_modules
|
|
|
223
234
|
If you see "No AI agents detected", ensure you have at least one of the supported agents installed:
|
|
224
235
|
|
|
225
236
|
```bash
|
|
226
|
-
# Check
|
|
237
|
+
# Check supported agents
|
|
238
|
+
eskill agents
|
|
239
|
+
|
|
240
|
+
# Example directories
|
|
227
241
|
ls ~/.claude/skills # Claude Code
|
|
228
242
|
ls ~/.cursor/skills # Cursor
|
|
229
243
|
ls ~/.windsurf/skills # Windsurf
|
|
@@ -250,6 +264,22 @@ ls -la ~/.claude/skills/
|
|
|
250
264
|
# Should show symlink arrows (->)
|
|
251
265
|
```
|
|
252
266
|
|
|
267
|
+
### Cursor not recognizing skills
|
|
268
|
+
|
|
269
|
+
Cursor has a [known bug](https://forum.cursor.com/t/cursor-doesnt-follow-symlinks-to-discover-skills/149693) where it does not follow symlinks to discover skills. eskill now **copies** (instead of symlinking) skills to `~/.cursor/skills/` for Cursor.
|
|
270
|
+
|
|
271
|
+
If you installed skills before this fix, reinstall to get the copy:
|
|
272
|
+
|
|
273
|
+
```bash
|
|
274
|
+
# Reinstall for Cursor only (replaces symlink with copy)
|
|
275
|
+
eskill install <skill-name> --force --agent cursor
|
|
276
|
+
|
|
277
|
+
# Or reinstall for all agents
|
|
278
|
+
eskill install <skill-name> --force
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
Then restart Cursor. Skills appear in **Cursor Settings → Rules → Agent Decides**.
|
|
282
|
+
|
|
253
283
|
## License
|
|
254
284
|
|
|
255
285
|
MIT License - EMP Team
|