mdskills 1.0.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 +15 -0
- package/bin/mdskills.js +5 -0
- package/package.json +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# mdbase
|
|
2
|
+
|
|
3
|
+
AI skills marketplace CLI — find, branch, vote, upload and download AI agent skills.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
mdbase is a command-line tool for discovering, sharing, and managing AI agent skills.
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **Find** — discover skills from the marketplace
|
|
12
|
+
- **Branch** — fork and customize existing skills
|
|
13
|
+
- **Vote** — rate and recommend skills
|
|
14
|
+
- **Upload** — publish your skills to the marketplace
|
|
15
|
+
- **Download** — install skills for use in your environment
|
package/bin/mdskills.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mdskills",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI skills marketplace - find, branch, vote, upload and download AI agent skills",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mdskills": "bin/mdskills.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/rgourley/mdskills.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/rgourley/mdskills/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://mdskills.ai",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"ai",
|
|
22
|
+
"skills",
|
|
23
|
+
"agents",
|
|
24
|
+
"markdown",
|
|
25
|
+
"cli",
|
|
26
|
+
"mcp",
|
|
27
|
+
"claude",
|
|
28
|
+
"md"
|
|
29
|
+
],
|
|
30
|
+
"author": "Rob Gourley",
|
|
31
|
+
"license": "MIT"
|
|
32
|
+
}
|