Code Linting (Ruff + Biome)
Runs and safely fixes lint/format issues with Ruff for Python and Biome for JavaScript/TypeScript.
Dev & CodingIntermediate★ 419⑂ 44AI score 9/10Last updated: Sep 5, 2026
What it does
- Runs lint and format checks:
ruff check/ruff formatfor Python,@biomejs/biome checkfor JS/TS. - Honors existing project config first —
pyproject.toml,biome.json, ormake lint/make lint-fix— before falling back to defaults. - After auto-fixing, reviews
git diff, reverts incorrect fixes, and reruns the checks. - Gives concrete remediation notes for common rules: F401, I001, E501, plus Biome's noVar, useConst, noDoubleEquals.
- Includes recovery paths when tooling is missing (virtualenv, pipx, package deps) and forbids silently installing tools during a read-only check.
Who it's for
- Python or JS/TS developers who keep hitting lint failures in CI.
- Teams that don't want an agent loosening rules or expanding refactor scope to force a pass.
- Maintainers of mixed repos with a Python backend and a TS frontend.
Example uses
- "Fix the lint errors" → runs
ruff check ., fixes only F401/I001 inside the requested scope, reports the diff. - "CI format check is failing" → runs
ruff format --check .and Biome check to separate lint failures from format failures. - "run biome" on a TS repo →
npx @biomejs/biome check src/with rule/file:line diagnostics.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/notque/vexjoy-agent/HEAD/skills/code-quality/code-linting/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/code-quality/code-linting folder from the GitHub repo notque/vexjoy-agent into my ~/.claude/skills/code-linting/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/notque/vexjoy-agent.git && mkdir -p ~/.claude/skills && cp -r vexjoy-agent/skills/code-quality/code-linting ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/notque/vexjoy-agent.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r vexjoy-agent/skills/code-quality/code-linting ~/.claude/skills/ - Verify the bundled
references/docs came along:ls ~/.claude/skills/code-linting - Restart Claude Code, then ask "lint code" or "run ruff" inside a project to trigger it.
- Make sure
ruff(in your Python venv) and/or Node + npx are available so the commands can actually run.
View source on GitHub ↗License: MIT