What problem does it solve? Manually running multiple Python and Ansible linters before commits or releases is error-prone and inconsistent, often causing CI failures that could have been caught locally. ## Core Features & Use Cases - Automatic tox configuration detection: Detects lint labels, linters environments, or individual lint environments in tox.ini and runs the correct command. - Multi-linter execution: Runs ansible-lint, black, isort, flake8, pylint, flynt, and ruff through tox with clear pass/fail reporting. - Auto-fix guidance: Distinguishes auto-fixable failures (black, isort, flynt) from issues requiring manual fixes (pylint, flake8, ansible-lint). - Use Case: Before committing changes to an Ansible collection, run this Skill to validate code style and catch lint violations locally so CI pipelines pass on the first attempt. ## Quick Start Run the tox linters on my Ansible collection in the current directory and tell me which checks failed.