@anytio/pspm 0.11.0 → 0.12.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/CHANGELOG.md +28 -1
- package/CLI_GUIDE.md +4 -0
- package/README.md +4 -0
- package/dist/index.js +1516 -945
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ All notable changes to the PSPM CLI will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.12.0] - 2026-03-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Skill list CLI commands**: Full CRUD `pspm skill-list` command group with 8 subcommands
|
|
13
|
+
- `pspm skill-list list` — list your skill lists
|
|
14
|
+
- `pspm skill-list create <name>` — create a new skill list
|
|
15
|
+
- `pspm skill-list show <name>` — view list details and items
|
|
16
|
+
- `pspm skill-list delete <name>` — delete a skill list
|
|
17
|
+
- `pspm skill-list update <name>` — update list metadata
|
|
18
|
+
- `pspm skill-list add-skill <list> <specifier>` — add a skill to a list
|
|
19
|
+
- `pspm skill-list remove-skill <list> <specifier>` — remove a skill from a list
|
|
20
|
+
- `pspm skill-list install <name>` — install all skills from a list
|
|
21
|
+
- **Notebook commands**: Upload, share, and manage .anyt notebooks via CLI
|
|
22
|
+
- `pspm notebook upload <file>` — upload a notebook to the platform
|
|
23
|
+
- `pspm notebook list` — list your uploaded notebooks
|
|
24
|
+
- `pspm notebook download <id>` — download a notebook
|
|
25
|
+
- `pspm notebook delete <id>` — delete a notebook
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- **Audit false positives**: Fixed double path joining that caused installed skills to always report as MISSING
|
|
30
|
+
- **Publish with qualified names**: `@user/owner/name` format no longer rejected by server validation
|
|
31
|
+
- **Remove @github skills**: GitHub-indexed skills can now be removed by short name
|
|
32
|
+
- **Outdated command crash**: Fixed crash on @github namespace packages in lockfile
|
|
33
|
+
- **Manifest validation**: Regex now accepts qualified name format in pspm.json
|
|
34
|
+
|
|
8
35
|
## [0.11.0] - 2026-03-17
|
|
9
36
|
|
|
10
37
|
### Added
|
|
@@ -103,7 +130,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
103
130
|
|
|
104
131
|
### Fixed
|
|
105
132
|
|
|
106
|
-
- **Fix npm install failure**: Moved `@repo/
|
|
133
|
+
- **Fix npm install failure**: Moved `@repo/types` and `@repo/skill-registry` from `dependencies` to `devDependencies` to prevent npm from trying to install workspace-only packages from the public registry
|
|
107
134
|
|
|
108
135
|
## [0.7.1] - 2026-03-02
|
|
109
136
|
|
package/CLI_GUIDE.md
CHANGED
|
@@ -222,6 +222,10 @@ pspm install -y # Skip agent selection prompt
|
|
|
222
222
|
|
|
223
223
|
# Install specific packages (like npm):
|
|
224
224
|
pspm install @user/alice/skill1 github:org/repo
|
|
225
|
+
|
|
226
|
+
# Install all skills from a skill list:
|
|
227
|
+
pspm install --list @user/alice/my-favorites
|
|
228
|
+
pspm install --list @org/myteam/starter-kit
|
|
225
229
|
```
|
|
226
230
|
|
|
227
231
|
### Link Skills
|
package/README.md
CHANGED
|
@@ -128,6 +128,8 @@ pspm install
|
|
|
128
128
|
| `pspm init` | Create pspm.json manifest |
|
|
129
129
|
| `pspm publish` | Publish skill to registry |
|
|
130
130
|
| `pspm login` | Authenticate via browser or API key |
|
|
131
|
+
| `pspm skill-list <subcommand>` | Manage skill lists (list, create, show, delete, update, add-skill, remove-skill, install) |
|
|
132
|
+
| `pspm notebook <subcommand>` | Manage notebooks (upload, list, download, delete) |
|
|
131
133
|
| `pspm upgrade` | Update pspm itself to the latest version |
|
|
132
134
|
|
|
133
135
|
### `pspm install`
|
|
@@ -511,3 +513,5 @@ Auto-detects your package manager (pnpm, npm, yarn, bun). The CLI also checks fo
|
|
|
511
513
|
## License
|
|
512
514
|
|
|
513
515
|
This project is licensed under [The Artistic License 2.0](LICENSE), the same license used by npm.
|
|
516
|
+
|
|
517
|
+
<!-- @doc-sync: 1f5c64d | 2026-03-18 10:30 -->
|