with one click
ship
Split working tree changes into logical git commits and push
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Split working tree changes into logical git commits and push
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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).