git-status

Executes Git commands via Bash for repository status, diffs, logs, and blame.

1|1|Updated Feb 21, 2026
One-click install
npx skills add https://github.com/dtsong/claude-code-windows-setup --skill git-status-dtsong
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-status
Source: https://github.com/dtsong/claude-code-windows-setup/tree/main/skills/git-status
Command: npx skills add https://github.com/dtsong/claude-code-windows-setup --skill git-status-dtsong

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides quick access to essential Git repository information, helping you understand the current state of your codebase without needing to remember complex commands.

Core Features & Use Cases

  • Check Status: See unstaged and staged changes.
  • View Diffs: Inspect differences between commits or the working directory.
  • Review History: Quickly view recent commit logs.
  • Line-by-line Blame: Identify who last modified specific lines of code.
  • Use Case: Before committing, you can ask "what changed?" to get a summary of your modifications.

Quick Start

Ask what changed in the repository.

Frequently Asked Questions about git-status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check my git repository status for staged and unstaged changes?

You can view repository status by asking what changed, and the Skill runs git commands via Bash to display staged and unstaged changes. It provides a quick summary of your working directory state.

What is the best way to view recent git commit logs and diffs?

To view diffs and commit history, this Skill leverages Bash to execute git diff and log commands. It rapidly retrieves differences between commits and displays recent repository history for code review.

Can I use git blame to identify who modified specific lines of code?

Yes, you can identify who modified specific lines of code by requesting a git blame query. The Skill executes the blame command via Bash to show line-by-line authorship and facilitate change tracking.

Does this git query tool require any external dependencies or plugins?

No, this git query tool requires no external dependencies or plugins. It operates by leveraging Bash for direct execution of standard git commands to retrieve repository information like status and diffs.

How do I review code changes before committing to version control?

To review code changes before committing, you can ask this Skill what changed in the repository. It runs git diff and status commands via Bash to summarize your current modifications for code review.