reviewer-process
- Use git CLI to enumerate changed files, including both staged and unstaged (e.g.,
git diff --name-only --cachedandgit 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>...HEADto list changed filesgit diff <target>...HEADto 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.mdin 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.mdand the repo editing constraints.
More from dimkinv/favorite-skills
skeleton-generator
Create minimal TypeScript project skeletons for backend (Node.js), React (Vite), or Next.js with deps, file tree, and AGENTS.md handling.
9agent-memory
Agent-first persistent memory for storing, retrieving, and maintaining human-readable notes across conversations. The agent should proactively capture important decisions and work completed; users can also ask to remember, save, note, recall, remind, or review prior work (e.g., “remember this”, “save this”, “note this”, “remind me about…”, “what did we decide about…”, “check your notes”, “clean up memories”).
8markdown-to-pdf
Create a PDF from a local Markdown file using a local Python script (no remote services).
6skill-installer
Install a skill from a GitHub URL that points to a skill folder by downloading it into .github/skills.
6skill-creator
Create, update, and package Agent Skills. Use when asked to design a new skill, refine an existing skill, or set up the required SKILL.md structure, frontmatter, and resources.
4skills-cloner
Sync skills from .github/skills into .agents/skills and .claude/skills whenever a skill is created, updated, or deleted by cloning changed skill folders. User can request to manually run this skill by saying "Sync skills". or "Clone skills". or "align skills".
2