بنقرة واحدة
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).