context-review

Installation
SKILL.md

When to Use

  • Before committing changes to understand what you're about to commit
  • Reviewing pull requests or branches
  • Understanding the impact of changes on the rest of the codebase

Review Workflow

1. Check Current Changes

First, see what's changed:

git status
git diff                    # Unstaged changes
git diff --staged           # Staged changes
git diff main...HEAD        # All changes on current branch
Installs
1
GitHub Stars
4
First Seen
4 days ago
context-review — jetbrains/context