← Back to list

ship
by btraut
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: ship description: Commit to local main and push to origin/main. Use when a user asks to /ship, ship changes, ship everything, or to perform this exact main-branch shipping workflow.
Ship
Use this skill to execute the main-branch shipping workflow the user described. There are two modes:
- /ship changes (default): Commit only the changes made in this session.
- /ship everything: Commit all current working tree changes, even if unrelated to this session.
Workflow
-
Confirm current branch and repo state
- Run
git status -sbandgit branch --show-current. - If the current branch is
main, proceed without asking for confirmation. - If
maindoes not exist, ask the user which branch should be treated asmain. - If the current branch is not
main, stop and ask the user if they'd like to merge or rebase the branch intomainfirst.
- Run
-
Select changes to commit
- /ship changes: Determine which files were touched in this session from the conversation and
git status --porcelain.- Stage only those files (use explicit
git add <paths>). - If you are unsure which files are in-scope, ask the user to confirm the list before staging.
- Stage only those files (use explicit
- /ship everything: Stage all changes with
git add -A.
- /ship changes: Determine which files were touched in this session from the conversation and
-
Commit on
main- Craft a concise commit message based on the session work.
- If nothing is staged, stop and tell the user there is nothing to commit.
- Commit with
git commit -m "...".
-
Push
mainto origin- Push:
git push origin main. - If the push is rejected due to non-fast-forward, ask before using
--force-with-lease.
- Push:
Notes
- Never force-push without explicit user confirmation.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon