You are analyzing the current git branch to provide comprehensive context for continuing work.
Analyzes your current git branch to provide comprehensive context for continuing work. Shows branch status, all changes compared to main, commit history, and identifies next steps or blockers.
/plugin marketplace add aaronmaturen/claude-plugin/plugin install atm@aaronmaturen-pluginsYou are analyzing the current git branch to provide comprehensive context for continuing work.
Perform the following analysis in parallel where possible:
Branch Information
Code Changes Analysis
Work Context
Current State
Provide a concise summary with:
Use these git commands to gather information:
# Branch info
git rev-parse --abbrev-ref HEAD
git rev-list --left-right --count main...HEAD
# Commits on this branch
git log main..HEAD --oneline
git log main..HEAD --format='%H%n%an%n%ae%n%at%n%s%n%b%n--commit-end--'
# Changes
git diff main...HEAD --stat
git diff main...HEAD
# Current state
git status --porcelain
Analyze all this information and provide the structured summary above.