| name | ship |
| description | Finish the current branch — verify, commit remaining work with the emoji-:: convention, push, and open a PR to develop that passes the PR title check CI. Use when the user says "PR 올려", "출고", "ship", "머지 준비". |
ship
Take the current branch from "code done" to "PR open" following repo conventions.
Steps
- Identify the issue number from the branch name (
{type}/{N}-{slug}). If it doesn't contain one, ask the user — the PR title check CI requires (#N).
- Verify first: run the
verify-loop skill. Do not push failing code.
- Commit any remaining changes in Korean, one logical change per commit:
{emoji} :: {한국어 요약}
Emoji: ✨ feature · ♻️ refactor · 💄 UI/style · 🎨 format · 🐛 bugfix · 🔧 config/CI. Never commit .env.dev/.env.prod or generated *.g.dart/*.freezed.dart files.
- Push:
git push -u origin {branch}.
- Open the PR against
develop:
- Update the issue label to
🌟 Status: Reviewing.
- Report the PR URL and the verification results.
Constraints
- Base branch is always
develop (never main).
- Don't merge the PR or enable auto-merge — review is human-gated.
- If the branch is behind
develop, merge develop in and re-verify before pushing.