
Git
- 2 repo stars
- Updated July 9, 2026
- jskladan/claude.md
Git workflow automation and utilities
About
git is a Claude Code skill in the Automation & Workflows category. Git workflow automation and utilities
- git
- Automation & Workflows
- AI-coding skill
Git by the numbers
- Data as of Jul 10, 2026 (Skillselion catalog sync)
/plugin marketplace add jskladan/claude.md/plugin install git@jskladan-claude-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | July 9, 2026 |
| Repository | jskladan/claude.md ↗ |
What it does
Git workflow automation and utilities
README.md
Git Plugin
Git workflow automation and utilities for Claude Code and Cursor.
Skills live in skills/. Cursor installs prefixed names via generated wrappers in cursor-plugins/git/skills/ (/git-commit, etc.). Run ./scripts/sync-cursor-skills.sh after editing canonical skills.
Skills
commit — /git:commit (Claude) · /git-commit (Cursor)
Create commits with automatic style detection based on development phase.
/git:commit [style_or_message]
- Auto-detect style:
/git:commit- analyzes context to choose verbosity - Development checkpoint:
/git:commit dev- verbose commit with full context - Final commit:
/git:commit final- clean, concise commit message - Custom message:
/git:commit "Fix authentication bug"
merge — /git:merge · /git-merge
Smart commit squashing with intelligent message combination.
/git:merge [count_or_sha] [style]
- Merge last 2:
/git:mergeor/git:merge 1 - Merge N+1 commits:
/git:merge 3- merges HEAD + 3 previous - Merge to SHA:
/git:merge abc1234- merges from HEAD to SHA (inclusive) - With style:
/git:merge 3 final- squash with clean message
reword — /git:reword · /git-reword
Smart commit message rewording with style transformation.
/git:reword [sha] [style_or_message]
- Transform to verbose:
/git:reword abc1234 dev - Transform to concise:
/git:reword abc1234 final - Custom message:
/git:reword abc1234 "New message" - Auto-detect:
/git:reword abc1234- AI improves message
shallow-clone — /git:shallow-clone · /git-shallow-clone
Perform a shallow clone of a Git repository to a temporary location.
workflow — /git:workflow · /git-workflow
Proactive git workflow automation that:
- Detects substantial changes and offers to create feature branches
- Checkpoint commits during development to save progress
- Completion detection recognizes when work is done
- History cleanup offers to squash and clean commit messages
The workflow skill orchestrates commit, merge, and reword skills automatically during development sessions.
Installation
Claude Code:
/plugin install git@jskladan-claude-plugins
Cursor IDE: Run ./scripts/setup-cursor-local-plugins.sh from the repo root (see README), or install via your org's Cursor team marketplace.
Cursor CLI: Run ./scripts/agent-with-plugins.sh (see README).
Workflow Example
User: "I need to add OAuth authentication"
Claude: "Would you like me to create a feature branch?"
User: "Yes"
[During development]
Claude: "OAuth setup complete. Checkpoint commit?"
User: "Sure"
→ /git:commit dev
[After completion]
Claude: "We have 4 dev commits. Clean up before merging?"
User: "Yes, one commit"
→ /git:merge 3 final