Komorebi Release
Overview
Use this skill to ship Komorebi without re-deriving the release flow. Keep the release process boring and the notes short.
Cadence
There is no fixed calendar. Cut a patch release when there is a user-visible fix worth shipping, or after a small batch of low-risk polish changes.
Workflow
Check
git status --short --branchand confirm the release only includes the intended changes.Bump
versioninpackage.jsonandmanifest.json.Run the smallest release checks that catch packaging breakage:
bun run typecheck,bun run build, andbun run zip.Commit as
chore: release x.y.z.Tag and push:
git tag vx.y.z git push origin main vx.y.zConfirm the GitHub Actions release and Chrome Web Store publish workflows finish successfully.
For one-time publishing setup details, use PUBLISHING.md.
GitHub Release Notes
After the GitHub Release is created, keep the release log concise:
- Lead with the main user-visible fix or change.
- Mention notable theme/UI behavior only if users can see it.
- Mention verification only when it matters, for example that the affected page was checked.
- Avoid implementation details unless they explain the user-visible behavior.
Good shape:
Fixed Google Images thumbnails disappearing when Komorebi themed search pages.
Verified against Google Images after reloading the packaged extension.