skill-linker 4.0.4 → 4.1.1
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/package.json +2 -1
- package/skills/skill-linker/SKILL.md +59 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skill-linker",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "CLI to link AI Agent Skills to various agents (Claude, Copilot, Antigravity, Cursor, etc.)",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"files": [
|
|
41
41
|
"bin/",
|
|
42
42
|
"src/",
|
|
43
|
+
"skills/",
|
|
43
44
|
"README.md"
|
|
44
45
|
]
|
|
45
46
|
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: skill-linker
|
|
3
|
+
description: Install and manage AI Agent Skills for Claude, Cursor, OpenCode, Gemini, Windsurf and other AI coding assistants. Use when you need to add new capabilities to your AI agent.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Skill: skill-linker
|
|
7
|
+
|
|
8
|
+
A CLI tool to install and manage AI Agent Skills.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
Use this skill when:
|
|
13
|
+
|
|
14
|
+
- Installing new AI Agent Skills from GitHub or local directories
|
|
15
|
+
- Adding capabilities to Claude, Cursor, OpenCode or other AI assistants
|
|
16
|
+
- Managing skill installations (project or global)
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Install from GitHub
|
|
22
|
+
npx skill-linker install --from <url> --agent <agent> --scope both
|
|
23
|
+
|
|
24
|
+
# Install from local directory
|
|
25
|
+
npx skill-linker install --skill <path> --agent <agent> --scope both --yes
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Supported Agents
|
|
29
|
+
|
|
30
|
+
| Agent | Skill Directory |
|
|
31
|
+
| -------- | ------------------- |
|
|
32
|
+
| opencode | `.opencode/skills/` |
|
|
33
|
+
| claude | `.claude/skills/` |
|
|
34
|
+
| cursor | `.cursor/skills/` |
|
|
35
|
+
| gemini | `.gemini/skills/` |
|
|
36
|
+
| windsurf | `.windsurf/skills/` |
|
|
37
|
+
|
|
38
|
+
## Parameters
|
|
39
|
+
|
|
40
|
+
| Parameter | Description |
|
|
41
|
+
| ---------------- | --------------------------- |
|
|
42
|
+
| `--from <url>` | GitHub repository URL |
|
|
43
|
+
| `--skill <path>` | Local skill directory |
|
|
44
|
+
| `-a, --agent` | Target agent |
|
|
45
|
+
| `-s, --scope` | Scope (project/global/both) |
|
|
46
|
+
| `-y, --yes` | Auto overwrite |
|
|
47
|
+
|
|
48
|
+
## Examples
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Install for OpenCode
|
|
52
|
+
npx skill-linker install --from https://github.com/user/repo --agent opencode --scope both
|
|
53
|
+
|
|
54
|
+
# Install for Claude
|
|
55
|
+
npx skill-linker install --from https://github.com/org/skills --agent claude --scope project
|
|
56
|
+
|
|
57
|
+
# Update existing skill
|
|
58
|
+
npx skill-linker install --from https://github.com/org/skills --agent opencode --scope both --yes
|
|
59
|
+
```
|