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

  1. Identify the current branch and base branch:

    git branch --show-current
    git merge-base HEAD main
    
  2. Gather the diff from main:

    git diff main...HEAD --stat
    git diff main...HEAD
    

    Read through the full diff carefully. Understand what files were changed, added, or removed, and what the changes do.

Installs
65
Repository
jnsahaj/skills
GitHub Stars
53
First Seen
Jul 1, 2026
prepare-branch-context — jnsahaj/skills