@anytio/pspm 0.9.0 → 0.9.2
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 +20 -0
- package/CLI_GUIDE.md +2 -2
- package/README.md +2 -2
- package/dist/index.js +555 -244
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ 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.9.2] - 2026-03-10
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Switch indent style from tabs to spaces across codebase
|
|
13
|
+
- Rebrand to "Package manager for AI agent skills"
|
|
14
|
+
- Update all dependencies to latest versions
|
|
15
|
+
- Remove unused code identified by knip
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- GitHub skill indexer with admin API and CLI support
|
|
20
|
+
- Multi-namespace support (`@user`, `@org`, `@github`)
|
|
21
|
+
|
|
22
|
+
## [0.9.1] - 2026-03-05
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- **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.
|
|
27
|
+
|
|
8
28
|
## [0.9.0] - 2026-03-05
|
|
9
29
|
|
|
10
30
|
### Added
|
package/CLI_GUIDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PSPM CLI Guide
|
|
2
2
|
|
|
3
|
-
PSPM
|
|
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
|
-
|
|
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 -
|
|
1
|
+
# PSPM - Package manager for AI agent skills
|
|
2
2
|
|
|
3
|
-
|
|
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
|
|