원클릭으로
ship
Split working tree changes into logical git commits and push
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Split working tree changes into logical git commits and push
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Check backend code coverage and flag packages below 80%
Scaffold a new Architecture Decision Record
Scaffold a new rule (static, live, or catalog) with tests and registration
Regenerate docs from code (rules, API, README)
| name | ship |
| description | Split working tree changes into logical git commits and push |
| disable-model-invocation | true |
git statusgit diff HEAD --statgit branch --show-currentgit log --oneline -10Split the uncommitted changes into logical, well-scoped git commits and push them. Based on the arguments: $ARGUMENTS
Analyze the changes and group them into logical units:
all.go = one commitdocs/rules.md, docs/api.md) = separate commit or bundled with related rule commitsCommit message style — match the existing convention from recent commits:
feat:, fix:, refactor:, test:, chore:, docs:Stage files specifically — never use git add -A or git add .. Add files by name.
Push to the current branch when all commits are created.
Report a summary of all commits created (hash + message).