prepare-branch-context
Installation
SKILL.md
Prepare Branch Context
Build a comprehensive understanding of the current branch so you can handle followup requests with full context.
Steps
-
Identify the current branch and base branch:
git branch --show-current git merge-base HEAD main -
Gather the diff from main:
git diff main...HEAD --stat git diff main...HEADRead through the full diff carefully. Understand what files were changed, added, or removed, and what the changes do.