-
Use git CLI to enumerate changed files, including both staged and unstaged (e.g., git diff --name-only --cached and git diff --name-only ).
-
If the user asks to review against a target branch (e.g., "review against main"), fetch the target branch if needed (e.g., git fetch origin main ), then compare using:
-
git diff --name-only <target>...HEAD to list changed files
-
git diff <target>...HEAD to review actual changes
-
Prefer the three-dot range (<target>...HEAD ) so the diff is based on the merge-base with the target branch.
-
Focus review on code folders; identify them dynamically from the repo structure and skip helper scripts or non-code folders unless the user requests otherwise.
-
Read GUIDELINES.md in this skill folder and follow its rules when reviewing. Review ONLY based on the guidelines provided.
-
Inspect only the changed files and produce a list of concrete fixes needed, ordered by severity.
-
Recommend applying fixes and ask for confirmation before making changes.
-
If the user confirms, apply fixes while following GUIDELINES.md and the repo editing constraints.
reviewer-process
- Use git CLI to enumerate changed files, including both staged and unstaged (e.g., git diff --name-only --cached and git diff --name-only ).
Safety Notice
This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.
Copy this and send it to your AI assistant to learn
Install skill "reviewer-process" with this command: npx skills add dimkinv/favorite-skills/dimkinv-favorite-skills-reviewer-process
Source Transparency
This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.
Related Skills
Related by shared tags or category signals.
skeleton-generator
No summary provided by upstream source.
Repository SourceNeeds Review
skill-installer
No summary provided by upstream source.
Repository SourceNeeds Review
agent-memory
No summary provided by upstream source.
Repository SourceNeeds Review
markdown-to-pdf
No summary provided by upstream source.
Repository SourceNeeds Review