Show current git status summary.
Displays current git branch, uncommitted changes, stashes, and recent commits.
/plugin marketplace add p4ndroid/ai-dev-pipeline-architecture/plugin install ai-dev-pipeline@ai-dev-pipeline-marketplaceShow current git status summary.
Display the following git information:
Current Branch:
git branch --show-current
Uncommitted Changes:
git status --short
Stash List:
git stash list
Recent Commits (last 5):
git log --oneline -5
Present the output in this format:
Branch: {branch_name}
Changes:
{M/A/D/?? indicators for each file}
(or "No uncommitted changes")
Stashes: {count}
{stash list if any}
(or "No stashes")
Recent commits:
{hash} {message}
{hash} {message}
...
/git-status