What problem does it solve? Code style drifts when linting depends on developers remembering to run tools manually. This Skill sets up linters and formatters for PowerShell, PHP, Python, Terraform, and JavaScript, then wires them into a path-scoped verification gate so checks run automatically on every relevant change. ## Core Features & Use Cases - Per-language tool setup: Install and configure ruff and mypy for Python, PSScriptAnalyzer for PowerShell, phpstan and phpcs for PHP, terraform fmt/validate/tflint for Terraform, and ESLint with Prettier for JavaScript. - Verification gate wiring: Add path-scoped rules to .crew/verify.json so a Python change never waits on terraform init. - Legacy debt baselining: Freeze existing findings with ruff per-file ignores, phpstan baselines, or PSScriptAnalyzer settings so the gate starts green and debt burns down as separate tickets. - Use Case: A team inherits a legacy PHP codebase with no style enforcement. Use this Skill to install phpstan at level 1, generate a baseline, and add a gate rule that fails only on new findings. ## Quick Start Set up linting for my Python and Terraform project and wire the checks into the verification gate.