skillkit 1.0.3 → 1.1.0
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 +52 -15
- package/dist/cli.js +1139 -216
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +130 -9
- package/dist/index.js +969 -197
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@ Universal skills loader for AI coding agents. Install, manage, and sync skills a
|
|
|
9
9
|
|
|
10
10
|
Skills follow the [Agent Skills](https://agentskills.io) open format—a simple, portable standard for giving agents new capabilities and expertise.
|
|
11
11
|
|
|
12
|
+

|
|
13
|
+
|
|
12
14
|
### Compatible With
|
|
13
15
|
|
|
14
16
|
| Agent | Status |
|
|
@@ -18,17 +20,22 @@ Skills follow the [Agent Skills](https://agentskills.io) open format—a simple,
|
|
|
18
20
|
| Cursor | ✅ Native |
|
|
19
21
|
| Gemini CLI | ✅ Native |
|
|
20
22
|
| OpenCode | ✅ Native |
|
|
21
|
-
| Amp | ✅ Supported |
|
|
22
|
-
| Goose | ✅ Supported |
|
|
23
|
-
| VS Code (Copilot) | ✅ Supported |
|
|
24
|
-
| Letta | ✅ Supported |
|
|
25
|
-
| Factory | ✅ Supported |
|
|
26
23
|
| Antigravity | ✅ Native |
|
|
24
|
+
| Amp | ✅ Native |
|
|
25
|
+
| Clawdbot | ✅ Native |
|
|
26
|
+
| Droid (Factory) | ✅ Native |
|
|
27
|
+
| GitHub Copilot | ✅ Native |
|
|
28
|
+
| Goose | ✅ Native |
|
|
29
|
+
| Kilo Code | ✅ Native |
|
|
30
|
+
| Kiro CLI | ✅ Native |
|
|
31
|
+
| Roo Code | ✅ Native |
|
|
32
|
+
| Trae | ✅ Native |
|
|
33
|
+
| Windsurf | ✅ Native |
|
|
27
34
|
| *Any markdown-config agent* | ✅ Universal |
|
|
28
35
|
|
|
29
36
|
## Features
|
|
30
37
|
|
|
31
|
-
- **Multi-Agent Support**: Works with
|
|
38
|
+
- **Multi-Agent Support**: Works with 17+ AI coding agents out of the box
|
|
32
39
|
- **Multi-Platform Git**: GitHub, GitLab, Bitbucket, and local paths
|
|
33
40
|
- **CI/CD Friendly**: Non-interactive flags for automation (`--skills`, `--all`, `--yes`)
|
|
34
41
|
- **Skill Toggle**: Enable/disable skills without removing them
|
|
@@ -58,6 +65,9 @@ skillkit install gitlab:owner/repo
|
|
|
58
65
|
# Install specific skills (CI/CD friendly)
|
|
59
66
|
skillkit install owner/repo --skills=pdf,xlsx,docx
|
|
60
67
|
|
|
68
|
+
# Create a new skill
|
|
69
|
+
skillkit create my-skill
|
|
70
|
+
|
|
61
71
|
# Sync skills to your agent config
|
|
62
72
|
skillkit sync
|
|
63
73
|
|
|
@@ -109,12 +119,14 @@ skillkit install ./my-skills
|
|
|
109
119
|
skillkit install ~/dev/skills
|
|
110
120
|
|
|
111
121
|
# Options
|
|
122
|
+
--list # List available skills without installing
|
|
112
123
|
--skills=pdf,xlsx # Install specific skills only (CI/CD)
|
|
113
124
|
--all # Install all discovered skills
|
|
114
125
|
--yes # Skip confirmation prompts
|
|
115
126
|
--global # Install to global directory
|
|
116
127
|
--force # Overwrite existing skills
|
|
117
128
|
--provider=gitlab # Force specific provider
|
|
129
|
+
--agent=cursor # Install to specific agent (can specify multiple)
|
|
118
130
|
```
|
|
119
131
|
|
|
120
132
|
### `skillkit sync`
|
|
@@ -192,20 +204,45 @@ skillkit validate ./my-skill # Validate single skill
|
|
|
192
204
|
skillkit validate ./skills --all # Validate all skills in directory
|
|
193
205
|
```
|
|
194
206
|
|
|
207
|
+
### `skillkit create <skill-name>`
|
|
208
|
+
|
|
209
|
+
Create a new skill with proper structure and template.
|
|
210
|
+
|
|
211
|
+
```bash
|
|
212
|
+
skillkit create my-skill # Basic skill
|
|
213
|
+
skillkit create my-skill --full # Include all directories (references, scripts, assets)
|
|
214
|
+
skillkit create my-skill --scripts # Include scripts directory
|
|
215
|
+
skillkit create my-skill --references # Include references directory
|
|
216
|
+
skillkit create my-skill --assets # Include assets directory
|
|
217
|
+
skillkit create my-skill --dir ./skills # Create in specific directory
|
|
218
|
+
```
|
|
219
|
+
|
|
195
220
|
## Supported Agents
|
|
196
221
|
|
|
197
|
-
| Agent | Config File |
|
|
198
|
-
|
|
199
|
-
| Claude Code | `AGENTS.md` | `.claude/skills/` |
|
|
200
|
-
| Cursor | `.cursorrules` | `.cursor/skills/` |
|
|
201
|
-
| Codex | `AGENTS.md` | `.codex/skills/` |
|
|
202
|
-
| Gemini CLI | `GEMINI.md` | `.gemini/skills/` |
|
|
203
|
-
| OpenCode | `AGENTS.md` | `.opencode/skills/` |
|
|
204
|
-
| Antigravity | `AGENTS.md` | `.antigravity/skills/` |
|
|
205
|
-
|
|
|
222
|
+
| Agent | Config File | Project Path | Global Path |
|
|
223
|
+
|-------|-------------|--------------|-------------|
|
|
224
|
+
| Claude Code | `AGENTS.md` | `.claude/skills/` | `~/.claude/skills/` |
|
|
225
|
+
| Cursor | `.cursorrules` | `.cursor/skills/` | `~/.cursor/skills/` |
|
|
226
|
+
| Codex | `AGENTS.md` | `.codex/skills/` | `~/.codex/skills/` |
|
|
227
|
+
| Gemini CLI | `GEMINI.md` | `.gemini/skills/` | `~/.gemini/skills/` |
|
|
228
|
+
| OpenCode | `AGENTS.md` | `.opencode/skills/` | `~/.config/opencode/skills/` |
|
|
229
|
+
| Antigravity | `AGENTS.md` | `.antigravity/skills/` | `~/.gemini/antigravity/skills/` |
|
|
230
|
+
| Amp | `AGENTS.md` | `.agents/skills/` | `~/.config/agents/skills/` |
|
|
231
|
+
| Clawdbot | `AGENTS.md` | `skills/` | `~/.clawdbot/skills/` |
|
|
232
|
+
| Droid (Factory) | `AGENTS.md` | `.factory/skills/` | `~/.factory/skills/` |
|
|
233
|
+
| GitHub Copilot | `AGENTS.md` | `.github/skills/` | `~/.copilot/skills/` |
|
|
234
|
+
| Goose | `AGENTS.md` | `.goose/skills/` | `~/.config/goose/skills/` |
|
|
235
|
+
| Kilo Code | `AGENTS.md` | `.kilocode/skills/` | `~/.kilocode/skills/` |
|
|
236
|
+
| Kiro CLI | `AGENTS.md` | `.kiro/skills/` | `~/.kiro/skills/` |
|
|
237
|
+
| Roo Code | `AGENTS.md` | `.roo/skills/` | `~/.roo/skills/` |
|
|
238
|
+
| Trae | `AGENTS.md` | `.trae/skills/` | `~/.trae/skills/` |
|
|
239
|
+
| Windsurf | `AGENTS.md` | `.windsurf/skills/` | `~/.codeium/windsurf/skills/` |
|
|
240
|
+
| Universal | `AGENTS.md` | `.agent/skills/` | `~/.agent/skills/` |
|
|
206
241
|
|
|
207
242
|
## Creating Skills
|
|
208
243
|
|
|
244
|
+
Use `skillkit create <name>` to scaffold a new skill, or create manually:
|
|
245
|
+
|
|
209
246
|
A skill is a directory with a `SKILL.md` file:
|
|
210
247
|
|
|
211
248
|
```
|