@anytio/pspm 0.13.0 → 0.14.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 CHANGED
@@ -5,6 +5,19 @@ 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.14.0] - 2026-05-02
9
+
10
+ ### Added
11
+
12
+ - **Unpublish org skills**: `pspm unpublish @org/myorg/skill-name` now routes to the org delete endpoint and works for org-namespaced packages. Version-specific deletion for org skills is not yet supported server-side and returns a clear error.
13
+
14
+ ### Changed
15
+
16
+ - Replaced tsup with tsdown (rolldown-based) for ESM bundling
17
+ - Upgraded TypeScript to 6.0 and updated all dependencies to latest versions
18
+ - Internal: workspace package scope renamed from `@repo/*` to `@anytio/*`
19
+ - Internal: split large files/functions and added unit tests for CLI helpers (no behavior changes)
20
+
8
21
  ## [0.13.0] - 2026-03-24
9
22
 
10
23
  ### Added
@@ -141,7 +154,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
141
154
 
142
155
  ### Fixed
143
156
 
144
- - **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
157
+ - **Fix npm install failure**: Moved `@anytio/types` and `@anytio/skill-registry` from `dependencies` to `devDependencies` to prevent npm from trying to install workspace-only packages from the public registry
145
158
 
146
159
  ## [0.7.1] - 2026-03-02
147
160
 
package/CLI_GUIDE.md CHANGED
@@ -346,13 +346,18 @@ Remove a published skill version (only within 72 hours of publishing):
346
346
  ```bash
347
347
  pspm unpublish <specifier> --force
348
348
 
349
- # Delete specific version
349
+ # Delete specific version (user skills only)
350
350
  pspm unpublish @user/bsheng/vite_slides@2.0.0 --force
351
351
 
352
- # Delete all versions
352
+ # Delete all versions (user skill)
353
353
  pspm unpublish @user/bsheng/vite_slides --force
354
+
355
+ # Delete all versions (org skill)
356
+ pspm unpublish @org/myorg/team-skill --force
354
357
  ```
355
358
 
359
+ **Note:** Version-specific deletion for org skills is not yet supported. Use the full skill specifier without a version to delete the entire org skill.
360
+
356
361
  ### Deprecate Skill
357
362
 
358
363
  Mark a skill version as deprecated (alternative to unpublish after 72 hours):
package/README.md CHANGED
@@ -130,6 +130,8 @@ pspm install
130
130
  | `pspm login` | Authenticate via browser or API key |
131
131
  | `pspm skill-list <subcommand>` | Manage skill lists (list, create, show, delete, update, add-skill, remove-skill, install) |
132
132
  | `pspm notebook <subcommand>` | Manage notebooks (upload, list, download, delete) |
133
+ | `pspm config <subcommand>` | Manage configuration and per-scope encryption keys (show, init, set/get/remove-encryption-key) |
134
+ | `pspm migrate` | Migrate from older on-disk skill directory layouts |
133
135
  | `pspm upgrade` | Update pspm itself to the latest version |
134
136
 
135
137
  ### `pspm install`
@@ -514,4 +516,4 @@ Auto-detects your package manager (pnpm, npm, yarn, bun). The CLI also checks fo
514
516
 
515
517
  This project is licensed under [The Artistic License 2.0](LICENSE), the same license used by npm.
516
518
 
517
- <!-- @doc-sync: 1f5c64d | 2026-03-18 10:30 -->
519
+ <!-- @doc-sync: 99b1a4a | 2026-04-24 13:00 -->