smithery/OhadRubin

diff-since-my-commit

Show changes to a git branch since your last commit, filtered to only files you touched.

Installation

$ npx skills add smithery/OhadRubin --skill diff-since-my-commit

Summary

  • Show changes to a git branch since your last commit, filtered to only files you touched.
  • Use when user asks to see what others changed on their branch, review changes since they last committed, or compare their work against upstream modifications.
  • Triggers on requests like "what changed on my branch", "show me the diff since my commit", "what did others change to my files", or "review changes to my PR".

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/OhadRubin.

npx skills add smithery/OhadRubin

Browse all from smithery/OhadRubin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,524 B
  • docs SUMMARY.md 434 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Diff Since My Commit

Show changes to a git branch since your last commit, filtered to only the files you originally touched.

Usage

scripts/diff_since_my_commit.sh <branch> [email1,email2,...]

Examples:

# Use default git config email
scripts/diff_since_my_commit.sh origin/feature-branch

# Specify multiple emails (if you commit with different emails)
scripts/diff_since_my_commit.sh origin/main "[email protected],[email protected]"

What It Does

  1. Find your most recent commit on the specified branch
  2. Identify files you touched in your commits
  3. Show who else committed since your last commit
  4. Generate a diff of only your files that were modified by others
  5. Open the diff in browser using diff2html (side-by-side view)

Requirements

  • git - for diff generation
  • diff2html-cli - for browser preview (npm install -g diff2html-cli)

Output

The script displays:

  • Your last commit on the branch
  • Number of commits since yours
  • Authors who made changes
  • List of files you touched
  • Opens filtered diff in browser