원클릭으로
ship
Commit, create PR, wait for CI, and merge
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Commit, create PR, wait for CI, and merge
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | ship |
| description | Commit, create PR, wait for CI, and merge |
Commit current changes, open a PR, wait for CI to pass, then squash-merge.
Run git status and git diff --stat to see what's changed. Run git log --oneline -5 for commit message style.
Draft a concise commit message based on the changes. Stage relevant files (not .env, credentials, etc.) and commit.
Create a feature branch if not already on one (use a descriptive name based on the changes). Push with -u.
Create a PR with gh pr create — short title, summary bullets, test plan.
Wait for CI: gh pr checks <pr-number> --watch
Once CI passes, merge: gh pr merge <pr-number> --squash --delete-branch
If any step fails, stop and report the error.