@skilly-hand/skilly-hand 0.21.1 → 0.22.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 +32 -0
- package/README.md +1 -21
- package/package.json +1 -1
- package/packages/catalog/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/cli/src/bin.js +339 -140
- package/packages/cli/src/ink-ui.js +304 -27
- package/packages/cli/src/result-doc.js +58 -0
- package/packages/core/package.json +1 -1
- package/packages/core/src/index.js +312 -14
- package/packages/core/src/terminal.js +5 -3
- package/packages/core/src/ui/layout.js +11 -7
- package/packages/core/src/ui/theme.js +16 -2
- package/packages/detectors/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,38 @@ All notable changes to this project are documented in this file.
|
|
|
16
16
|
### Removed
|
|
17
17
|
- _None._
|
|
18
18
|
|
|
19
|
+
## [0.22.1] - 2026-04-12
|
|
20
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.22.1)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- _None._
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Moved maintainer release/security workflow details from README into `docs/MAINTAINER.md`, keeping README with a maintainer-runbook link.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- _None._
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
- _None._
|
|
33
|
+
|
|
34
|
+
## [0.22.0] - 2026-04-11
|
|
35
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.22.0)
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
- Added `native setup` command support to configure native agent instruction/rule adapters from the CLI and interactive UI flows.
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
- Refactored CLI presentation output to a shared result-document model used across text output and Ink-rendered interactive views.
|
|
42
|
+
- Expanded interactive launcher result rendering with richer sectioned previews, improved scrolling behavior, and integrated install/native setup summaries.
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
- Hardened interactive command behavior for `--json` and `--classic` modes so non-interactive flows skip full-screen TUI entry points reliably.
|
|
46
|
+
- Expanded install/native setup regression coverage for agent-target reconciliation, uninstall restore behavior, and renderer width constraints.
|
|
47
|
+
|
|
48
|
+
### Removed
|
|
49
|
+
- _None._
|
|
50
|
+
|
|
19
51
|
## [0.21.1] - 2026-04-11
|
|
20
52
|
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.21.1)
|
|
21
53
|
|
package/README.md
CHANGED
|
@@ -89,27 +89,7 @@ See [catalog/README.md](./catalog/README.md) for generated skill metadata.
|
|
|
89
89
|
|
|
90
90
|
---
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
1. Confirm session: `npm whoami` (or `npm login`).
|
|
95
|
-
2. Keep `CHANGELOG.md` up to date under `## [Unreleased]` as work lands.
|
|
96
|
-
3. Regenerate derived files when needed: `npm run build && npm run catalog:sync && npm run agentic:self:sync`.
|
|
97
|
-
4. Run publish gate: `npm run verify:publish`.
|
|
98
|
-
5. Inspect package payload: `npm pack --dry-run --json`.
|
|
99
|
-
6. Bump version intentionally: `npm version patch|minor|major` (this auto-rotates `CHANGELOG.md`, creates a dated release section, and inserts a version-specific npm link).
|
|
100
|
-
7. Publish with assisted 2FA flow: `npm run publish:otp` (or `npm run publish:next` for prereleases).
|
|
101
|
-
- The script runs the publish gate, asks for OTP with hidden input, and if left blank lets npm trigger your default security method.
|
|
102
|
-
8. Smoke test after publish: `npx @skilly-hand/skilly-hand@<version> --help`.
|
|
103
|
-
9. Verify npm metadata (README render, changelog, license, executable bin).
|
|
104
|
-
|
|
105
|
-
### Security Automation
|
|
106
|
-
|
|
107
|
-
- `npm run security:check` runs repository secret/config checks plus strict dependency security checks.
|
|
108
|
-
- `npm run security:deps` runs strict dependency audit + outdated reporting only.
|
|
109
|
-
- `npm run deps:policy:check` enforces exact runtime dependency pins and lockfile sync (`package-lock.json` + `npm-shrinkwrap.json`).
|
|
110
|
-
- `npm run deps:update:safe -- <pkg[@version]>` is the required dependency update path; it pins exact versions, syncs shrinkwrap, and blocks completion unless all validation gates pass.
|
|
111
|
-
- Do not use raw `npm install` for dependency upgrades in this repo; use `deps:update:safe` so tests and security gates run before accepting version changes.
|
|
112
|
-
- Run `npm run setup:hooks` once per clone to install `pre-commit` (fast checks) and `pre-push` (full gate) hooks.
|
|
92
|
+
Maintainer release and security workflow: [docs/MAINTAINER.md](./docs/MAINTAINER.md).
|
|
113
93
|
|
|
114
94
|
---
|
|
115
95
|
|
package/package.json
CHANGED