lint
Installation
SKILL.md
Linting
Run the project's linter/formatter — detect it, don't assume a toolchain.
Detection
Prefer a task the project already defines, then fall back to the ecosystem tool:
| Ecosystem | Check | Fix |
|---|---|---|
| Node | package.json lint (eslint/biome) |
lint:fix |
| Python | ruff check / flake8 |
ruff check --fix |
| Go | golangci-lint run / gofmt -l |
gofmt -w |
| Rust | cargo clippy / cargo fmt --check |
cargo fmt |
| else | Makefile / CI lint target |
— |