find-mismatch
Originally fromutarn/review-skill
Installation
SKILL.md
Find Mismatch
Run static analysis using fallow and fix issues that it suggests. Walk through every file. Focus only on runtime failures/bugs and fix them. Do NOT report style, formatting, performance suggestions, docs/tests, or "consider using X".
1. Process
- JS/TS (Pre-check): Run static analysis.
- Check if installed:
fallow --version. - Install globally if missing:
npm install -g fallow. - Execute audit:
fallow audit --format json --quiet. - Filter findings by git status:
git diff --staged --name-only. - If staged: auto-apply safe fixes, re-run audit to verify.
- If unstaged: report-only (no modification).
- Check if installed:
- Review Checklist: Apply checklist to all changes.
- Report: Format findings using the specified template.