git

git is a skill for Claude Code, Codex from bntvllnt/agent-skills. It costs 66 tokens per session (808 once invoked), scanned A, original, MIT.

A backend development tool for Convex, a service for storing application data and running server-side code. It covers data schemas, functions, user access, scheduled work, file storage, and related backend operations.

In plain words
What is it for?
Use it to build queries, updates, actions, HTTP endpoints, schemas, authentication flows, scheduled jobs, file storage, migrations, tests, and performance checks in Convex projects.
Why use it?
It gives coding agents guidance for structuring Convex backends safely and for avoiding inefficient database queries or unclear data validation.

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

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/bntvllnt/agent-skills/git.svg)](https://agentmods.dev/skills/bntvllnt/agent-skills/git)
Your own site
<a href="https://agentmods.dev/skills/bntvllnt/agent-skills/git"><img src="https://agentmods.dev/badge/skills/bntvllnt/agent-skills/git.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 808 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.00066 $0.00808
Opus 5 $0.00033 $0.00404
Sonnet 5 $0.00013 $0.00162
Haiku 4.5 $0.00007 $0.00081

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

git/SKILL.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Git

Clear, repeatable git workflow with a bias toward safety.

Router

Use the smallest workflow that matches the user intent.

User says Load reference Do
status / what changed (no "worktree" prefix) references/read-only.md read-only inspection
help / usage / man references/cli-help.md show CLI help safely
commit / stage references/commit-workflow.md stage + commit safely
branch / switch references/branch-workflow.md branch operations
worktree create/remove/list references/worktree-workflow.md worktree operations
worktree cleanup / normalize / consolidate references/worktree-maintenance.md auto-clean + consolidate worktrees
worktree summary / worktree status / show worktrees references/worktree-summary.md proactive analysis: PR status, change classification, safe-to-delete verdicts
tag / version references/tag-workflow.md create/list/inspect tags
pr / pull request references/pr-workflow.md create/update PR via gh
pr review / fix pr comments / threads references/pr-review-workflow.md review + respond + fix
merge / rebase / reset / revert references/advanced-workflows.md advanced/recovery (confirm first)

Config (Edit Here)

Worktree working directories (the folders you cd into) live outside .git/.

Set this once and use it everywhere:

WORKTREES_DIR=./.worktrees
WORKTREE_PATH=$WORKTREES_DIR/<topic>

If you want a different location (e.g. ../.worktrees or ~/worktrees/<repo>), update WORKTREES_DIR above and follow the same shape in references/worktree-workflow.md.

Resilience Rules (Worktrees)

  • If multiple worktree root folders are detected (example: both ./.worktrees/ and ../repo-feature-x/ exist), do not delete anything by default.
  • Prefer consolidating into WORKTREES_DIR using git worktree move (when possible) or a remove+re-add plan.
  • If stale metadata exists, propose a cleanup plan: git worktree prune + remove/quarantine orphan directories (with confirmation).

Read the full file on GitHub · 86 lines

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 · 86 lines · 66 tokens per session scan A 15bc227d9f56

Subscribe to this mod's changes

git is a skill published in the GitHub repository bntvllnt/agent-skills (16 stars, last pushed 3mo ago), licensed MIT. It adds 66 tokens to every session and 808 once invoked, about $0.0003 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

conventional-commits

Enforce, validate, lint, and manage Conventional Commits across git repositories. Generates semantic changelogs and installs git hooks. Use this skill whenever the user mentions commit messages, commit conventions, conventional commits, semantic versioning, changelogs, commit linting, git hooks for commits, or wants…

hankunpeng/skills · 85 tokens

git-workflow

Branching strategies, conventional commits, PR templates, and merge vs rebase guidance. Activate when starting features, creating PRs, or managing releases.

DVNghiem/FlowDeck · 34 tokens

mx-pr

Draft a pull request from the feature spec and git log, run an autonomous commit-history cleanup (content check), then publish to GitHub, GitLab, or Bitbucket — or hand off. Use when a feature branch is ready for PR, standalone or from mx-flow. Usage: /mx-pr [name].

maxence2997/mx-harness · 66 tokens

deploy-automation

Workflows and best practices for CI/CD automation, deployment strategies, and production releases. Use when implementing or improving deployment pipelines, managing environments, or planning production releases.

dolutech/dolu-agents-skills · 37 tokens

smart-git-commit

Use this skill for ANY git operation — commits, pushes, PRs, releases, or version tagging. Triggers on: "commit", "push", "save my changes", "create a PR", "open a pull request", "ship this", "make a release", "tag this version", "checkpoint my work", or any request to record or publish code changes. Produces…

Zarl-prog/Smart-git-commit · 148 tokens

jj

Use Jujutsu (jj) for version control operations including status, history, diffs, commits, rebases, splits, squashes, and Git interop. Use when a repository is initialized for jj or the user asks for jj/Jujutsu workflows.

adampoit/ai · 55 tokens