
Fix
Run React-repo Prettier and linc before you commit so local changes match CI lint and formatting gates.
Install
npx skills add https://github.com/facebook/react --skill fixWhat is this skill?
- 3-step flow: `yarn prettier`, then `yarn linc`, then report remaining manual fixes
- Documents that `yarn prettier` only formats changed files—not the whole tree
- Calls out that unresolved `linc` errors will fail CI
- Explicit trigger: lint errors, formatting issues, or pre-commit readiness
Adoption & trust: 1.9k installs on skills.sh; 246k GitHub stars; 3/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Improve Codebase Architecturemattpocock/skills
Zoom Outmattpocock/skills
Caveman Reviewjuliusbrussee/caveman
Requesting Code Reviewobra/superpowers
Receiving Code Reviewobra/superpowers
Request Refactor Planmattpocock/skills
Journey fit
Common Questions / FAQ
Is Fix safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Fix
# Fix Lint and Formatting ## Instructions 1. Run `yarn prettier` to fix formatting 2. Run `yarn linc` to check for remaining lint issues 3. Report any remaining manual fixes needed ## Common Mistakes - **Running prettier on wrong files** - `yarn prettier` only formats changed files - **Ignoring linc errors** - These will fail CI, fix them before committing