lint-fix

lint-fix is an agent for Claude Code from Diablorosso67/multi-ai-memory. It costs 173 tokens per session (2,599 once invoked), scanned A, original, MIT.

A code-style checker and formatter that detects common style problems and safely fixes some of them across several programming languages.

In plain words
What is it for?
Use it to run the appropriate linter, automatically fix safe problems, format source files, and optionally check Python type annotations with mypy when requested.
Why use it?
It reduces the manual work of keeping existing code consistent without changing what the code is meant to do. It also reports issues that still need a person to review.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to run the appropriate linter, automatically fix safe problems, format source files, and optionally check Python type annotations with mypy when requested.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/diablorosso67/multi-ai-memory/lint-fix
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/Diablorosso67/multi-ai-memory

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-fix

README.md
[![agentmods](https://agentmods.dev/badge/agents/diablorosso67/multi-ai-memory/lint-fix.svg)](https://agentmods.dev/agents/diablorosso67/multi-ai-memory/lint-fix)
Your own site
<a href="https://agentmods.dev/agents/diablorosso67/multi-ai-memory/lint-fix"><img src="https://agentmods.dev/badge/agents/diablorosso67/multi-ai-memory/lint-fix.svg" alt="Measured on agentmods" height="20"></a>
Per session 173 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,599 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.00173 $0.02599
Opus 5 $0.00086 $0.01300
Sonnet 5 $0.00035 $0.00520
Haiku 4.5 $0.00017 $0.00260

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

Security

Grade A, and why

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

agents/lint-fix.md · 292 lines

How it starts

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

lint-fix — multi-language linter & formatter

Ты — code-style enforcer. Запускаешь правильные linter'ы для языка, auto-fix'ишь safe issues, докладываешь что осталось manual. Не trans formовать поведение кода — только формат и style.

Когда тебя НЕ надо вызывать

  • ❌ User спрашивает «как форматировать code» (вопрос best practices) → answer in chat
  • ❌ User просит написать новый код — это не lint
  • ❌ User спрашивает про architecture / design choices → engineering:architecture skill
  • ✅ User просит причесать существующий код → твоя работа

Контекст — projects и их linters

Адаптация: при установке starter'а пользователь должен заполнить таблицы ниже под свои реальные проекты (заменить <project-name> на фактические имена).

Python проекты

Tool Command Что делает
ruff check --fix Lint + auto-fix E (pep8), F (pyflakes), I (isort), UP (modernize)
ruff format Format (вместо black) PEP 8 styling, line length
mypy (опц) Type check Только если user попросит — медленный
cd <workspace>/projects/<python-project>
# Check: что найдёт без правок
ruff check . --statistics
# Auto-fix:
ruff check --fix .
ruff format .

TypeScript / Next.js проекты

Tool Command Что делает
eslint --fix Lint + auto-fix TypeScript-specific rules, unused imports, etc
prettier --write Format quotes, trailing commas, line length
tsc --noEmit (опц) Type check Только если user попросит
cd <workspace>/projects/<ts-project>
# Check what exists
cat package.json | grep -A 5 '"scripts"' | head -10

# Common patterns
npm run lint        # ESLint check
npm run lint:fix    # ESLint with --fix
npm run format      # Prettier write
# Или напрямую:
npx eslint . --ext .ts,.tsx --fix
npx prettier --write "**/*.{ts,tsx,js,jsx,json}"

Kotlin / Android проекты

Tool Command Что делает
./gradlew ktlintFormat ktlint format Kotlin official style
./gradlew detekt (если есть) Static analysis Code smells, complexity
Built-in ./gradlew lint Android lint Android-specific issues

Read the full file on GitHub · 292 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. 7d ago First seen · 292 lines · 173 tokens per session scan A a6ae41ba6a15

Subscribe to this mod's changes

lint-fix is an agent published in the GitHub repository Diablorosso67/multi-ai-memory (4 stars, last pushed 3mo ago), licensed MIT. It adds 173 tokens to every session and 2,599 once invoked, about $0.0009 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.

Related

Other agents, from other repositories

observability-engineer

OpenTelemetry, Prometheus, Grafana, distributed tracing, SLO design, and alerting specialist. Use when implementing observability, designing monitoring systems, or troubleshooting production issues. Trigger phrases: observability, monitoring, tracing, Prometheus, Grafana, OpenTelemetry, SLO, SLI, alerting, metrics…

travisjneuman/.claude · 82 tokens

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

svelte-expert

Svelte 5 runes, SvelteKit routing, form actions, and compile-time reactivity specialist. Use when building Svelte or SvelteKit applications, implementing rune-based state management, or working with SvelteKit features. Trigger phrases: Svelte, SvelteKit, runes, $state, $derived, $effect, $props, form actions, load…

travisjneuman/.claude · 95 tokens

vue-nuxt-expert

Vue 3 Composition API, Nuxt 3 server routes, Pinia state management, and VueUse composables specialist. Use when building Vue or Nuxt applications, implementing Composition API patterns, or working with Vue ecosystem. Trigger phrases: Vue, Nuxt, Pinia, Composition API, VueUse, defineProps, defineEmits, useFetch…

travisjneuman/.claude · 90 tokens

data-engineer

ETL pipelines, data warehousing, stream processing, and data infrastructure specialist. Use when building data pipelines, setting up warehouses, or implementing real-time data processing. Trigger phrases: ETL, pipeline, data warehouse, BigQuery, Snowflake, Redshift, Kafka, Airflow, dbt, streaming, data lake, data…

travisjneuman/.claude · 76 tokens

mobile-release-manager

App store submissions, mobile CI/CD, ASO, code signing, and beta distribution specialist. Use when preparing app releases, setting up mobile CI/CD, or managing app store presence. Trigger phrases: app store, Play Store, TestFlight, release, code signing, provisioning profile, Fastlane, ASO, beta, OTA update, version…

travisjneuman/.claude · 77 tokens