Stats
Links
Categories
Git productivity plugins for Claude Code
npx claudepluginhub srikanthmunaga/claude-git-ops-skillGit operations skill for Claude Code — log, status, branch, diff, stash, tag, reset, cherry-pick, cleanup, sync, and blame via /git-ops slash command
A Claude Code slash command for performing common Git operations directly in your session.
claude-git-ops-skill/
├── skills/
│ └── git-ops/
│ └── SKILL.md # Slash command definition
├── README.md
└── LICENSE
| Command | Description |
|---|---|
/git-ops log | Rich commit graph — last 20 commits, author, date, divergence |
/git-ops status | Staged, unstaged, untracked files + next-step suggestions |
/git-ops branch | Local + remote branches with ahead/behind tracking |
/git-ops diff [ref1] [ref2] | Diff summary between refs or working tree |
/git-ops stash [push|pop|list|show] | Full stash management |
/git-ops tag [name] [message] | List, create lightweight or annotated tags |
/git-ops cherry-pick <hash> | Cherry-pick one or more commits |
/git-ops reset [soft|mixed|hard] [ref] | Reset HEAD (confirms before hard reset) |
/git-ops cleanup | Prune stale remotes + delete merged branches |
/git-ops sync | Fetch + show ahead/behind, offer pull/push guidance |
/git-ops blame <file> | Annotated blame with top contributors summary |
mkdir -p ~/.claude/skills/git-ops
curl -o ~/.claude/skills/git-ops/SKILL.md \
https://raw.githubusercontent.com/srikanthmunaga/claude-git-ops-skill/main/skills/git-ops/SKILL.md
mkdir -p .claude/skills/git-ops
curl -o .claude/skills/git-ops/SKILL.md \
https://raw.githubusercontent.com/srikanthmunaga/claude-git-ops-skill/main/skills/git-ops/SKILL.md
Then use it in any Claude Code session:
/git-ops
/git-ops log
/git-ops status
/git-ops sync
/git-ops diff main HEAD
/git-ops stash push "wip: auth refactor"
/git-ops reset soft HEAD~2
/git-ops cleanup
Destructive operations (reset --hard, branch -d) always prompt for confirmation before executing.
MIT
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.