git_status

Understand the current state of the git repository

Content Preview
---
allowed-tools: Bash(git:*)
description: Understand the current state of the git repository
---

# Git Status

Read the `Files` and run the `Commands` and summarize the current state of the git repository.

## Commands

- Current Status: !`git status`
- Current diff: !`git diff HEAD origin/main`
- Current branch: !`git branch --show-current`

## Files
@README.md
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/git_status.md \
  https://raw.githubusercontent.com/disler/claude-code-hooks-mastery/main/.claude/commands/git_status.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/disler/claude-code-hooks-mastery

Then reference at .claude/commands/git_status.md

Related Skills