chore: add release-catalyst-patch skill for isolated patch releases#3000
chore: add release-catalyst-patch skill for isolated patch releases#3000chanceaclark merged 1 commit intocanaryfrom
Conversation
Document the workflow for shipping a single Catalyst package patch ahead of the normal release cadence, without bundling it with other queued changesets in the open Version Packages PR. Quarantines other changesets, runs `changeset version` for the target, hands the publish + canary push back to the user, and creates the GitHub release manually since the bot's release flow only fires when CI itself publishes. Co-Authored-By: Claude <noreply@anthropic.com>
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Bundle Size ReportComparing against baseline from No bundle size changes detected. |
Unlighthouse Performance Comparison — VercelComparing PR preview deployment Unlighthouse scores vs production Unlighthouse scores. Summary ScoreAggregate score across all categories as reported by Unlighthouse.
Category Scores
Core Web Vitals
|
What/Why?
Adds a new project-scoped Claude Code skill at
.claude/skills/release-catalyst-patch/SKILL.mdthat documents how to release a single Catalyst package patch (e.g.@bigcommerce/create-catalyst) without bundling it with other queued changesets in the openVersion PackagesPR.The Changesets GitHub Action picks one mode per push to
canary: when unconsumed changesets exist it refreshes the Version Packages PR and does not publish. To ship a single package ahead of the normal cadence, we quarantine the other changesets, runchangeset versionfor just the target, handchangeset publishand the canary push back to the user, and create the GitHub release manually — CI's release step no-ops once the version is already on npm, so it never makes a release in this flow.Mirrors the conventions of the existing committed skills (
.claude/skills/release-catalyst/,.claude/skills/sync-makeswift/). The file had to be force-added because the user's global gitignore excludes.claude/, same as those precedents.This skill captured the workflow used to ship
@bigcommerce/create-catalyst@1.0.3today.Testing
/release-catalyst-patchor intent phrases like "release just the CLI", "publish only one package".Migration
None — additive only.