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.
npx agentmods add commands/ruslan-korneev/claude-plugins/lint-configgit clone --depth 1 https://github.com/ruslan-korneev/claude-pluginsWrote 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.
[](https://agentmods.dev/commands/ruslan-korneev/claude-plugins/lint-config)<a href="https://agentmods.dev/commands/ruslan-korneev/claude-plugins/lint-config"><img src="https://agentmods.dev/badge/commands/ruslan-korneev/claude-plugins/lint-config.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00017 | $0.01015 |
| Opus 5 | $0.00009 | $0.00508 |
| Sonnet 5 | $0.00003 | $0.00203 |
| Haiku 4.5 | $0.00002 | $0.00102 |
Grade A, and why
lint:config 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Command /lint:config
Configure ruff for the project. The FastAPI preset is used by default.
Instructions
Step 1: Check Existing Configuration
# Check for pyproject.toml
ls pyproject.toml 2>/dev/null || echo "pyproject.toml not found"
# Check for ruff.toml
ls ruff.toml 2>/dev/null || echo "ruff.toml not found"
Read the existing file if it exists.
Step 2: Determine Preset
- fastapi (default) - optimized for FastAPI + SQLAlchemy projects
- minimal - basic rule set
- strict - maximum strictness
Step 3: Apply Configuration
Add or update the [tool.ruff] section in pyproject.toml.
Presets
FastAPI (recommended)
[tool.ruff]
target-version = "py312"
line-length = 120
src = ["src"]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
# Documentation - disabled since code should be self-documenting
"D",
# Type annotations for self/cls - redundant
"ANN101",
"ANN102",
# Boolean positional arg - often needed in FastAPI
"FBT003",
# Too many arguments - normal for DI
"PLR0913",
# Assert in tests - normal
"S101",
# Trailing comma / implicit string concat - conflict with formatter
"COM812",
"ISC001",
]
[tool.ruff.lint.per-file-ignores]
# Tests - allow assert and magic values
"tests/**/*.py" = ["S101", "PLR2004"]
# Migrations - auto-generated code
"alembic/versions/*.py" = ["ALL"]
# __init__.py - allow unused imports for re-export
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["src"]
force-single-line = false
lines-after-imports = 2
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
Minimal
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
]
[tool.ruff.format]
quote-style = "double"
Strict
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.
- 5d ago First seen · 179 lines · 17 tokens per session scan A 847b4b920b80
lint:config is a command published in the GitHub repository ruslan-korneev/claude-plugins (4 stars, last pushed 6mo ago), licensed MIT. It adds 17 tokens to every session and 1,015 once invoked, about $0.0001 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-08-31.
Other commands, from other repositories
python-dev
Start Python development workflow with architecture, implementation, review, and testing phases.
setup
Interactive setup for Python LSP development environment.
py-harden
Scan Python backend code for anti-patterns and fix them. Runs the full anti-pattern catalog (AP-01 through AP-22) against the codebase.
py-structure
Analyze and recommend project structure improvements. Checks file sizes, layer organization, module splitting, and hexagonal architecture compliance.
ccc-python-review
Comprehensive Python code review for PEP 8 compliance, type hints, security, and Pythonic idioms. Invokes the python-reviewer agent.
type-coverage
Vérification Couverture des Types Python.