openskill-ai 1.0.0 → 1.0.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/README.md +22 -22
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# openskill-ai
|
|
2
2
|
|
|
3
3
|
> Install AI agent skills from any Git repository
|
|
4
4
|
|
|
@@ -17,13 +17,13 @@ A powerful CLI tool to install and manage AI coding agent skills from GitHub, Gi
|
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
# Install skills from a repository
|
|
20
|
-
npx
|
|
20
|
+
npx openskill-ai vercel-labs/agent-skills
|
|
21
21
|
|
|
22
22
|
# List available skills first
|
|
23
|
-
npx
|
|
23
|
+
npx openskill-ai vercel-labs/agent-skills --list
|
|
24
24
|
|
|
25
25
|
# Install specific skill to Antigravity
|
|
26
|
-
npx
|
|
26
|
+
npx openskill-ai vercel-labs/agent-skills \
|
|
27
27
|
--skill frontend-design \
|
|
28
28
|
--agent antigravity
|
|
29
29
|
```
|
|
@@ -34,23 +34,23 @@ npx agent-skills vercel-labs/agent-skills \
|
|
|
34
34
|
|
|
35
35
|
Use with `npx` without installing:
|
|
36
36
|
```bash
|
|
37
|
-
npx
|
|
37
|
+
npx openskill-ai <source>
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Or install globally:
|
|
41
41
|
```bash
|
|
42
|
-
npm install -g
|
|
43
|
-
|
|
42
|
+
npm install -g openskill-ai
|
|
43
|
+
openskill-ai <source>
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
### As a Library
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
npm install
|
|
49
|
+
npm install openskill-ai
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
```javascript
|
|
53
|
-
import { installSkillForAgent, discoverSkills } from '
|
|
53
|
+
import { installSkillForAgent, discoverSkills } from 'openskill-ai';
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## Usage
|
|
@@ -61,19 +61,19 @@ The CLI accepts multiple source formats:
|
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
63
|
# GitHub shorthand
|
|
64
|
-
|
|
64
|
+
openskill-ai vercel-labs/agent-skills
|
|
65
65
|
|
|
66
66
|
# GitHub URL
|
|
67
|
-
|
|
67
|
+
openskill-ai https://github.com/owner/repo
|
|
68
68
|
|
|
69
69
|
# GitHub tree path (specific directory)
|
|
70
|
-
|
|
70
|
+
openskill-ai https://github.com/owner/repo/tree/main/skills/frontend
|
|
71
71
|
|
|
72
72
|
# GitLab
|
|
73
|
-
|
|
73
|
+
openskill-ai https://gitlab.com/owner/repo
|
|
74
74
|
|
|
75
75
|
# Direct Git URL
|
|
76
|
-
|
|
76
|
+
openskill-ai git@github.com:owner/repo.git
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### CLI Options
|
|
@@ -91,22 +91,22 @@ agent-skills git@github.com:owner/repo.git
|
|
|
91
91
|
|
|
92
92
|
**Interactive Installation** (recommended for first-time users):
|
|
93
93
|
```bash
|
|
94
|
-
|
|
94
|
+
openskill-ai vercel-labs/agent-skills
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
**List Skills Before Installing:**
|
|
98
98
|
```bash
|
|
99
|
-
|
|
99
|
+
openskill-ai vercel-labs/agent-skills --list
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
**Install Specific Skill:**
|
|
103
103
|
```bash
|
|
104
|
-
|
|
104
|
+
openskill-ai vercel-labs/agent-skills --skill frontend-design
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
**Install to Multiple Agents:**
|
|
108
108
|
```bash
|
|
109
|
-
|
|
109
|
+
openskill-ai vercel-labs/agent-skills \
|
|
110
110
|
--skill frontend-design \
|
|
111
111
|
--agent antigravity \
|
|
112
112
|
--agent cursor \
|
|
@@ -115,7 +115,7 @@ agent-skills vercel-labs/agent-skills \
|
|
|
115
115
|
|
|
116
116
|
**Global Installation (Non-Interactive):**
|
|
117
117
|
```bash
|
|
118
|
-
|
|
118
|
+
openskill-ai vercel-labs/agent-skills \
|
|
119
119
|
--skill frontend-design \
|
|
120
120
|
--global \
|
|
121
121
|
--yes
|
|
@@ -123,7 +123,7 @@ agent-skills vercel-labs/agent-skills \
|
|
|
123
123
|
|
|
124
124
|
**List All Supported Agents:**
|
|
125
125
|
```bash
|
|
126
|
-
|
|
126
|
+
openskill-ai list-agents
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
## Supported AI Agents
|
|
@@ -196,7 +196,7 @@ import {
|
|
|
196
196
|
detectInstalledAgents,
|
|
197
197
|
parseSource,
|
|
198
198
|
cloneRepo
|
|
199
|
-
} from '
|
|
199
|
+
} from 'openskill-ai';
|
|
200
200
|
|
|
201
201
|
// Clone and discover skills
|
|
202
202
|
const parsed = parseSource('vercel-labs/agent-skills');
|
|
@@ -227,4 +227,4 @@ MIT © Agent Skills Community
|
|
|
227
227
|
|
|
228
228
|
- [GitHub Repository](https://github.com/yourusername/agent-skills)
|
|
229
229
|
- [Report Issues](https://github.com/yourusername/agent-skills/issues)
|
|
230
|
-
- [npm Package](https://www.npmjs.com/package/
|
|
230
|
+
- [npm Package](https://www.npmjs.com/package/openskill-ai)
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openskill-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Install AI agent skills from Git repositories. Supports 15+ agents including Antigravity, Cursor, Claude Code, OpenCode, GitHub Copilot, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"
|
|
9
|
+
"openskill-ai": "./dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|