@groeponline/pi-wishcraft 1.4.15 → 1.4.16
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/AGENTS.md +6 -0
- package/CHANGELOG.md +5 -0
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -118,6 +118,12 @@ CI workflows (`.github/workflows/`):
|
|
|
118
118
|
- `release.yml` — reuses test.yml, prepares release-candidate branch
|
|
119
119
|
- `promote-release-candidate.yml` — promotes verified SHA to main, tags, dispatches publish
|
|
120
120
|
|
|
121
|
+
Release behavior:
|
|
122
|
+
- **Every main merge with `[Unreleased]` CHANGELOG notes cuts a release automatically** (verify → candidate → promote → tag → npm). Notes-less merges skip candidate creation entirely — no more empty versions.
|
|
123
|
+
- Notes live under `## [Unreleased]` in CHANGELOG.md; the release commit rolls them into the new version heading.
|
|
124
|
+
- `[skip release]` skips the release when it appears in the **commit subject** — squash-merge builds that subject from the commit subject lines, so a `[skip release]` in a PR title is NOT preserved. Careful: the guard substring-matches the whole commit message, so don't write the literal tag in prose either.
|
|
125
|
+
- Manual escape hatch: `node scripts/release.mjs <version> --force` cuts a release with empty notes (deliberate, local only).
|
|
126
|
+
|
|
121
127
|
## Code Conventions & Common Patterns
|
|
122
128
|
|
|
123
129
|
### Module Structure
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.4.16] - 2026-09-05
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Release pipeline no longer cuts empty releases: candidate preparation (and the local `release` script, behind `--force`) now requires actual `[Unreleased]` notes in the CHANGELOG before bumping, so notes-only and docs-only merges to main no longer publish versions with empty release sections.
|
|
9
|
+
|
|
5
10
|
## [1.4.15] - 2026-09-05
|
|
6
11
|
|
|
7
12
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groeponline/pi-wishcraft",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.16",
|
|
4
4
|
"description": "Operator cockpit for Pi: live powerline status, searchable skills, idea queue, sticky Bash, hooks, policy controls, and session UX.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|