@natjswenson/press 0.5.0 → 0.5.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 +13 -0
- package/SKILL.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.5.1] - 2026-08-01
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Propagation targeted the default branch, not the integration branch.** Every
|
|
13
|
+
consumer runs `feature → dev → main`, so a PR opened straight into `main`
|
|
14
|
+
would violate its own flow. Worse, the default branch can legitimately lag:
|
|
15
|
+
the first real fan-out reported `budget` and `local-fitness` as *missing* only
|
|
16
|
+
because their migration was still sitting on `dev`. It now checks out `dev`
|
|
17
|
+
when the remote has one and falls back to the default branch otherwise.
|
|
18
|
+
- The clone was `--depth=1`, which cannot see other branches. Full clone now.
|
|
19
|
+
|
|
8
20
|
## [0.5.0] - 2026-08-01
|
|
9
21
|
|
|
10
22
|
The last hand-maintained copy of the brand is gone.
|
|
@@ -216,6 +228,7 @@ source of truth and a CI drift gate.
|
|
|
216
228
|
rasterised cards, whose eyebrow legitimately runs at `.16em`. Scoped rather
|
|
217
229
|
than waived, and caught by linting the real shipped corpus.
|
|
218
230
|
|
|
231
|
+
[0.5.1]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.5.1
|
|
219
232
|
[0.5.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.5.0
|
|
220
233
|
[0.4.1]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.4.1
|
|
221
234
|
[0.4.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.4.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.5.
|
|
5
|
+
version: 0.5.1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# /press — the brand system
|
package/package.json
CHANGED