@skilly-hand/skilly-hand 0.27.0 → 0.28.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
@@ -16,6 +16,21 @@ All notable changes to this project are documented in this file.
16
16
  ### Removed
17
17
  - _None._
18
18
 
19
+ ## [0.28.0] - 2026-05-16
20
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.28.0)
21
+
22
+ ### Added
23
+ - Added a top-level `skills/` symlink overlay so skills.sh can discover the portable catalog directly from the GitHub repository.
24
+
25
+ ### Changed
26
+ - _None._
27
+
28
+ ### Fixed
29
+ - _None._
30
+
31
+ ### Removed
32
+ - _None._
33
+
19
34
  ## [0.27.0] - 2026-05-16
20
35
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.27.0)
21
36
 
@@ -23,10 +38,10 @@ All notable changes to this project are documented in this file.
23
38
  - _None._
24
39
 
25
40
  ### Changed
26
- - _None._
41
+ - Added pnpm workspace support alongside npm lockfile validation and refreshed the interactive CLI launcher on direct `@inquirer/prompts`.
27
42
 
28
43
  ### Fixed
29
- - _None._
44
+ - Kept the review-rangers release gate aligned with the current interactive command discovery checks.
30
45
 
31
46
  ### Removed
32
47
  - _None._
package/README.md CHANGED
@@ -39,6 +39,18 @@ npx skilly-hand
39
39
  `npx skilly-hand` opens an interactive prompt workflow when running in a TTY.
40
40
  The guided home supports type-to-filter command discovery and includes a built-in Command Guide.
41
41
 
42
+ ### Install on skills.sh
43
+
44
+ The full skill catalog is also discoverable through the [skills.sh](https://www.skills.sh/) ecosystem:
45
+
46
+ ```bash
47
+ npx skills add Davecelot/skilly-hand --skill '*'
48
+ ```
49
+
50
+ Use `npx skills add Davecelot/skilly-hand --list` to inspect the available skills before installing. The `skills/` directory is a GitHub-facing overlay made of symlinks to `catalog/skills/`; it helps skills.sh discover the catalog without changing the regular `npx skilly-hand` npm package contents or CLI flow.
51
+
52
+ Windows contributors who clone the repo locally should enable symlink support before checkout, for example with `git config --global core.symlinks true`, and may also need Developer Mode or elevated symlink privileges. If the repo was already checked out without symlinks, re-check out or reclone after enabling support.
53
+
42
54
  ---
43
55
 
44
56
  ## Commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/skilly-hand",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "license": "CC-BY-NC-4.0",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/catalog",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/cli",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/core",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/detectors",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }