@anytio/pspm 0.8.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 +53 -0
- package/CLI_GUIDE.md +2 -2
- package/README.md +371 -188
- package/dist/index.js +1580 -305
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,59 @@ 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
|
+
|
|
28
|
+
## [0.9.0] - 2026-03-05
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- **GitHub URL support**: Install skills by pasting GitHub URLs directly from the browser
|
|
33
|
+
- `pspm add https://github.com/owner/repo` — full repo URL
|
|
34
|
+
- `pspm add https://github.com/owner/repo/tree/main/path/to/skill` — tree URL with branch and path
|
|
35
|
+
- **GitHub shorthand**: Install skills with concise `owner/repo` format
|
|
36
|
+
- `pspm add vercel-labs/agent-skills` — entire repo
|
|
37
|
+
- `pspm add vercel-labs/agent-skills/skills/web-design` — subdirectory within repo
|
|
38
|
+
- **Local path shorthand**: Install from local directories without `file:` prefix
|
|
39
|
+
- `pspm add ./my-skill` and `pspm add ../shared-skills` now work directly
|
|
40
|
+
- **Global install mode**: Install skills to your home directory for use across all projects
|
|
41
|
+
- `-g, --global` flag on `add`, `install`, `list`, and `link` commands
|
|
42
|
+
- Global skills stored in `~/.pspm/skills/`, symlinked to `~/<agent>/skills/`
|
|
43
|
+
- **Well-known skills discovery**: Install skills from any domain serving `/.well-known/skills/index.json`
|
|
44
|
+
- `pspm add https://acme.com` — discovers and installs skills via RFC 8615
|
|
45
|
+
- `wellKnownDependencies` in `pspm.json` and `wellKnownPackages` in lockfile (v5)
|
|
46
|
+
- **`search` command**: Search and discover skills from the registry
|
|
47
|
+
- `pspm search typescript` — search by keyword
|
|
48
|
+
- `pspm search --sort recent --limit 10` — sort and limit results
|
|
49
|
+
- `--json` flag for machine-readable output
|
|
50
|
+
- **`audit` command**: Verify integrity of installed skills
|
|
51
|
+
- Checks for missing packages, deprecated versions, corrupted installations
|
|
52
|
+
- `--json` flag for CI integration
|
|
53
|
+
- **Expanded agent support**: From 6 to 41 supported AI coding agents
|
|
54
|
+
- Added Windsurf, Amp, Augment, Cline, Continue, Goose, Kilo Code, Kiro CLI, OpenCode, OpenHands, Replit, Roo Code, Trae, and 22 more
|
|
55
|
+
|
|
56
|
+
### Changed
|
|
57
|
+
|
|
58
|
+
- Lockfile version bumped to 5 to support `wellKnownPackages`
|
|
59
|
+
- All GitHub input formats (URL, shorthand, prefix) normalize to canonical `github:owner/repo[/path][@ref]`
|
|
60
|
+
|
|
8
61
|
## [0.8.0] - 2026-03-05
|
|
9
62
|
|
|
10
63
|
### 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
|