agentsclimarketplace

Lint

Skill helderberto/agent-skills/skills/lint

My personal SDLC toolbelt for AI coding agents — PRD to ship.

Install
npx -y skills add helderberto/agent-skills --skill lint

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 12 stars12 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Run linting and formatting checks. Use when user asks to "run linter", "/lint", "check linting", "fix lint errors", or requests code linting/formatting. Don't use for running tests or type-checking only.

SKILL.md

1.3 KB, as published. Nobody here has run it

Linting

Run the project's linter/formatter — detect it, don't assume a toolchain.

Detection

Prefer a task the project already defines, then fall back to the ecosystem tool:

EcosystemCheckFix
Nodepackage.json lint (eslint/biome)lint:fix
Pythonruff check / flake8ruff check --fix
Gogolangci-lint run / gofmt -lgofmt -w
Rustcargo clippy / cargo fmt --checkcargo fmt
elseMakefile / CI lint target

Workflow

  1. Detect the linter (project task first, then ecosystem default)
  2. Run the check command
  3. For fixes: run the fix variant (only when requested)
  4. Report file:line references for all errors

Rules

  • Prefer the project's defined task over a raw tool call
  • Never invent a linter the project doesn't use

Error Handling

  • If no linter or task found → report which config/task is expected and stop
  • If the linter exits with parse errors → report each file-level parse error separately with file:line
  • If the linter config is missing → report which config is expected and stop

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.