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

  1. 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).
  2. Review Checklist: Apply checklist to all changes.
  3. Report: Format findings using the specified template.

2. Checklist Categories

Installs
38
GitHub Stars
45
First Seen
9 days ago
find-mismatch — utarn/engineer-skills