happyskills 1.2.0 → 1.2.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 +6 -0
- package/package.json +1 -1
- package/src/ui/envelope.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.2.1] - 2026-06-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Emit tailored `next_step.instructions` for the three actions added in 1.2.0 (`retry_or_abandon`, `resolve_unknown_drift`, `review_publish_error`). They were registered in the enum but missing from `DEFAULT_INSTRUCTIONS`, so the envelope fell back to the generic "Follow the protocol step indicated by `action`." placeholder. Each now carries actionable guidance.
|
|
15
|
+
|
|
10
16
|
## [1.2.0] - 2026-06-02
|
|
11
17
|
|
|
12
18
|
### Added
|
package/package.json
CHANGED
package/src/ui/envelope.js
CHANGED
|
@@ -34,6 +34,9 @@ const DEFAULT_INSTRUCTIONS = {
|
|
|
34
34
|
retry: 'Transient failure. Retry shortly.',
|
|
35
35
|
reconcile_first: 'Drift must be resolved before this operation. Run reconcile, follow its next_step, then retry.',
|
|
36
36
|
pull_rebase_first: 'The local skill has diverged from the registry. Pull with --rebase, resolve any rejected patches, then retry.',
|
|
37
|
+
retry_or_abandon: 'The rebase step failed before any change landed. Retry the pull, or abandon and restore the snapshot.',
|
|
38
|
+
resolve_unknown_drift: 'Unrecognized drift subtype — surface the details to the principal for a manual decision.',
|
|
39
|
+
review_publish_error: 'The publish step failed. Inspect the wrapped publish error in context, resolve it, then retry.',
|
|
37
40
|
fix_validation_errors: 'Fix the listed validation errors and re-run.',
|
|
38
41
|
provide_changelog: 'CHANGELOG.md is missing the target version entry. Add it and re-run.',
|
|
39
42
|
self_update: 'Upgrade the happyskills CLI and re-run.',
|