# Review

> Review current changes for correctness, style, and potential issues

- Skill: `goldziher/review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add goldziher/review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/goldziher/review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: goldziher (https://skillmd.com/u/goldziher)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/goldziher/review

---


# 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.

