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
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: example-skill
|
|
3
|
+
description: An example skill template. Use when you want to understand how to create custom skills.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Example Skill
|
|
7
|
+
|
|
8
|
+
This is a template to help you create your own skills.
|
|
9
|
+
|
|
10
|
+
## SKILL.md Structure
|
|
11
|
+
|
|
12
|
+
Every skill needs a `SKILL.md` file with two parts:
|
|
13
|
+
|
|
14
|
+
1. **YAML Frontmatter** (between `---` markers)
|
|
15
|
+
- `name`: Short identifier for the skill
|
|
16
|
+
- `description`: Explains what the skill does and when to use it
|
|
17
|
+
|
|
18
|
+
2. **Markdown Content**
|
|
19
|
+
- Instructions the AI follows when the skill is invoked
|
|
20
|
+
|
|
21
|
+
## Tips for Writing Skills
|
|
22
|
+
|
|
23
|
+
- Be specific in the description - it determines when the skill activates
|
|
24
|
+
- Keep instructions clear and actionable
|
|
25
|
+
- You can add supporting files (scripts, templates) in the same directory
|
|
26
|
+
|
|
27
|
+
## Directory Structure
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
my-skill/
|
|
31
|
+
├── SKILL.md # Required: main instructions
|
|
32
|
+
├── resources/ # Optional: reference materials
|
|
33
|
+
│ └── checklist.md
|
|
34
|
+
└── scripts/ # Optional: automation scripts
|
|
35
|
+
└── validate.sh
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Next Steps
|
|
39
|
+
|
|
40
|
+
1. Copy this directory: `cp -r example-skill my-new-skill`
|
|
41
|
+
2. Edit `my-new-skill/SKILL.md` with your content
|
|
42
|
+
3. Deploy with: `skillsmgr add my-new-skill`
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "skillsmgr",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Unified skills manager for AI coding tools",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"skillsmgr": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup",
|
|
14
|
+
"dev": "tsup --watch",
|
|
15
|
+
"test": "vitest",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"ai",
|
|
20
|
+
"skills",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"cursor",
|
|
23
|
+
"windsurf",
|
|
24
|
+
"cline",
|
|
25
|
+
"roo-code",
|
|
26
|
+
"kilo-code",
|
|
27
|
+
"antigravity",
|
|
28
|
+
"cli"
|
|
29
|
+
],
|
|
30
|
+
"author": "jtianling <jtianling@gmail.com>",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/jtianling/skills-manager.git"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/jtianling/skills-manager#readme",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/jtianling/skills-manager/issues"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"commander": "^14.0.0",
|
|
45
|
+
"inquirer": "^13.2.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/inquirer": "^9.0.9",
|
|
49
|
+
"@types/node": "^22.0.0",
|
|
50
|
+
"tsup": "^8.5.0",
|
|
51
|
+
"typescript": "^5.7.0",
|
|
52
|
+
"vitest": "^3.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|