komorebi-release
Release the Komorebi browser extension. Use when cutting a new version, publishing to the Chrome Web Store, checking release workflows, or writing concise GitHub Release notes for a Komorebi release.
소스 정보
- 저장소
- Nagi-ovo/komorebi
- 최근 소스 활동
- 2026년 7월 20일 16:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
파일 탐색기
2 개 파일SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- komorebi-release
- description
- Release the Komorebi browser extension. Use when cutting a new version, publishing to the Chrome Web Store, checking release workflows, or writing concise GitHub Release notes for a Komorebi release.
# 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
1. Check `git status --short --branch` and confirm the release only includes the
intended changes.
2. Bump `version` in `package.json` and `manifest.json`.
3. Run the smallest release checks that catch packaging breakage:
`bun run typecheck`, `bun run build`, and `bun run zip`.
4. Commit as `chore: release x.y.z`.
5. Tag and push:
```sh
git tag vx.y.z
git push origin main vx.y.z
```
6. Confirm 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:
```md
Fixed Google Images thumbnails disappearing when Komorebi themed search pages.
Verified against Google Images after reloading the packaged extension.
```
GitHub에서 보기