fix

Run yarn prettier and yarn linc to fix lint and formatting issues.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/robinxin/AIFlomo --skill fix-robinxin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix
Source: https://github.com/robinxin/AIFlomo/tree/main/.claude/skills/fix
Command: npx skills add https://github.com/robinxin/AIFlomo --skill fix-robinxin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Fix lint errors and formatting issues in a codebase.

Core Features & Use Cases

  • Automatic formatting: Run formatting to fix code style inconsistencies.
  • Lint enforcement: Run lint checks to catch potential issues before commit.
  • Pre-commit hygiene: Report remaining manual fixes needed to satisfy CI.

Quick Start

Run yarn prettier to fix formatting, then yarn linc to catch remaining lint issues before committing.

Frequently Asked Questions about fix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix lint errors and formatting issues before a commit?

To fix lint errors and formatting issues, run yarn prettier to automatically correct code style, then run yarn linc to catch remaining lint problems before committing.

What is the best way to automate code formatting for CI checks?

Automating code formatting for CI checks involves running yarn prettier to resolve style inconsistencies and yarn linc to identify manual fixes needed to pass pre-commit hygiene.

Does this tool automatically resolve all code quality issues in a codebase?

No, the tool does not automatically resolve all code quality issues. It runs yarn prettier for formatting and yarn linc to report remaining manual fixes required for review.

Why does pre-commit lint enforcement require manual fixes?

Pre-commit lint enforcement requires manual fixes because yarn linc catches remaining code issues that automated yarn prettier formatting cannot resolve, ensuring CI passes.

Can I run lint checks and formatting separately during development workflows?

Yes, you can run yarn prettier separately to fix formatting inconsistencies and subsequently run yarn linc to check for remaining lint issues during development workflows.