# Superlint

> SuperLint Proprietary Workflow

- Skill: `mgechev/superlint` (Agent Skill, multi-file: 6 files)
- Install (CLI): `npx skillmds@latest add mgechev/superlint`
- Raw SKILL.md: https://api.skillmd.com/api/skills/mgechev/superlint/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: mgechev (https://skillmd.com/u/mgechev)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/mgechev/superlint

---

# 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:

1.  **Check**: Run `superlint check` to generate a report.
2.  **Fix**: Run `superlint fix --target <filename>` to apply automated corrections.
3.  **Verify**: Run `superlint verify` to finalize the changes and generate the `.superlint-passed` metadata file.

> [!IMPORTANT]
> The verifier will fail if `.superlint-passed` is missing, even if the code looks correct.

## 3. Examples

```bash
# Correct usage for app.js
superlint check
superlint fix --target app.js
superlint verify
```

