@anytio/pspm 0.7.3 → 0.9.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 -0
- package/README.md +374 -183
- package/dist/index.js +1193 -75
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,48 @@ 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.0] - 2026-03-05
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **GitHub URL support**: Install skills by pasting GitHub URLs directly from the browser
|
|
13
|
+
- `pspm add https://github.com/owner/repo` — full repo URL
|
|
14
|
+
- `pspm add https://github.com/owner/repo/tree/main/path/to/skill` — tree URL with branch and path
|
|
15
|
+
- **GitHub shorthand**: Install skills with concise `owner/repo` format
|
|
16
|
+
- `pspm add vercel-labs/agent-skills` — entire repo
|
|
17
|
+
- `pspm add vercel-labs/agent-skills/skills/web-design` — subdirectory within repo
|
|
18
|
+
- **Local path shorthand**: Install from local directories without `file:` prefix
|
|
19
|
+
- `pspm add ./my-skill` and `pspm add ../shared-skills` now work directly
|
|
20
|
+
- **Global install mode**: Install skills to your home directory for use across all projects
|
|
21
|
+
- `-g, --global` flag on `add`, `install`, `list`, and `link` commands
|
|
22
|
+
- Global skills stored in `~/.pspm/skills/`, symlinked to `~/<agent>/skills/`
|
|
23
|
+
- **Well-known skills discovery**: Install skills from any domain serving `/.well-known/skills/index.json`
|
|
24
|
+
- `pspm add https://acme.com` — discovers and installs skills via RFC 8615
|
|
25
|
+
- `wellKnownDependencies` in `pspm.json` and `wellKnownPackages` in lockfile (v5)
|
|
26
|
+
- **`search` command**: Search and discover skills from the registry
|
|
27
|
+
- `pspm search typescript` — search by keyword
|
|
28
|
+
- `pspm search --sort recent --limit 10` — sort and limit results
|
|
29
|
+
- `--json` flag for machine-readable output
|
|
30
|
+
- **`audit` command**: Verify integrity of installed skills
|
|
31
|
+
- Checks for missing packages, deprecated versions, corrupted installations
|
|
32
|
+
- `--json` flag for CI integration
|
|
33
|
+
- **Expanded agent support**: From 6 to 41 supported AI coding agents
|
|
34
|
+
- Added Windsurf, Amp, Augment, Cline, Continue, Goose, Kilo Code, Kiro CLI, OpenCode, OpenHands, Replit, Roo Code, Trae, and 22 more
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
|
|
38
|
+
- Lockfile version bumped to 5 to support `wellKnownPackages`
|
|
39
|
+
- All GitHub input formats (URL, shorthand, prefix) normalize to canonical `github:owner/repo[/path][@ref]`
|
|
40
|
+
|
|
41
|
+
## [0.8.0] - 2026-03-05
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- **`upgrade` command**: Self-update pspm to the latest version with automatic package manager detection
|
|
46
|
+
- `pspm upgrade` - Detects and uses your package manager (pnpm, npm, yarn, bun)
|
|
47
|
+
- Supports both global and npx installations
|
|
48
|
+
- **Update notifier**: Background check against npm registry every 24 hours warns when a newer version is available
|
|
49
|
+
|
|
8
50
|
## [0.7.3] - 2026-03-05
|
|
9
51
|
|
|
10
52
|
### Fixed
|