skillkit 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 +41 -0
- package/package.json +5 -5
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# SkillKit
|
|
2
|
+
|
|
3
|
+
Universal skills manager for AI coding agents. Install, manage, and sync skills across 17+ AI agents including Claude Code, Cursor, Codex, Gemini CLI, and more.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g skillkit
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Initialize skillkit in your project
|
|
15
|
+
skillkit init
|
|
16
|
+
|
|
17
|
+
# Install a skill
|
|
18
|
+
skillkit install github.com/anthropics/courses:prompt-eng/interactive-tutorial
|
|
19
|
+
|
|
20
|
+
# List installed skills
|
|
21
|
+
skillkit list
|
|
22
|
+
|
|
23
|
+
# Launch interactive TUI
|
|
24
|
+
skillkit ui
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Features
|
|
28
|
+
|
|
29
|
+
- **17+ Agent Support**: Claude Code, Cursor, Codex, Gemini CLI, Windsurf, GitHub Copilot, and more
|
|
30
|
+
- **Universal Skill Translation**: Convert skills between different agent formats
|
|
31
|
+
- **Smart Recommendations**: Get skill suggestions based on your project stack
|
|
32
|
+
- **Project Context Sync**: One config, all agents
|
|
33
|
+
- **Interactive TUI**: Browse, install, and manage skills visually
|
|
34
|
+
|
|
35
|
+
## Documentation
|
|
36
|
+
|
|
37
|
+
Full documentation: https://github.com/rohitg00/skillkit
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillkit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Universal skills loader for AI coding agents - supports Claude Code, Codex, Cursor, Antigravity, OpenCode, Gemini CLI and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"clipanion": "^4.0.0-rc.4",
|
|
51
|
-
"@skillkit/core": "1.3.
|
|
52
|
-
"@skillkit/agents": "1.3.
|
|
53
|
-
"@skillkit/
|
|
54
|
-
"@skillkit/
|
|
51
|
+
"@skillkit/core": "1.3.1",
|
|
52
|
+
"@skillkit/agents": "1.3.1",
|
|
53
|
+
"@skillkit/cli": "1.3.1",
|
|
54
|
+
"@skillkit/tui": "1.3.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/node": "^22.10.5",
|