Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .changeset/readme-lockup-link.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
"@cosyte/cli": patch
---

The README lockup now links to cosyte.com (`ASSETS`).

The `<picture>` block above the H1 is wrapped in an anchor to https://cosyte.com, per the founder
requirement of 2026-08-06. Nothing inside the block moved: the `<source>`, the `<img>`, the alt text
and both tile URLs are byte-identical.

What the anchor does was measured on both surfaces by `fhir`, not assumed, because fourteen READMEs
carry this shape. On GitHub the anchor works and the colour-scheme switch keeps working, because the
`<img>` stays a direct child of `<picture>`, which is the condition the HTML spec puts on `<source>`
applying at all. On an npm package page the anchor is lost: npm wraps a README image in its own
anchor to the image file, a nested anchor is not representable, so the parser closes ours early and
the image ends up linked to the image file rather than to cosyte.com. Shipped anyway by founder
decision of 2026-08-07: on npm that is no worse than the unlinked lockup it replaces, and GitHub is
where these READMEs are read.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://cosyte.com/tile/cosyte-lockup-tile-on-dark-1200x300.png">
<img alt="Cosyte: a plus mark set in two overlapping rounded squares, one solid and one outlined, beside the Cosyte wordmark" src="https://cosyte.com/tile/cosyte-lockup-tile-on-light-1200x300.png">
</picture>
<a href="https://cosyte.com">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://cosyte.com/tile/cosyte-lockup-tile-on-dark-1200x300.png">
<img alt="Cosyte: a plus mark set in two overlapping rounded squares, one solid and one outlined, beside the Cosyte wordmark" src="https://cosyte.com/tile/cosyte-lockup-tile-on-light-1200x300.png">
</picture>
</a>

# @cosyte/cli

Expand Down
Loading