@anytio/pspm 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 +10 -3
- package/dist/index.js +725 -467
- package/dist/index.js.map +1 -1
- package/package.json +67 -67
package/README.md
CHANGED
|
@@ -52,14 +52,21 @@ pspm whoami # Show current user info
|
|
|
52
52
|
### Skill Management
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
|
-
pspm add <
|
|
55
|
+
pspm add <specifiers...> # Add and install one or more skills
|
|
56
56
|
pspm remove <name> # Remove an installed skill (alias: rm)
|
|
57
57
|
pspm list # List installed skills (alias: ls)
|
|
58
|
-
pspm install
|
|
58
|
+
pspm install [specifiers...] # Install from lockfile, or add specific packages (alias: i)
|
|
59
59
|
pspm link # Recreate agent symlinks without reinstalling
|
|
60
60
|
pspm update # Update skills to latest compatible versions
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
**Multiple package support (like npm):**
|
|
64
|
+
```bash
|
|
65
|
+
pspm add @user/alice/skill1 @user/bob/skill2 # Add multiple packages
|
|
66
|
+
pspm install @user/alice/skill1 github:org/repo # Install specific packages
|
|
67
|
+
pspm install # Install all from lockfile
|
|
68
|
+
```
|
|
69
|
+
|
|
63
70
|
**Registry specifier formats:**
|
|
64
71
|
- `@user/username/skillname` - Latest version
|
|
65
72
|
- `@user/username/skillname@2.0.0` - Specific version
|
|
@@ -78,7 +85,7 @@ pspm install --agent none # Skip symlink creation
|
|
|
78
85
|
pspm link --agent codex # Recreate symlinks for specific agent
|
|
79
86
|
```
|
|
80
87
|
|
|
81
|
-
Default
|
|
88
|
+
Default is all agents (`claude-code`, `codex`, `cursor`, `gemini`, `kiro`, `opencode`). Use `--agent claude-code` to install for a single agent.
|
|
82
89
|
|
|
83
90
|
### Publishing
|
|
84
91
|
|