@anytio/pspm 0.9.0 → 0.10.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,38 @@ 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.10.0] - 2026-03-14
9
+
10
+ ### Added
11
+
12
+ - **Organization publishing**: Publish skills under an org namespace with `pspm publish --org <orgname>`
13
+ - `pspm publish --access team --org myorg` — publish as team-visible under `@org/myorg/skill-name`
14
+ - `pspm publish --access public --org myorg` — publish as public under org namespace
15
+ - **Team visibility**: New `--access team` option restricts package access to org members only
16
+ - **Org namespace resolution**: `@org/` namespace fully supported in dependency resolution
17
+ - Install org-scoped packages: `pspm add @org/myorg/skill-name`
18
+ - Recursive dependency resolution for org packages
19
+
20
+ ## [0.9.2] - 2026-03-10
21
+
22
+ ### Changed
23
+
24
+ - Switch indent style from tabs to spaces across codebase
25
+ - Rebrand to "Package manager for AI agent skills"
26
+ - Update all dependencies to latest versions
27
+ - Remove unused code identified by knip
28
+
29
+ ### Added
30
+
31
+ - GitHub skill indexer with admin API and CLI support
32
+ - Multi-namespace support (`@user`, `@org`, `@github`)
33
+
34
+ ## [0.9.1] - 2026-03-05
35
+
36
+ ### Fixed
37
+
38
+ - **Fix contradictory upgrade messages**: `pspm upgrade` no longer shows "Update available: 0.9.0 → 0.8.0" after saying "Already on the latest version". Used semver comparison instead of string equality so the update notifier and upgrade command only suggest upgrades (not downgrades). Skipped the update notifier when running the `upgrade` command itself.
39
+
8
40
  ## [0.9.0] - 2026-03-05
9
41
 
10
42
  ### Added
package/CLI_GUIDE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PSPM CLI Guide
2
2
 
3
- PSPM (Prompt Skill Package Manager) is a CLI tool for managing prompt skills across AI coding agents. It provides commands for authentication, configuration, skill management, and publishing.
3
+ PSPM is a package manager for AI agent skills. It provides commands for authentication, configuration, skill management, and publishing across AI coding agents.
4
4
 
5
5
  ## Installation
6
6
 
@@ -17,7 +17,7 @@ npx @anytio/pspm <command>
17
17
  ```
18
18
  Usage: pspm [options] [command]
19
19
 
20
- Prompt Skill Package Manager for AI coding agents
20
+ Package manager for AI agent skills
21
21
 
22
22
  Options:
23
23
  -V, --version output the version number
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # PSPM - Prompt Skill Package Manager
1
+ # PSPM - Package manager for AI agent skills
2
2
 
3
- The package manager for the open agent skills ecosystem.
3
+ Version control. Dependencies. Private registries. Inspired by pnpm.
4
4
 
5
5
  Supports **Claude Code**, **Cursor**, **Codex**, **Gemini CLI**, **Windsurf**, and [30+ more agents](#supported-agents).
6
6
 
@@ -9,7 +9,7 @@ Supports **Claude Code**, **Cursor**, **Codex**, **Gemini CLI**, **Windsurf**, a
9
9
  ## Install a Skill
10
10
 
11
11
  ```bash
12
- npx @anytio/pspm add vercel-labs/agent-skills
12
+ npx @anytio/pspm add @user/anyt/youtube-downloader
13
13
  ```
14
14
 
15
15
  ### Source Formats
@@ -351,10 +351,11 @@ pspm version patch --dry-run # Preview without writing
351
351
  ```bash
352
352
  pspm publish --access public # Publish as public (irreversible)
353
353
  pspm publish --access private # Publish as private (requires Pro)
354
+ pspm publish --access team --org myorg # Publish under org (team-only)
354
355
  pspm publish --access private --bump patch # Bump and publish
355
356
  ```
356
357
 
357
- `--access` is required. Before uploading, `pspm publish` shows a preview of included files and package size. Max package size is **10MB**.
358
+ `--access` is required (`public`, `private`, or `team`). Use `--org <orgname>` to publish under an organization namespace. `--access team` requires `--org`. Before uploading, `pspm publish` shows a preview of included files and package size. Max package size is **10MB**.
358
359
 
359
360
  ### Managing Published Skills
360
361