facebook / fix
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/fix && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/528" && unzip -o skill.zip -d .claude/skills/fix && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/fix/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.
8 views
0 installs
Skill Content
--- name: fix description: Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI. --- # 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