@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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. 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
- ├── prompt.md # Main prompt
33
- └── tools/ # Optional MCP tools
32
+ └── SKILL.md # Main prompt
34
33
  ```
35
34
 
36
35
  ## Commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillbase/spm",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Package manager for AI skills — discover, install, and publish reusable prompts and tools",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/skillbase/spm",