linting-codebase

Detect lint issues across codebases and repair them in parallel until passing.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/withmartian-sandbox-darkside/ghrc-y-3126672651424eddb640ecc81321a665 --skill linting-codebase-withmartian-sandbox-darkside
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: linting-codebase
Source: https://github.com/withmartian-sandbox-darkside/ghrc-y-3126672651424eddb640ecc81321a665/tree/main/default/skills/linting-codebase
Command: npx skills add https://github.com/withmartian-sandbox-darkside/ghrc-y-3126672651424eddb640ecc81321a665 --skill linting-codebase-withmartian-sandbox-darkside

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Lint issues across large codebases slow development and erode quality. This skill automates detection, grouping, and parallel repair of lint issues, reducing manual triage and repeated edits.

Core Features & Use Cases

  • Detect Lint Issues: Run multi-tool lint checks to surface issues across files and components.
  • Group & Dispatch: Partition issues into independent streams and dispatch one agent per stream for fixes.
  • Iterative Verification: Re-run lint until all issues pass, with safeguards to prevent non-productive changes.
  • Use Case: When a repository has many lint warnings scattered across modules, use this skill to fix them in parallel while preserving original behavior.

Quick Start

Run the /lint command to begin a parallel lint-fix cycle.

Frequently Asked Questions about linting-codebase

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix lint issues across a large multi-language codebase?

Lint issues in large codebases are fixed by partitioning them into independent streams and dispatching parallel agents to apply minimal edits, verify changes, and re-check until all rules pass.

How does parallel lint fixing work for scattered code warnings?

Parallel lint fixing works by grouping detected warnings into independent streams and dispatching one agent per stream to apply minimal edits, followed by iterative verification to ensure all checks pass.

Can I automate lint fixes for a repository with distributed lint rules and multiple teams?

Yes, you can automate lint fixes for repositories with distributed lint rules by grouping issues across modules and dispatching parallel agents to resolve them while strictly preserving original behavior.

Does automated lint repair preserve the original behavior of my code?

Automated lint repair preserves original behavior by enforcing strict verification, applying minimal edits, and using safeguards to prevent non-productive changes during the iterative re-check process.

What is the best way to handle code quality warnings across multiple modules?

The best way to handle code quality warnings across multiple modules is running multi-tool lint checks to surface issues, then dispatching parallel agents to fix them iteratively until the codebase is clean.