git-rollback

A Git tool for choosing an older version of a branch and rolling the branch back to it. It can either rewrite the branch history or add new commits that undo later changes.

In plain words
What is it for?
Use it to preview or perform a rollback of a branch to a commit, tag, or other saved Git reference, using either a history-rewriting reset or a history-preserving revert.
Why use it?
It reduces the risk of selecting the wrong commit or changing a branch accidentally by showing available branches and versions and asking for confirmation before execution.

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

Made for: Claude Code, Codex.

Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 993 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.00025 $0.00993
Opus 5 $0.00013 $0.00496
Sonnet 5 $0.00005 $0.00199
Haiku 4.5 $0.00003 $0.00099

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

Security

Grade A, and why

git-rollback 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.

templates/skills/en/git-rollback/SKILL.md · 88 lines

How it starts

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

Claude Command: Git Rollback

Purpose: Safely and visually rollback a specified branch to an older version. Defaults to read-only preview (--dry-run); actual execution requires --yes or interactive confirmation.


Usage

# Pure interactive: list branches → select branch → list recent 20 versions → select target → choose reset or revert → confirm
/git-rollback

# Specify branch, other interactive
/git-rollback --branch feature/calculator

# Specify branch and target commit, execute with hard-reset in one go (dangerous)
/git-rollback --branch main --target 1a2b3c4d --mode reset --yes

# Generate revert commit only (non-destructive rollback), preview
/git-rollback --branch release/v2.1 --target v2.0.5 --mode revert --dry-run

Options

Option Description
--branch <branch> Branch to rollback; interactively selected if omitted.
--target <rev> Target version (commit hash, tag, or reflog reference); interactively selects recent --depth entries if omitted.
--mode reset|revert reset: Hard rollback history; revert: Generate reverse commits keeping history intact. Prompts by default.
--depth <n> List recent n versions in interactive mode (default 20).
--dry-run Enabled by default, only preview commands to be executed.
--yes Skip all confirmations and execute directly, suitable for CI/CD scripts.

Interactive Flow

  1. Sync remotegit fetch --all --prune
  2. List branchesgit branch -a (local + remote, filter protected branches)
  3. Select branch → User input or parameter
  4. List versionsgit log --oneline -n <depth> + git tag --merged + git reflog -n <depth>
  5. Select target → User inputs commit hash / tag
  6. Select modereset or revert
  7. Final confirmation (unless --yes)
  8. Execute rollback
    • reset: git switch <branch> && git reset --hard <target>
    • revert: git switch <branch> && git revert --no-edit <target>..HEAD
  9. Push suggestion → Prompt whether to git push --force-with-lease (reset) or regular git push (revert)

Read the full file on GitHub · 88 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 · 88 lines · 25 tokens per session scan A 70d00de6b14d

Subscribe to this mod's changes

git-rollback is a skill published in the GitHub repository UfoMiao/zcf (6,079 stars, last pushed 9d ago), licensed MIT. It adds 25 tokens to every session and 993 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-30.