@anytio/pspm 0.10.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 +42 -1
- package/CLI_GUIDE.md +4 -0
- package/README.md +8 -0
- package/dist/index.js +1780 -1027
- package/dist/index.js.map +1 -1
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,47 @@ 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
|
+
|
|
35
|
+
## [0.11.0] - 2026-03-17
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
|
|
39
|
+
- **Skill list install**: Install all skills from a curated skill list with `pspm install --list @user/username/list-name`
|
|
40
|
+
- Supports both user and org lists: `@user/{username}/{list-name}` or `@org/{orgname}/{list-name}`
|
|
41
|
+
- Fetches list from the registry API and resolves items to registry specifiers
|
|
42
|
+
- Respects pinned versions when specified in the list
|
|
43
|
+
- Can be combined with explicit specifiers for additional packages
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
|
|
47
|
+
- Updated all dependencies to latest versions
|
|
48
|
+
|
|
8
49
|
## [0.10.0] - 2026-03-14
|
|
9
50
|
|
|
10
51
|
### Added
|
|
@@ -89,7 +130,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
89
130
|
|
|
90
131
|
### Fixed
|
|
91
132
|
|
|
92
|
-
- **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
|
|
93
134
|
|
|
94
135
|
## [0.7.1] - 2026-03-02
|
|
95
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`
|
|
@@ -146,6 +148,10 @@ pspm install --dir ./custom-path
|
|
|
146
148
|
|
|
147
149
|
# Install specific packages
|
|
148
150
|
pspm install @user/alice/skill1 github:org/repo
|
|
151
|
+
|
|
152
|
+
# Install all skills from a skill list
|
|
153
|
+
pspm install --list @user/alice/my-favorites
|
|
154
|
+
pspm install --list @org/myorg/team-skills
|
|
149
155
|
```
|
|
150
156
|
|
|
151
157
|
### `pspm search`
|
|
@@ -507,3 +513,5 @@ Auto-detects your package manager (pnpm, npm, yarn, bun). The CLI also checks fo
|
|
|
507
513
|
## License
|
|
508
514
|
|
|
509
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 -->
|