git

git is a skill for Claude Code, Codex from thewolffish/wolffish-app. It costs 15 tokens per session (1,003 once invoked), scanned A, original, MIT.

A set of instructions for carrying out Git version-control work through a shell. It covers checking changes, creating branches, and preparing commits for approval.

In plain words
What is it for?
Use it to inspect repository status and history, summarize diffs, create prefixed branches, and prepare Conventional Commit messages.
Why use it?
It gives Git tasks a consistent review process so changes, branch names, and commit messages are checked before they are saved.

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/thewolffish/wolffish-app/git
Any agent
npx skills add thewolffish/wolffish-app --skill git
Clone the repo
git clone --depth 1 https://github.com/thewolffish/wolffish-app

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for git

README.md
[![agentmods](https://agentmods.dev/badge/skills/thewolffish/wolffish-app/git.svg)](https://agentmods.dev/skills/thewolffish/wolffish-app/git)
Your own site
<a href="https://agentmods.dev/skills/thewolffish/wolffish-app/git"><img src="https://agentmods.dev/badge/skills/thewolffish/wolffish-app/git.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,003 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.00015 $0.01003
Opus 5 $0.00008 $0.00502
Sonnet 5 $0.00003 $0.00201
Haiku 4.5 $0.00002 $0.00100

Measured 4d ago against content hash 07dc7c782afc, 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 4d 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.

src/defaults/workspace/brain/cerebellum/git/SKILL.md · 162 lines

What it actually says

Git Workflow

This is a pure skill — it has no plugin of its own. It teaches the agent how to use the shell capability's shell_exec tool to perform Git operations the way the user prefers.

When checking repo status

  1. Run git status via shell_exec.
  2. If something has changed, run git diff --stat for a summary.
  3. Run git log --oneline -5 to show recent commits.
  4. Summarize in plain language — don't just dump the output.

When making a commit

  1. Run git status to see what's staged vs. unstaged.
  2. Run git diff --staged (or git diff if nothing is staged yet) to see exactly what's changing.
  3. Generate a Conventional Commit message: type(scope): subject.
  4. Show the proposed message to the user and wait for approval.
  5. Only after approval, run git commit -m "..." (the safety gate may also prompt — that's expected).
  6. After commit, run git log -1 --stat to confirm.

When creating a branch

  1. Confirm the current branch with git branch --show-current.
  2. Branch from main unless the user specifies otherwise.
  3. Use kebab-case naming with a type prefix:
    • feature/<description> — new functionality
    • fix/<description> — bug fix
    • chore/<description> — refactor, tooling, deps
    • docs/<description> — docs only
  4. Run git switch -c <name> to create + switch.

When pushing

  1. Pushing requires explicit user approval (the safety gate enforces this).
  2. Never use --force without explicit instruction. Prefer --force-with-lease when overwriting is genuinely required.
  3. After push, surface the GitHub/GitLab URL if the remote indicates one.

When something looks dangerous

If you're about to do something with git reset --hard, git push --force, git clean -fd, or anything that throws away local work — stop, explain, and ask before running.

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. 4d ago First seen · 162 lines · 15 tokens per session scan A 07dc7c782afc

Subscribe to this mod's changes

git is a skill published in the GitHub repository thewolffish/wolffish-app (5 stars, last pushed today), licensed MIT. It adds 15 tokens to every session and 1,003 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

claude-api

Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports anthropic/@anthropic-ai/sdk; user asks for…

warpdotdev/warp · 193 tokens

create-skill

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

warpdotdev/warp · 64 tokens

gui-onboarding-verification-skill

GUI desktop app only. Launch two parallel Oz cloud agents with computer use to download and install the latest stable Linux Warp build, capture screenshots while walking through first-time onboarding in both logged-out and logged-in states, then selectively fan out follow-up cloud agents for distinct onboarding…

warpdotdev/warp · 98 tokens

logging-and-error-reporting

How and when to log (log:: levels, safe macros) and report errors to Sentry (reporterror!) in the Warp codebase. Use when adding or reviewing any logging or error reporting — picking a log level, deciding log vs. reporterror!, keeping sensitive data out of logs, or surfacing an error to Sentry.

warpdotdev/warp · 75 tokens

gui-integration-test

GUI desktop app only. Writes, runs, and debugs Warp integration tests using the custom Builder/TestStep framework in crates/integration. Use when adding a new integration test, fixing a failing integration test, wiring a test into the manual runner or nextest suite, or verifying end-to-end UI and terminal behavior in…

warpdotdev/warp · 72 tokens

gui-settings-ui

GUI desktop app only. How to build a Settings page in the Warp client (app/src/settingsview) so its widgets and settings search behave correctly — picking a PageType, deciding whether a heading belongs in the page-title slot or inside a widget, gating a widget, and scoping searchterms per widget. Use when adding or…

warpdotdev/warp · 86 tokens