skillkit 1.0.3 → 1.2.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 CHANGED
@@ -9,6 +9,33 @@ 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
+ ![SkillKit Demo](https://raw.githubusercontent.com/rohitg00/skillkit/main/skillkit.gif)
13
+
14
+ ## Interactive TUI
15
+
16
+ Manage all your skills with a beautiful terminal interface:
17
+
18
+ ```bash
19
+ skillkit ui
20
+ # or simply
21
+ skillkit
22
+ ```
23
+
24
+ ![SkillKit TUI](docs/img/skillkit-ui.png)
25
+
26
+ **Features:**
27
+ - Browse 33+ skill repositories
28
+ - Install skills with one keystroke
29
+ - Multi-agent installation support
30
+ - View installed skills
31
+ - Sync across agents
32
+ - Responsive design for all terminal sizes
33
+
34
+ **Navigation:**
35
+ - `h` Home | `b` Browse | `l` List | `s` Sync | `,` Config
36
+ - `↑↓` Navigate | `Enter` Select | `Esc` Back | `q` Quit
37
+ - `m` Multi-agent selection | `r` Refresh/Back
38
+
12
39
  ### Compatible With
13
40
 
14
41
  | Agent | Status |
@@ -18,17 +45,23 @@ Skills follow the [Agent Skills](https://agentskills.io) open format—a simple,
18
45
  | Cursor | ✅ Native |
19
46
  | Gemini CLI | ✅ Native |
20
47
  | OpenCode | ✅ Native |
21
- | Amp | ✅ Supported |
22
- | Goose | ✅ Supported |
23
- | VS Code (Copilot) | ✅ Supported |
24
- | Letta | ✅ Supported |
25
- | Factory | ✅ Supported |
26
48
  | Antigravity | ✅ Native |
49
+ | Amp | ✅ Native |
50
+ | Clawdbot | ✅ Native |
51
+ | Droid (Factory) | ✅ Native |
52
+ | GitHub Copilot | ✅ Native |
53
+ | Goose | ✅ Native |
54
+ | Kilo Code | ✅ Native |
55
+ | Kiro CLI | ✅ Native |
56
+ | Roo Code | ✅ Native |
57
+ | Trae | ✅ Native |
58
+ | Windsurf | ✅ Native |
27
59
  | *Any markdown-config agent* | ✅ Universal |
28
60
 
29
61
  ## Features
30
62
 
31
- - **Multi-Agent Support**: Works with 10+ AI coding agents out of the box
63
+ - **Interactive TUI**: Beautiful terminal interface for managing skills
64
+ - **Multi-Agent Support**: Works with 17+ AI coding agents out of the box
32
65
  - **Multi-Platform Git**: GitHub, GitLab, Bitbucket, and local paths
33
66
  - **CI/CD Friendly**: Non-interactive flags for automation (`--skills`, `--all`, `--yes`)
34
67
  - **Skill Toggle**: Enable/disable skills without removing them
@@ -46,6 +79,9 @@ npx skillkit <command>
46
79
  ## Quick Start
47
80
 
48
81
  ```bash
82
+ # Launch interactive TUI
83
+ skillkit ui
84
+
49
85
  # Initialize in your project (auto-detects agent)
50
86
  skillkit init
51
87
 
@@ -58,6 +94,9 @@ skillkit install gitlab:owner/repo
58
94
  # Install specific skills (CI/CD friendly)
59
95
  skillkit install owner/repo --skills=pdf,xlsx,docx
60
96
 
97
+ # Create a new skill
98
+ skillkit create my-skill
99
+
61
100
  # Sync skills to your agent config
62
101
  skillkit sync
63
102
 
@@ -85,6 +124,34 @@ skillkit install vercel-labs/agent-skills/skills
85
124
 
86
125
  ## Commands
87
126
 
127
+ ### `skillkit ui` / `skillkit`
128
+
129
+ Launch the interactive Terminal User Interface (TUI) for managing skills.
130
+
131
+ ```bash
132
+ skillkit ui # Explicit TUI launch
133
+ skillkit # Launch TUI if no arguments provided
134
+ ```
135
+
136
+ **TUI Features:**
137
+ - **Browse**: Discover skills from 33+ repositories
138
+ - **List**: View all installed skills
139
+ - **Sync**: Sync skills across multiple agents
140
+ - **Settings**: Configure SkillKit preferences
141
+
142
+ **Keyboard Shortcuts:**
143
+ - `h` - Home screen
144
+ - `b` - Browse skills marketplace
145
+ - `l` - List installed skills
146
+ - `s` - Sync skills across agents
147
+ - `,` - Settings
148
+ - `↑↓` - Navigate lists
149
+ - `Enter` - Select / Install
150
+ - `m` - Multi-agent selection (when viewing skills)
151
+ - `r` - Refresh / Go back
152
+ - `Esc` - Return to home
153
+ - `q` - Quit
154
+
88
155
  ### `skillkit install <source>`
89
156
 
90
157
  Install skills from various sources.
@@ -109,12 +176,14 @@ skillkit install ./my-skills
109
176
  skillkit install ~/dev/skills
110
177
 
111
178
  # Options
179
+ --list # List available skills without installing
112
180
  --skills=pdf,xlsx # Install specific skills only (CI/CD)
113
181
  --all # Install all discovered skills
114
182
  --yes # Skip confirmation prompts
115
183
  --global # Install to global directory
116
184
  --force # Overwrite existing skills
117
185
  --provider=gitlab # Force specific provider
186
+ --agent=cursor # Install to specific agent (can specify multiple)
118
187
  ```
119
188
 
120
189
  ### `skillkit sync`
@@ -192,20 +261,45 @@ skillkit validate ./my-skill # Validate single skill
192
261
  skillkit validate ./skills --all # Validate all skills in directory
193
262
  ```
194
263
 
264
+ ### `skillkit create <skill-name>`
265
+
266
+ Create a new skill with proper structure and template.
267
+
268
+ ```bash
269
+ skillkit create my-skill # Basic skill
270
+ skillkit create my-skill --full # Include all directories (references, scripts, assets)
271
+ skillkit create my-skill --scripts # Include scripts directory
272
+ skillkit create my-skill --references # Include references directory
273
+ skillkit create my-skill --assets # Include assets directory
274
+ skillkit create my-skill --dir ./skills # Create in specific directory
275
+ ```
276
+
195
277
  ## Supported Agents
196
278
 
197
- | Agent | Config File | Skills Directory |
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
- | Universal | `AGENTS.md` | `.agent/skills/` |
279
+ | Agent | Config File | Project Path | Global Path |
280
+ |-------|-------------|--------------|-------------|
281
+ | Claude Code | `AGENTS.md` | `.claude/skills/` | `~/.claude/skills/` |
282
+ | Cursor | `.cursorrules` | `.cursor/skills/` | `~/.cursor/skills/` |
283
+ | Codex | `AGENTS.md` | `.codex/skills/` | `~/.codex/skills/` |
284
+ | Gemini CLI | `GEMINI.md` | `.gemini/skills/` | `~/.gemini/skills/` |
285
+ | OpenCode | `AGENTS.md` | `.opencode/skills/` | `~/.config/opencode/skills/` |
286
+ | Antigravity | `AGENTS.md` | `.antigravity/skills/` | `~/.gemini/antigravity/skills/` |
287
+ | Amp | `AGENTS.md` | `.agents/skills/` | `~/.config/agents/skills/` |
288
+ | Clawdbot | `AGENTS.md` | `skills/` | `~/.clawdbot/skills/` |
289
+ | Droid (Factory) | `AGENTS.md` | `.factory/skills/` | `~/.factory/skills/` |
290
+ | GitHub Copilot | `AGENTS.md` | `.github/skills/` | `~/.copilot/skills/` |
291
+ | Goose | `AGENTS.md` | `.goose/skills/` | `~/.config/goose/skills/` |
292
+ | Kilo Code | `AGENTS.md` | `.kilocode/skills/` | `~/.kilocode/skills/` |
293
+ | Kiro CLI | `AGENTS.md` | `.kiro/skills/` | `~/.kiro/skills/` |
294
+ | Roo Code | `AGENTS.md` | `.roo/skills/` | `~/.roo/skills/` |
295
+ | Trae | `AGENTS.md` | `.trae/skills/` | `~/.trae/skills/` |
296
+ | Windsurf | `AGENTS.md` | `.windsurf/skills/` | `~/.codeium/windsurf/skills/` |
297
+ | Universal | `AGENTS.md` | `.agent/skills/` | `~/.agent/skills/` |
206
298
 
207
299
  ## Creating Skills
208
300
 
301
+ Use `skillkit create <name>` to scaffold a new skill, or create manually:
302
+
209
303
  A skill is a directory with a `SKILL.md` file:
210
304
 
211
305
  ```