@jarrodmedrano/claude-skills 1.0.1 → 1.0.2
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,15 @@ In any project where you want to use these skills:
|
|
|
12
12
|
npm install @jarrodmedrano/claude-skills
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
The skills will automatically be copied to your project's `.claude/skills/`
|
|
15
|
+
The skills will automatically be copied to your project's `.claude/skills/` and `.claude/commands/` directories during installation.
|
|
16
|
+
|
|
17
|
+
**If the automatic installation doesn't work** (e.g., if you used `npm install --ignore-scripts`), you can manually install the skills:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npx claude-skills install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This will copy all skills and commands to the appropriate directories in your project.
|
|
16
24
|
|
|
17
25
|
### Use as local directory
|
|
18
26
|
|