git

A set of everyday Git workflow helpers. Git is a tool for tracking code changes, branches, commits, and saved work.

In plain words
What is it for?
Use it to check status and branches, view logs and diffs, stash work, rebase onto main, commit or amend changes, and find merge-conflict markers.
Why use it?
Common Git commands can be easy to mistype or use incorrectly, especially when checking changes or handling branches. It also keeps pushing changes to a remote repository as a deliberate, confirmed action.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/brain-bootstrap/claude-code-brain-bootstrap/git
Any agent
npx skills add brain-bootstrap/claude-code-brain-bootstrap --skill git
Clone the repo
git clone --depth 1 https://github.com/brain-bootstrap/claude-code-brain-bootstrap

Made for: Claude Code, Codex.

Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 537 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00034 $0.00537
Opus 5 $0.00017 $0.00269
Sonnet 5 $0.00007 $0.00107
Haiku 4.5 $0.00003 $0.00054

Measured 2d ago against content hash e96e64ca00c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

git scanned grade A with 0 findings 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/git/SKILL.md · 62 lines

What it actually says

Git Skill

Git workflow helpers for everyday operations.

Usage

/git status          # Current branch + dirty files + recent commits
/git branch          # List branches
/git rebase main     # Rebase onto main
/git commit <msg>    # Stage all + commit
/git amend           # Stage all + amend last commit
/git log             # Last 20 commits
/git stash           # Stash changes
/git stash pop       # Pop stash
/git conflicts       # Find conflict markers

⚠️ NEVER git push Autonomously

Always present the proposed command and wait for user confirmation:

Proposed: git push origin feature/my-branch
⏳ Waiting for your confirmation before pushing...

Instructions

Determine action from $ARGUMENTS:

Argument Action
status git status --short + git --no-pager log --oneline -5
branch git branch --show-current
branches git --no-pager branch -a | head -30
stash git stash
stash pop git stash pop
rebase main git fetch origin main && git rebase origin/main
commit <message> git add -A && git commit -m "<message>"
amend git add -A && git commit --amend --no-edit
log git --no-pager log --oneline -20
conflicts grep -rn '^<<<<<<<|^=======|^>>>>>>>' . 2>/dev/null | head -20

Branch Naming Convention:

  • Feature: feat/<ticket-id>-<short-description>
  • Fix: fix/<ticket-id>-<short-description>
  • Chore: chore/<description>

Pre-Push Checklist (present to user before any push):

  1. ✅ Build passes
  2. ✅ Tests pass
  3. ✅ Lint clean on changed files
  4. ✅ No conflict markers in repo
  5. ✅ Diff review complete (merge-base aware)
  6. 📋 Proposed: git push origin <branch>
  7. ⏳ Waiting for user confirmation...
Changes

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.

  1. 2d ago First seen · 62 lines · 34 tokens per session scan A e96e64ca00c5

Subscribe to this mod's changes

git is a skill published in the GitHub repository brain-bootstrap/claude-code-brain-bootstrap (11 stars, last pushed 4mo ago), licensed MIT. It adds 34 tokens to every session and 537 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

implement

TRIGGER when: user asks to implement, fix, build, or work on something — whether from a docs/wip plan OR a standalone task (bug fix, GitHub issue, one-off change). Examples: "work on task 1", "fix this bug", "implement feature X from the issue". Provides structured execution with profile detection, dependency…

serpro69/claude-toolbox · 79 tokens

review-spec

Use after implementing tasks or mid-feature to verify code matches design docs and ensure they are in sync. Detects spec deviations, missing implementations, doc inconsistencies, and outdated docs in design and implementation documentation.

serpro69/claude-toolbox · 44 tokens

chain-of-verification

Apply Chain-of-Verification (CoVe) prompting to improve response accuracy through self-verification. Use when complex questions require fact-checking, technical accuracy, or multi-step reasoning.

serpro69/claude-toolbox · 41 tokens

review-design

Review design, implementation, and task documents produced by design. Evaluates document quality, internal consistency, and technical soundness. Use after design completes and before starting implement.

serpro69/claude-toolbox · 37 tokens

review-code

Code review of current git changes with an expert senior-engineer lens. Detects SOLID violations, security risks, and proposes actionable improvements. Use when performing code reviews.

serpro69/claude-toolbox · 37 tokens

dependency-handling

TRIGGER when: adding or upgrading any dependency — library, SDK, framework, API, IaC API version (K8s/Terraform/Helm), CRD, or container image. Use BEFORE writing the call. Forces context7/capy lookup instead of guessing.

serpro69/claude-toolbox · 60 tokens