Review

Review current changes for correctness, style, and potential issues

goldziher c785a29 786 B Updated

File contents

Review

Review all staged and unstaged changes in the current repository.

Steps

  1. Run git diff and git diff --staged to collect all changes.
  2. For each changed file, analyze:
    • Correctness: Logic errors, off-by-one mistakes, missing error handling.
    • Style: Adherence to Rust idioms, naming conventions, code formatting.
    • Safety: Unwrap usage, potential panics, unsafe blocks.
    • Testing: Whether new code paths have corresponding tests.
  3. Check that commit messages (if any) follow Conventional Commits format.
  4. Report findings grouped by severity: errors, warnings, suggestions.
  5. If no issues are found, confirm the changes look good.

goldziher/gitfluff/tree/main/.claude/skills/review commit c785a29d17

Frequently asked questions

npx skillmds@latest add goldziher/review