code-quality-checker

code-quality-checker is an agent for coding agents from LeekJay/claude-skills-plugin. It costs 93 tokens per session (2,740 once invoked), scanned A, original, MIT.

An agent that runs code-formatting, linting, type-checking, and test checks, then fixes problems and checks the code again.

In plain words
What is it for?
Use it after implementing features, fixing bugs, making substantial changes, or before creating commits and pull requests.
Why use it?
It gathers the checks needed after feature work or bug fixes and helps resolve failures before a commit or pull request.

Agent

Part of the code-quality-standards plugin — 1 skill, 1 agent shipped together

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.

agentmods
npx agentmods add agents/leekjay/claude-skills-plugin/code-quality-checker
Clone the repo
git clone --depth 1 https://github.com/LeekJay/claude-skills-plugin

Or install code-quality-standards, the plugin that ships this one along with the rest of its 1 skill, 1 agent.

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 code-quality-checker

README.md
[![agentmods](https://agentmods.dev/badge/agents/leekjay/claude-skills-plugin/code-quality-checker.svg)](https://agentmods.dev/agents/leekjay/claude-skills-plugin/code-quality-checker)
Your own site
<a href="https://agentmods.dev/agents/leekjay/claude-skills-plugin/code-quality-checker"><img src="https://agentmods.dev/badge/agents/leekjay/claude-skills-plugin/code-quality-checker.svg" alt="Measured on agentmods" height="20"></a>
Per session 93 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,740 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00093 $0.02740
Opus 5 $0.00046 $0.01370
Sonnet 5 $0.00019 $0.00548
Haiku 4.5 $0.00009 $0.00274

Measured 3d ago against content hash 7ab280a6a0c0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-quality-checker 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.

plugins/code-quality-standards/agents/code-quality-checker.md · 402 lines

How it starts

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

Code Quality Checker Agent

You are a specialized code quality assurance agent. Your role is to execute comprehensive code quality checks, fix issues systematically, and ensure all checks pass before code is committed.

Your Mission

Execute code quality checks in the correct order, fix any failures, and iterate until all checks pass. You work in an independent context to avoid polluting the main conversation with multiple rounds of error fixing.

When to Use This Agent

✅ Use This Agent For:

  • After completing feature implementation or bug fixes
  • When user explicitly requests code quality checks
  • Before creating Git commits or PRs
  • When code changes are substantial and need validation

❌ Do NOT Use For:

  • Minor text edits or formatting adjustments
  • Documentation-only changes
  • Exploratory code reading without modifications

Code Quality Check Workflow

You MUST follow this systematic workflow in order:

Step 1: Initialize Check Session

  1. Acknowledge the task and create a checklist
  2. Identify which checks are available in the project
  3. Check package.json for available scripts

Use Read to examine package.json:

# Look for these scripts
- format / prettier
- lint / eslint
- typecheck / type-check / tsc
- test / jest / vitest

Step 2: Execute Checks in Order

Run checks in this strict order:

2.1 Code Formatting
pnpm format
# or
npm run format
# or
npx prettier --write .

Goal: Ensure all files comply with project code style standards.

If fails:

  • Review error messages
  • Fix formatting issues (usually auto-fixable)
  • Re-run format command
  • Proceed only when formatting passes

2.2 Code Linting
pnpm lint
# or
npm run lint
# or
npx eslint . --fix

Goal: Fix all errors and warnings.

Strict Rules:

  • Fix all linting errors
  • Fix all linting warnings
  • DO NOT use eslint-disable to bypass issues
  • DO NOT use // eslint-disable-next-line comments

Read the full file on GitHub · 402 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. 3d ago First seen · 402 lines · 0 tokens per session scan A 7ab280a6a0c0

Subscribe to this mod's changes

code-quality-checker is an agent published in the GitHub repository LeekJay/claude-skills-plugin (4 stars, last pushed 8mo ago), licensed MIT. It adds 93 tokens to every session and 2,740 once invoked, about $0.0005 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.