@skilly-hand/skilly-hand 0.21.1 → 0.22.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 +17 -0
- 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,23 @@ All notable changes to this project are documented in this file.
|
|
|
16
16
|
### Removed
|
|
17
17
|
- _None._
|
|
18
18
|
|
|
19
|
+
## [0.22.0] - 2026-04-11
|
|
20
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.22.0)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- Added `native setup` command support to configure native agent instruction/rule adapters from the CLI and interactive UI flows.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Refactored CLI presentation output to a shared result-document model used across text output and Ink-rendered interactive views.
|
|
27
|
+
- Expanded interactive launcher result rendering with richer sectioned previews, improved scrolling behavior, and integrated install/native setup summaries.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- Hardened interactive command behavior for `--json` and `--classic` modes so non-interactive flows skip full-screen TUI entry points reliably.
|
|
31
|
+
- Expanded install/native setup regression coverage for agent-target reconciliation, uninstall restore behavior, and renderer width constraints.
|
|
32
|
+
|
|
33
|
+
### Removed
|
|
34
|
+
- _None._
|
|
35
|
+
|
|
19
36
|
## [0.21.1] - 2026-04-11
|
|
20
37
|
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.21.1)
|
|
21
38
|
|
package/package.json
CHANGED