@skillkit/tui 1.3.0 → 1.3.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 +61 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# @skillkit/tui
|
|
2
|
+
|
|
3
|
+
Interactive terminal UI for SkillKit - browse, install, and manage skills visually.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @skillkit/tui
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **Browse Skills**: Discover skills from the marketplace
|
|
14
|
+
- **Smart Recommendations**: Project-aware skill suggestions
|
|
15
|
+
- **Skill Translation**: Convert between agent formats
|
|
16
|
+
- **Context Management**: View and sync project context
|
|
17
|
+
- **Keyboard Navigation**: Fast, intuitive controls
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import { startTUI } from '@skillkit/tui';
|
|
23
|
+
|
|
24
|
+
// Launch the interactive TUI
|
|
25
|
+
await startTUI();
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or via CLI:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
skillkit ui
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Screens
|
|
35
|
+
|
|
36
|
+
- **Home**: Overview and quick actions
|
|
37
|
+
- **Browse**: Explore available skills
|
|
38
|
+
- **Recommend**: Get personalized recommendations
|
|
39
|
+
- **Translate**: Convert skills between formats
|
|
40
|
+
- **Context**: Manage project context
|
|
41
|
+
- **Installed**: View and manage installed skills
|
|
42
|
+
- **Sync**: Sync skills across agents
|
|
43
|
+
- **Settings**: Configure skillkit
|
|
44
|
+
|
|
45
|
+
## Keyboard Shortcuts
|
|
46
|
+
|
|
47
|
+
| Key | Action |
|
|
48
|
+
|-----|--------|
|
|
49
|
+
| `↑/↓` | Navigate |
|
|
50
|
+
| `Enter` | Select |
|
|
51
|
+
| `Tab` | Switch focus |
|
|
52
|
+
| `?` | Help |
|
|
53
|
+
| `q` | Quit |
|
|
54
|
+
|
|
55
|
+
## Documentation
|
|
56
|
+
|
|
57
|
+
Full documentation: https://github.com/rohitg00/skillkit
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skillkit/tui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Terminal UI for SkillKit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"ink-spinner": "^5.0.0",
|
|
22
22
|
"ink-text-input": "^6.0.0",
|
|
23
23
|
"react": "^18.3.1",
|
|
24
|
-
"@skillkit/core": "1.3.
|
|
25
|
-
"@skillkit/agents": "1.3.
|
|
24
|
+
"@skillkit/core": "1.3.1",
|
|
25
|
+
"@skillkit/agents": "1.3.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^22.10.5",
|