Claude-skill-registry fix

Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/fix-facebook-react" ~/.claude/skills/majiayu000-claude-skill-registry-fix && rm -rf "$T"
manifest: skills/data/fix-facebook-react/SKILL.md
source content

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