| 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.