skillkit 1.1.0 → 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 +57 -0
- package/dist/cli.js +1588 -607
- package/dist/cli.js.map +1 -1
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -11,6 +11,31 @@ Skills follow the [Agent Skills](https://agentskills.io) open format—a simple,
|
|
|
11
11
|
|
|
12
12
|

|
|
13
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
|
+

|
|
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
|
+
|
|
14
39
|
### Compatible With
|
|
15
40
|
|
|
16
41
|
| Agent | Status |
|
|
@@ -35,6 +60,7 @@ Skills follow the [Agent Skills](https://agentskills.io) open format—a simple,
|
|
|
35
60
|
|
|
36
61
|
## Features
|
|
37
62
|
|
|
63
|
+
- **Interactive TUI**: Beautiful terminal interface for managing skills
|
|
38
64
|
- **Multi-Agent Support**: Works with 17+ AI coding agents out of the box
|
|
39
65
|
- **Multi-Platform Git**: GitHub, GitLab, Bitbucket, and local paths
|
|
40
66
|
- **CI/CD Friendly**: Non-interactive flags for automation (`--skills`, `--all`, `--yes`)
|
|
@@ -53,6 +79,9 @@ npx skillkit <command>
|
|
|
53
79
|
## Quick Start
|
|
54
80
|
|
|
55
81
|
```bash
|
|
82
|
+
# Launch interactive TUI
|
|
83
|
+
skillkit ui
|
|
84
|
+
|
|
56
85
|
# Initialize in your project (auto-detects agent)
|
|
57
86
|
skillkit init
|
|
58
87
|
|
|
@@ -95,6 +124,34 @@ skillkit install vercel-labs/agent-skills/skills
|
|
|
95
124
|
|
|
96
125
|
## Commands
|
|
97
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
|
+
|
|
98
155
|
### `skillkit install <source>`
|
|
99
156
|
|
|
100
157
|
Install skills from various sources.
|