configure-linting

configure-linting is a skill for Claude Code from laurigates/claude-plugins. It costs 45 tokens per session (2,022 once invoked), scanned A, original, MIT.

A setup guide for linters such as Biome, Ruff, and Clippy. Linters inspect code for likely mistakes and violations of project rules.

In plain words
What is it for?
Use it to configure or migrate linting, validate rules, and connect lint checks to pre-commit or CI workflows.
Why use it?
It helps catch common problems consistently and keeps lint checks aligned across local development, pre-commit hooks, and CI.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the configure-plugin plugin — 48 skills shipped together

Good fit Use it to configure or migrate linting, validate rules, and connect lint checks to pre-commit or CI workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/laurigates/claude-plugins/configure-linting
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add laurigates/claude-plugins --skill configure-linting
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

Made for: Claude Code.

Or install configure-plugin, the plugin that ships this one along with the rest of its 48 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for configure-linting

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-linting.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/configure-linting)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/configure-linting"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-linting.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,022 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.02022
Opus 5 $0.00023 $0.01011
Sonnet 5 $0.00009 $0.00404
Haiku 4.5 $0.00005 $0.00202

Measured 3d ago against content hash adc0374768d1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

configure-linting scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

configure-plugin/skills/configure-linting/SKILL.md · 203 lines

How it starts

The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/configure:linting

Check and configure linting tools against modern best practices.

When to Use This Skill

Use this skill when... Use another approach when...
Setting up modern linting (Biome, Ruff, Clippy) Just running linter (use /lint:check skill)
Migrating from ESLint/Prettier to Biome Linters already properly configured
Validating linter configuration Fixing specific lint errors (run linter and fix)
Ensuring language-specific best practices Simple script with no linting needs
Configuring pre-commit lint integration Debugging linter issues (check linter logs)

Context

  • Project root: !pwd
  • Biome config: !find . -maxdepth 1 -name 'biome.json' -o -name 'biome.jsonc'
  • Ruff config: !find . -maxdepth 1 -name 'pyproject.toml' -exec grep -l 'tool.ruff' {} +
  • Clippy config: !find . -maxdepth 1 -name 'Cargo.toml' -exec grep -l 'lints.clippy' {} +
  • Legacy linters: !find . -maxdepth 1 \( -name '.eslintrc*' -o -name '.flake8' -o -name '.pylintrc' \)
  • Package files: !find . -maxdepth 1 \( -name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' \)
  • Pre-commit config: !find . -maxdepth 1 -name '.pre-commit-config.yaml'
  • CI workflows: !find . -path '*/.github/workflows/*' -maxdepth 3 -name '*.yml'

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report linting compliance status without modifications
  • --fix: Apply all fixes automatically without prompting
  • --linter <biome|ruff|clippy>: Override auto-detection and force specific linter

Modern linting preferences:

  • JavaScript/TypeScript: Biome (unified linter + formatter, fast)
  • Python: Ruff (replaces flake8, isort, pyupgrade)
  • Rust: Clippy with workspace lints

Execution

Execute this linting configuration check:

Step 1: Detect project language and existing linters

Read the context values above and determine:

Indicator Language Detected Linter
biome.json JavaScript/TypeScript Biome
pyproject.toml [tool.ruff] Python Ruff
.flake8 Python Flake8 (legacy)
Cargo.toml [lints.clippy] Rust Clippy

Read the full file on GitHub · 203 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 203 lines · 45 tokens per session scan A adc0374768d1

Subscribe to this mod's changes

configure-linting is a skill published in the GitHub repository laurigates/claude-plugins (58 stars, last pushed today), licensed MIT. It adds 45 tokens to every session and 2,022 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

a0-debug-plugin

Diagnose and fix Agent Zero plugin problems. Covers plugin not appearing, won't enable, API endpoints not responding, frontend store errors, extension point injection, settings resolution, hooks.py issues, and log inspection. Use when a plugin is not working, not loading, crashing, missing from the list, or behaving…

agent0ai/agent-zero · 68 tokens

audit-dead-code

Hunt dead code across a whole repository through four labelled lanes of unequal confidence. Knip (TS/JS unused files, exports, types, enum members), vulture (Python symbols), gopls (Go unexported symbols), and a portable grep lane (shell and other symbol languages), then adjudicate every candidate against the…

melodic-software/claude-code-plugins · 254 tokens

doctor

Check ryk installation, policy status, host integration status, and plugin readiness.

christopherkarani/ryk · 0 tokens

ryk-doctor

Check ryk installation, policy status, host integration status, and plugin readiness.

christopherkarani/ryk · 0 tokens

ci-log-interpretation

Use this skill when reading or analyzing CI logs from a Shopware GitHub Actions workflow to figure out why a build failed — phrases like "why did CI fail", "what broke the build", "check the pipeline", "interpret these logs", "debug this red build" — or whenever raw run logs, job logs, or check annotations from a…

shopwareLabs/ai-coding-tools · 154 tokens

a0-debug-plugin

Diagnose and fix Agent Zero plugin problems. Covers plugin not appearing, won't enable, API endpoints not responding, frontend store errors, extension point injection, settings resolution, hooks.py issues, and log inspection. Use when a plugin is not working, not loading, crashing, missing from the list, or behaving…

Gen-Verse/PAST-Bench · 68 tokens