AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Git Stale Branch Cleanup

skill-jamesyang124-agent-skills-git-stale-branch-cleanup · by jamesyang124

Scans remote origin branches behind the base branch, filters by staleness threshold, generates a per-branch scan report with intent analysis and Jira detection, then optionally deletes remote branches and prunes local counterparts. Dry-run mode reports without deleting. Use when cleaning up stale branches, pruning old feature branches, or asked to remove merged/abandoned branches.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-jamesyang124-agent-skills-git-stale-branch-cleanup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jamesyang124-agent-skills-git-stale-branch-cleanup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Git Stale Branch Cleanup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Git Stale Branch Cleanup

Two modes — both always generate a full scan report before any action:

  • Dry-run (default): scan → report only, nothing deleted.
  • Live: scan → report → multi-select → confirm → delete remote → prune local.

Usage

/git-stale-branch-cleanup             # prompts for mode
/git-stale-branch-cleanup --dry-run
/git-stale-branch-cleanup --live

Reference Scripts

Run directly — do not regenerate these commands inline. Agent instructions are embedded in each script header; read them after running.

| Script | Run as | |--------|--------| | references/scan-pass-a.sh | bash references/scan-pass-a.sh "$BASE_BRANCH" "$THRESHOLD_DAYS" "$SCAN_LIMIT" | | references/scan-pass-b.sh | bash references/scan-pass-b.sh "" "$BASE_BRANCH" | | references/delete-branch.sh | bash references/delete-branch.sh "" |


⚠ BLOCKING: Load mode file before proceeding

If Live mode / --live: → read_file: .agent-settings/skills/git-stale-branch-cleanup/references/mode-live.md

If Dry-run / --dry-run / default: → No extra file needed — dry-run exits after Phase 4.


Phase 0 — Mode Selection

  [D] Dry-run  (default) — scan and report only, nothing deleted
  [L] Live               — scan, report, then select branches to delete

Select mode [D/L]:

Default (Enter) → Dry-run. Load mode file immediately per BLOCKING rule above.


Phase 1 — Base Branch

  [1] origin/main    (default)
  [2] origin/master
  [3] origin/develop
  [4] Other — type the branch name

Select [1-4]:

Auto-detect default via git remote show origin | grep 'HEAD branch'. Store as BASE_BRANCH. Then: git fetch --prune origin


Phase 2 — Staleness Threshold

  [1]  90 days  (3 months)
  [2] 180 days  (6 months)
  [3] 365 days  (1 year)
  [4] 730 days  (2 years)
  [5] Other — enter number of days

Select [1-5]:

Store as THRESHOLD_DAYS.


Phase 2b — Scan Limit

  [1]  6  (default — fast)
  [2] 10
  [3] 15
  [4] 20
  [5] 30  (slowest)

Select [1-5]:

Default (Enter) → 6. Store as SCAN_LIMIT.


Phase 3 — Branch Scan

bash references/scan-pass-a.sh "$BASE_BRANCH" "$THRESHOLD_DAYS" "$SCAN_LIMIT"

Read the AGENT INSTRUCTIONS in scan-pass-a.sh header. For each TSV line:

bash references/scan-pass-b.sh "" "$BASE_BRANCH"

Read the AGENT INSTRUCTIONS in scan-pass-b.sh header to render branch cards and the summary block.


Phase 4 — Scan Report

Render the report from script output per scan-pass-b.sh instructions.

Dry-run stops here. Print:

Dry-run complete. Run with --live (or select Live mode) to proceed with deletion.

(Live mode: continue with references/mode-live.md.)


Global Rules

  • Use reference scripts — never regenerate scan or delete commands inline.
  • Never delete the remote of BASE_BRANCH or the currently checked-out branch.
  • Dry-run is the safe default — never assume live mode without explicit selection.
  • Scan report is always shown in both modes before any further action.
  • Unmerged selections must show ⚠ in confirmation — never silently delete unmerged work.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.