@natjswenson/press 0.6.0 → 0.6.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.6.1] - 2026-08-01
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Every propagate push failed on missing git credentials, and the job still
|
|
13
|
+
reported success.** `gh` authenticates its own API calls from `GH_TOKEN`, so
|
|
14
|
+
cloning and PR listing worked, but a plain `git push` has no credential helper
|
|
15
|
+
and fails with `could not read Username for 'https://github.com'`. All four
|
|
16
|
+
consumers failed this way on the 0.6.0 release. `gh auth setup-git` now wires
|
|
17
|
+
gh in as git's credential helper.
|
|
18
|
+
- **A failed fan-out now fails the job.** Failures were a warning, on the
|
|
19
|
+
reasoning that the release had already happened and the weekly run would
|
|
20
|
+
retry. That was wrong: a fan-out that silently does nothing is worse than one
|
|
21
|
+
that never ran, because the green tick claims the brand reached everywhere
|
|
22
|
+
when it reached nowhere.
|
|
23
|
+
|
|
8
24
|
## [0.6.0] - 2026-08-01
|
|
9
25
|
|
|
10
26
|
### Changed
|
|
@@ -248,6 +264,7 @@ source of truth and a CI drift gate.
|
|
|
248
264
|
rasterised cards, whose eyebrow legitimately runs at `.16em`. Scoped rather
|
|
249
265
|
than waived, and caught by linting the real shipped corpus.
|
|
250
266
|
|
|
267
|
+
[0.6.1]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.6.1
|
|
251
268
|
[0.6.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.6.0
|
|
252
269
|
[0.5.1]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.5.1
|
|
253
270
|
[0.5.0]: https://github.com/natejswenson/claude-skills/releases/tag/press-v0.5.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.6.
|
|
5
|
+
version: 0.6.1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# /press — the brand system
|
package/package.json
CHANGED