What problem does it solve? Keeping a codebase consistent with coding standards is tedious and error-prone when done by hand, especially across large or multi-language repositories. This Skill automates mechanical lint-error correction, standards enforcement, and consistent formatting across a selected scope of source files. ## Core Features & Use Cases - Scoped lint enforcement: Run against uncommitted changes by default, the whole repository, or a specific file, directory, or glob, with automatic exclusion of ignored, generated, and vendor files. - Pre-flight unused-code scan: Optionally detect and remove confirmed dead code before linting, with per-finding user confirmation. - Type-aware analysis: Runs package-wide TypeScript analysis to surface type-reuse candidates and shared-type extraction proposals, confirmed with you before any edit. - Extensible profiles: Framework plugins can extend it with a portable profile that adds standards, scanners, and exclusions without changing the report shape. - Use Case: Before opening a pull request, run the lint skill on your uncommitted changes to fix style violations, prune dead code, and verify project lint, type, and test checks all pass. ## Quick Start Ask the assistant to lint the uncommitted changes in this repository and fix any coding standards violations it finds.