lint

lint is a command for Claude Code from andrei-isvoran96/claude-skill-lab. It costs 0 tokens per session (987 once invoked), scanned A, original, MIT.

A command that runs all configured project linters at the same time and reports each result. A linter checks source code for style problems and common mistakes.

In plain words
What is it for?
Use it to run lint checks in read-only mode or pass --fix to correct issues supported by the project’s linters.
Why use it?
It provides one pre-commit check across the project and can optionally apply supported automatic fixes.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Good fit Use it to run lint checks in read-only mode or pass --fix to correct issues supported by the project’s linters.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/andrei-isvoran96/claude-skill-lab/lint
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.

Clone the repo
git clone --depth 1 https://github.com/andrei-isvoran96/claude-skill-lab

Made for: Claude Code.

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 lint

README.md
[![agentmods](https://agentmods.dev/badge/commands/andrei-isvoran96/claude-skill-lab/lint/github.svg)](https://agentmods.dev/commands/andrei-isvoran96/claude-skill-lab/lint)
Your own site
<a href="https://agentmods.dev/commands/andrei-isvoran96/claude-skill-lab/lint"><img src="https://agentmods.dev/badge/commands/andrei-isvoran96/claude-skill-lab/lint/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for lint

Your own site · 80×15
<a href="https://agentmods.dev/commands/andrei-isvoran96/claude-skill-lab/lint"><img src="https://agentmods.dev/badge/commands/andrei-isvoran96/claude-skill-lab/lint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 987 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.
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.00000 $0.00987
Opus 5 $0.00000 $0.00494
Sonnet 5 $0.00000 $0.00197
Haiku 4.5 $0.00000 $0.00099

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

Security

Grade A, and why

lint 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 8d 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.

commands/lint.md · 88 lines

How it starts

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

Run all project linters in parallel and report per-lane pass/fail. Pre-commit sanity check.

Arguments

Optional. If $ARGUMENTS is --fix, run the auto-fixers for linters that support fix mode. Otherwise run in check-only mode.

Steps

  1. Run all linters in parallel — issue all Bash calls in a single turn so they execute concurrently. Do NOT run them sequentially.

    Check-only mode (default):

    • <LINTER_NAME_1>: <LINTER_CHECK_CMD_1>
    • <LINTER_NAME_2>: <LINTER_CHECK_CMD_2>
    • <LINTER_NAME_3>: <LINTER_CHECK_CMD_3>

    Fix mode (when $ARGUMENTS is --fix):

    • <LINTER_NAME_1>: <LINTER_FIX_CMD_1>
    • <LINTER_NAME_2>: <LINTER_FIX_CMD_2>
    • <LINTER_NAME_3>: <LINTER_FIX_CMD_3>
  2. Capture exit codes per linter. Each Bash call's exit status is the truth — 0 = pass, anything else = fail. Don't grep the output for "error" strings; trust the exit code.

  3. Format a compact per-lane report. One line per linter, plus a summary. Keep raw linter output OUT of the final reply unless the linter failed — then include only the relevant error excerpts (truncate to ~10 lines per failed lane).

    All passing:

    ✓ <LINTER_NAME_1>   passed
    ✓ <LINTER_NAME_2>   passed
    ✓ <LINTER_NAME_3>   passed
    ✓ all linters green (3/3)
    

Read the full file on GitHub · 88 lines

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. 8d ago First seen · 88 lines · 0 tokens per session scan A 7e8b1f13c9ed

Subscribe to this mod's changes

lint is a command published in the GitHub repository andrei-isvoran96/claude-skill-lab (1 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 987 tokens. 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-08-31.