@natjswenson/press 0.4.0 → 0.4.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 +17 -0
- package/SKILL.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to the **press** skill are documented here.
|
|
|
5
5
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
6
6
|
this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.1] - 2026-08-01
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **The propagate workflow could never fire on a release.** It triggered on
|
|
13
|
+
`push: tags: [press-v*]`, but the release tag is created by `_release.yml`
|
|
14
|
+
using the repository's `GITHUB_TOKEN`, and GitHub does not start new workflow
|
|
15
|
+
runs for events created with that token. The trigger looked correct and
|
|
16
|
+
executed exactly zero times — confirmed on the 0.4.0 release, which tagged and
|
|
17
|
+
published with no propagate run at all.
|
|
18
|
+
|
|
19
|
+
The release path now calls the workflow directly (`workflow_call` from
|
|
20
|
+
`press.yml`'s `propagate` job, `needs: release`), which runs in the same chain
|
|
21
|
+
and is not subject to that restriction. The weekly schedule and manual
|
|
22
|
+
dispatch were always unaffected.
|
|
23
|
+
|
|
8
24
|
## [0.4.0] - 2026-08-01
|
|
9
25
|
|
|
10
26
|
Closes the propagation gap: a pinned check can tell you a consumer is intact,
|
|
@@ -167,6 +183,7 @@ source of truth and a CI drift gate.
|
|
|
167
183
|
rasterised cards, whose eyebrow legitimately runs at `.16em`. Scoped rather
|
|
168
184
|
than waived, and caught by linting the real shipped corpus.
|
|
169
185
|
|
|
186
|
+
[0.4.1]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.4.1
|
|
170
187
|
[0.4.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.4.0
|
|
171
188
|
[0.3.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.3.0
|
|
172
189
|
[0.2.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.2.0
|
package/SKILL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: press
|
|
3
3
|
description: The one brand system for everything produced in Claude — design tokens, the visual laws, the run-presentation contract, and the universal voice core. Use when composing or restyling any artifact (report, résumé, card, cover, PDF, HTML page, chart), when asked about brand colors, fonts, the accent law or "the PRESS look", when adding a new skill that renders anything, or when a brand value needs to change everywhere at once. Also handles "check the brand is in sync", "why do my colors differ", and onboarding a new consumer repo.
|
|
4
4
|
user_invocable: true
|
|
5
|
-
version: 0.4.
|
|
5
|
+
version: 0.4.1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# /press — the brand system
|
package/package.json
CHANGED