@skilly-hand/skilly-hand 0.8.0 → 0.8.1
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 +15 -0
- package/README.md +7 -5
- package/package.json +1 -1
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.8.1] - 2026-04-04
|
|
20
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.8.1)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- _None._
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- _None._
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- _None._
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
- _None._
|
|
33
|
+
|
|
19
34
|
## [0.8.0] - 2026-04-04
|
|
20
35
|
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.8.0)
|
|
21
36
|
|
package/README.md
CHANGED
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
## Quick Start
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
npm install
|
|
37
36
|
npx skilly-hand
|
|
38
37
|
```
|
|
39
38
|
|
|
@@ -58,6 +57,10 @@ npx skilly-hand
|
|
|
58
57
|
| `--json` | Emit machine-readable output and disable interactive prompts |
|
|
59
58
|
| `--yes`, `-y` | Skip confirmation prompts for mutating commands (`install`, `uninstall`) |
|
|
60
59
|
| `--dry-run` | Preview install plan without writing files |
|
|
60
|
+
| `--agent`, `-a <name>` | Target a specific assistant (repeatable; e.g. `--agent claude --agent cursor`) |
|
|
61
|
+
| `--include <tag>` | Only include skills matching the given tag |
|
|
62
|
+
| `--exclude <tag>` | Exclude skills matching the given tag |
|
|
63
|
+
| `--cwd <path>` | Run as if in a different directory |
|
|
61
64
|
|
|
62
65
|
---
|
|
63
66
|
|
|
@@ -69,8 +72,11 @@ The catalog currently includes:
|
|
|
69
72
|
- `agents-root-orchestrator`
|
|
70
73
|
- `angular-guidelines`
|
|
71
74
|
- `figma-mcp-0to1`
|
|
75
|
+
- `frontend-design`
|
|
76
|
+
- `life-guard`
|
|
72
77
|
- `skill-creator`
|
|
73
78
|
- `spec-driven-development`
|
|
79
|
+
- `test-driven-development`
|
|
74
80
|
- `token-optimizer`
|
|
75
81
|
|
|
76
82
|
See [catalog/README.md](./catalog/README.md) for generated skill metadata.
|
|
@@ -124,10 +130,6 @@ packages/
|
|
|
124
130
|
core/ # installation, rendering, and restore logic
|
|
125
131
|
detectors/ # stack auto-detection
|
|
126
132
|
catalog/ # catalog access and validation
|
|
127
|
-
source/legacy/
|
|
128
|
-
agentic-structure/ # original material preserved as reference
|
|
129
|
-
tests/
|
|
130
|
-
fixtures/ # simulated repos for integration testing
|
|
131
133
|
```
|
|
132
134
|
|
|
133
135
|
---
|