analyze-git

A read-only Git repository analysis that identifies branches and worktrees that may be safe to clean up. A worktree is an additional working directory linked to the same repository.

In plain words
What is it for?
Use it to review branches whose remote versions are gone, prunable worktrees, and Dependabot branches linked to closed or merged pull requests.
Why use it?
It shows stale local branches, removable worktrees, and old Dependabot branches without deleting anything.

Command

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 commands/bengous/claude-code-plugins/analyze-git
Clone the repo
git clone --depth 1 https://github.com/bengous/claude-code-plugins
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 497 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.00000 $0.00497
Opus 5 $0.00000 $0.00249
Sonnet 5 $0.00000 $0.00099
Haiku 4.5 $0.00000 $0.00050

Measured yesterday against content hash 04f6aa1c684a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

analyze-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 yesterday.

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.

archive/git-legacy/commands/analyze-git.md · 71 lines

How it starts

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

Analyze Git Repository for Cleanup

Perform a comprehensive analysis of the git repository to identify branches and worktrees that can be cleaned up. This is a READ-ONLY analysis - no deletions will be performed.

Step 1: Analyze Local Branches with [gone] Status

Run the following command to identify branches whose remote tracking branches no longer exist:

git branch -v

Look for branches marked with [gone] status. These are local branches whose remote counterparts have been deleted.

Step 2: Analyze Worktrees

Run the following command to list all worktrees:

git worktree list

Identify any worktrees marked as "prunable" - these can be safely removed.

Step 3: Analyze Dependabot Branches

  1. First, update remote references:
git fetch --prune
  1. List all dependabot PRs and their status:
gh pr list --state all --limit 100 --json number,title,state,headRefName --jq '.[] | select(.headRefName | startswith("dependabot/")) | "PR #\(.number): \(.headRefName) - \(.state)"'
  1. List current remote dependabot branches:
git branch -r | grep 'dependabot/'

Cross-reference to find dependabot branches with CLOSED or MERGED PRs that still have remote branches.

Step 4: Analyze Other Stale Branches

List all local and remote branches to identify any other stale branches:

git branch
git branch -r

Step 5: Provide Summary Report

Create a comprehensive summary report with:

  1. Gone Branches: List of local branches marked [gone] with worktree indicators
  2. Prunable Worktrees: List of worktrees that can be pruned
  3. Closed Dependabot PRs: List of dependabot branches with closed/merged PRs
  4. Branch Inventory: Total count of local and remote branches

Format the report clearly with counts and specific branch names.

End with: "Run /git-tools:cleanup-git to perform the cleanup operations."

Important Notes

  • This command performs NO modifications
  • All operations are read-only
  • Use this to review what needs cleanup before running /git-tools:cleanup-git

Read the full file on GitHub · 71 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. yesterday First seen · 71 lines · 0 tokens per session scan A 04f6aa1c684a

Subscribe to this mod's changes

analyze-git is a command published in the GitHub repository bengous/claude-code-plugins (4 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 497 tokens. 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.