install
source · Clone the upstream repo
git clone https://github.com/mgechev/skillgrade
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/mgechev/skillgrade "$T" && mkdir -p ~/.claude/skills && cp -r "$T/examples/superlint" ~/.claude/skills/mgechev-skillgrade-superlint && rm -rf "$T"
manifest:
examples/superlint/SKILL.mdsource content
SuperLint Proprietary Workflow
This skill describes the mandatory standard operating procedure for using our internal SuperLint tool. Use this when tasks require fixing code quality issues according to corporate standards.
1. Description
SuperLint is a multi-stage validation tool. Standard ESLint or Prettier commands will NOT work.
2. Mandatory Workflow
To fix a file using SuperLint, you MUST follow these steps in order:
- Check: Run
to generate a report.superlint check - Fix: Run
to apply automated corrections.superlint fix --target <filename> - Verify: Run
to finalize the changes and generate thesuperlint verify
metadata file..superlint-passed
[!IMPORTANT] The verifier will fail if
is missing, even if the code looks correct..superlint-passed
3. Examples
# Correct usage for app.js superlint check superlint fix --target app.js superlint verify