You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(readme): drive download links from latest git tag, not manifest
The README "Download v… .zip" link must point at a version that users
can actually download — i.e. the most recently *published* git tag for
that skill — not whatever is currently sitting in manifest.json.
Before: bumping manifest to 1.0.3 (without yet running release) made
update-readme.mjs rewrite the README to a v1.0.3 URL that returns 404,
and broke `npm run validate` (and CI) because readme:check disagreed
with the manifest.
After: update-readme.mjs reads the latest `<skill>-v*` tag via
lastTagFor() and uses that as the version source. manifest.json is now
free to live ahead of the published version (the natural "next release
in flight" state) without breaking CI. When release-skill.yml later
creates the new tag and re-runs readme:sync, the README naturally
catches up.
Co-authored-by: Cursor <cursoragent@cursor.com>
0 commit comments