Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/liozshor/claude-code-skills/git-shipnpx skills add LiozShor/claude-code-skills --skill git-shipgit clone --depth 1 https://github.com/LiozShor/claude-code-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/liozshor/claude-code-skills/git-ship)<a href="https://agentmods.dev/skills/liozshor/claude-code-skills/git-ship"><img src="https://agentmods.dev/badge/skills/liozshor/claude-code-skills/git-ship.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00105 | $0.02181 |
| Opus 5 | $0.00053 | $0.01091 |
| Sonnet 5 | $0.00021 | $0.00436 |
| Haiku 4.5 | $0.00011 | $0.00218 |
Grade A, and why
git-ship scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Then curl the URL / query the prod table / screenshot the page, and **paste the evidence**. How it starts
The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Git Ship
When this triggers
- User says "ship it", "commit this", "push", "merge this branch", or asks to run
git commit,git push,git merge,git rebase,git reset, orgit branch -d. - Any git write operation is about to happen in this project — this skill is the mandatory entry point.
When this does not trigger
- Read-only git commands (
git status,git diff,git log,git show,git branch --show-current) — those are fine without invoking this skill. - Non-git tasks — no overlap with other sibling skills.
Mandatory Invocation
This skill is the ONLY entry point for git write operations in this project. Before running git commit, git push, git merge, git rebase, git reset, git branch -d, or git checkout main — you MUST be inside this skill. Read-only commands (status, diff, log, show, branch --show-current) are fine without invocation.
Required inputs
- Current branch name (
git branch --show-current). - The diff to be committed (
git diff/git diff --staged). - User confirmation before pushing or merging to main.
Pre-Ship Validation (Multi-Tab Safety)
- Branch guard: Run
git branch --show-current. If on main/master, REFUSE and error: "You're on main. This should not happen — a feature branch should have been created at session start." Do NOT proceed with the commit. - Run
git diffand review ALL hunks. Check if any changes don't belong to the current task/ticket (e.g., changes from another Claude Code tab session). - If suspicious mixed changes are detected: warn the user, list the foreign hunks, and suggest using
git add -pto selectively stage only the relevant changes. - Verify the commit will only include files relevant to the current task.
Workflow
- Run
git status --porcelainto see all changes. - Stage explicit paths only. NEVER
git add -A/git add ./git add --all— a blanket add sweeps in a parallel session's work (this has happened: ~16 foreign files in one commit). Instead:- Derive the list of paths belonging to THIS task from the porcelain output.
- Show the user that exact file list before staging.
- Stage them by path:
git add path/one path/two. - Any dirty file not on the list: name it and ask — do not stage, do not stash it unilaterally.
- If a PreToolUse hook blocking blanket adds is installed, and it fires, fix the command; do not route around it.
- Run
git diff --stagedand confirm the staged set matches the list you showed. - Generate a conventional commit message:
type(scope): description(under 72 chars). - Commit. If amending, verify with
git log -1 --statthat the amend replaced the commit rather than stacking a new one. - Ask the user: "Push to remote?" — only push if they confirm.
- Before any push that lands on main, run
git fetch && git rebase origin/mainfirst. On conflict, stop and show it — a parallel session may have pushed conflicting docs.
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 139 lines · 105 tokens per session scan A 76b68414067f
git-ship is a skill published in the GitHub repository LiozShor/claude-code-skills (2 stars, last pushed 17d ago), licensed MIT. It adds 105 tokens to every session and 2,181 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
create-pr
Creates a GitHub PR with a Linear-ticket-prefixed title and a decision-led, narrative description for prisma-next. Use when the user wants to create a pull request, open a PR, or submit changes for review.
git-commit
Generate well-formatted git commit messages following conventional commit standards.
commit-push-pr
Commit selected local changes, push the branch, and create or update a GitHub pull request with BitFun attribution. Use when the user asks to 提交 PR、提代码、commit and push、开 PR、create a pull request, or wants a Claude Code-like one-command PR publishing flow from BitFun.
mcore-split-pr
Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.
commit
Commit current changes with a clear, descriptive message.
contributing
How to contribute to evlog, covering commit and PR conventions, changesets, the Definition of Done, testing rules, and the authored skills that walk through building a new adapter, enricher, framework integration, or map rule. Load this for any question about contributing, opening a PR, or adding something to the…