@skillbase/spm 0.1.0 → 0.1.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 +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Package manager for AI skills — discover, install, and publish reusable prompts and tools.
|
|
4
4
|
|
|
5
5
|
```
|
|
6
|
-
npm install -g skillbase
|
|
6
|
+
npm install -g @skillbase/spm
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Quick start
|
|
@@ -29,8 +29,7 @@ A skill is a portable, versioned package containing prompts, tools, or instructi
|
|
|
29
29
|
```
|
|
30
30
|
my-skill/
|
|
31
31
|
├── skill.json # Manifest (name, version, dependencies)
|
|
32
|
-
|
|
33
|
-
└── tools/ # Optional MCP tools
|
|
32
|
+
└── SKILL.md # Main prompt
|
|
34
33
|
```
|
|
35
34
|
|
|
36
35
|
## Commands
|
package/package.json
CHANGED