ワンクリックで
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).