skillsmgr 0.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/LICENSE +21 -0
- package/README.md +155 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1638 -0
- package/dist/templates/example-skill/SKILL.md +42 -0
- package/package.json +54 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 jtianling
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
# skillsmgr
|
|
2
|
+
|
|
3
|
+
Unified skills manager for AI coding tools. Manage skills in `~/.skills-manager/` and deploy them to multiple AI tools.
|
|
4
|
+
|
|
5
|
+
## Supported Tools
|
|
6
|
+
|
|
7
|
+
| Tool | Skills Directory | Mode-Specific |
|
|
8
|
+
|------|-----------------|---------------|
|
|
9
|
+
| Claude Code | `.claude/skills/` | No |
|
|
10
|
+
| Cursor | `.cursor/skills/` | No |
|
|
11
|
+
| Windsurf | `.windsurf/skills/` | No |
|
|
12
|
+
| Cline | `.cline/skills/` | No |
|
|
13
|
+
| Roo Code | `.roo/skills/` | Yes |
|
|
14
|
+
| Kilo Code | `.kilocode/skills/` | Yes |
|
|
15
|
+
| Antigravity | `.agent/skills/` | No |
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install -g skillsmgr
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Initialize skills manager
|
|
27
|
+
skillsmgr setup
|
|
28
|
+
|
|
29
|
+
# Install official Anthropic skills
|
|
30
|
+
skillsmgr install anthropic
|
|
31
|
+
|
|
32
|
+
# Deploy skills to your project
|
|
33
|
+
cd your-project
|
|
34
|
+
skillsmgr init
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Commands
|
|
38
|
+
|
|
39
|
+
### `skillsmgr setup`
|
|
40
|
+
|
|
41
|
+
Initialize `~/.skills-manager/` directory structure with example skill.
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
skillsmgr setup
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### `skillsmgr install <source>`
|
|
48
|
+
|
|
49
|
+
Download skills from a repository.
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Install official Anthropic skills
|
|
53
|
+
skillsmgr install anthropic
|
|
54
|
+
|
|
55
|
+
# Install from any GitHub repository
|
|
56
|
+
skillsmgr install https://github.com/user/skills-repo
|
|
57
|
+
|
|
58
|
+
# Install specific skill
|
|
59
|
+
skillsmgr install https://github.com/anthropics/skills/tree/main/skills/code-review
|
|
60
|
+
|
|
61
|
+
# Install all skills without prompting
|
|
62
|
+
skillsmgr install anthropic --all
|
|
63
|
+
|
|
64
|
+
# Install to custom/ instead of community/
|
|
65
|
+
skillsmgr install https://github.com/user/repo --custom
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### `skillsmgr list`
|
|
69
|
+
|
|
70
|
+
List available skills.
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
# List all available skills
|
|
74
|
+
skillsmgr list
|
|
75
|
+
|
|
76
|
+
# List deployed skills in current project
|
|
77
|
+
skillsmgr list --deployed
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### `skillsmgr init`
|
|
81
|
+
|
|
82
|
+
Interactive deployment of skills to current project.
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
skillsmgr init
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Features:
|
|
89
|
+
- Select target tools (Claude Code, Cursor, etc.)
|
|
90
|
+
- Select mode for Roo Code / Kilo Code
|
|
91
|
+
- Choose skills to deploy with search filter
|
|
92
|
+
- Incremental updates (add/remove skills)
|
|
93
|
+
|
|
94
|
+
### `skillsmgr add <skill>`
|
|
95
|
+
|
|
96
|
+
Quick add a skill to project.
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
# Add to all configured tools
|
|
100
|
+
skillsmgr add code-review
|
|
101
|
+
|
|
102
|
+
# Add to specific tool
|
|
103
|
+
skillsmgr add code-review --tool claude-code
|
|
104
|
+
|
|
105
|
+
# Use copy mode instead of symlink
|
|
106
|
+
skillsmgr add code-review --copy
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### `skillsmgr remove <skill>`
|
|
110
|
+
|
|
111
|
+
Remove a skill from project.
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
# Remove from all tools
|
|
115
|
+
skillsmgr remove code-review
|
|
116
|
+
|
|
117
|
+
# Remove from specific tool
|
|
118
|
+
skillsmgr remove code-review --tool claude-code
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
### `skillsmgr sync`
|
|
122
|
+
|
|
123
|
+
Sync and verify deployed skills.
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
skillsmgr sync
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
## Directory Structure
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
~/.skills-manager/
|
|
133
|
+
├── official/ # Official skills (anthropic/skills)
|
|
134
|
+
│ └── anthropic/
|
|
135
|
+
│ ├── code-review/
|
|
136
|
+
│ └── tdd/
|
|
137
|
+
├── community/ # Community skills (other repos)
|
|
138
|
+
│ └── awesome-skills/
|
|
139
|
+
│ └── react-patterns/
|
|
140
|
+
└── custom/ # Local custom skills
|
|
141
|
+
└── my-skill/
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## Features
|
|
145
|
+
|
|
146
|
+
- **Unified Management**: Manage all skills in one place
|
|
147
|
+
- **Multi-tool Support**: Deploy to 7 different AI tools
|
|
148
|
+
- **Symlink by Default**: Changes sync automatically
|
|
149
|
+
- **Search Filter**: Quick search for large skill repositories
|
|
150
|
+
- **Progress Indicators**: Visual feedback during downloads
|
|
151
|
+
- **Incremental Updates**: Add/remove skills without full redeploy
|
|
152
|
+
|
|
153
|
+
## License
|
|
154
|
+
|
|
155
|
+
MIT
|
package/dist/index.d.ts
ADDED