agentsclimarketplace

Minimal diff review

Skill SID-SURANGE/cursor-team-ops/skills/core/minimal-diff-review

Enforcement & release-hygiene layer for Cursor agents β€” blocking git/DB/license guardrails, commit hygiene, and docs-ops.

Install
npx -y skills add SID-SURANGE/cursor-team-ops --skill minimal-diff-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Review a set of code or document changes for scope creep, convention drift, and quality issues following team standards. Use when the user asks to "review my changes", "check the diff", "look at what I changed", "is this good to go", "sanity check my code", "does this look right", "review before I push", "quick review", or before a PR is created. Also use proactively after large edits to check nothing went out of scope.

SKILL.md

1.7 KB, as published. Nobody here has run it

πŸ”Ž Minimal Diff Review

Get the diff

git diff          # unstaged
git diff --cached # staged
git diff HEAD     # both

Read original files at changed lines for context before judging.

Flag these categories

CategoryFlag if
Scope creepFiles touched that are unrelated to the stated task
Convention driftNaming, imports, or style diverge from surrounding code
Unrequested abstractionsNew classes, helpers, or layers added without being asked
Debug codeconsole.log, print(, debugger, breakpoint(), TODO in changed lines
Doc driftPublic API or interface changed but no corresponding doc update
Test gapBehavior-changing code with no test added or updated (flag only, not block)

Output format

[scope-creep]   src/utils.py:45 β€” touches unrelated date formatter
[convention]    api/routes.ts:12 β€” uses snake_case; surrounding code uses camelCase
[debug]         app/main.go:88 β€” print statement left in

Rules

  • Flag issues only. Do not silently fix or revert changes.
  • Do not suggest rewrites unless the user asks for them.
  • Severity is implied by category β€” do not add emoji or color ratings.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.