perl-lint
Installation
SKILL.md
Perl Linting and Formatting
Run Perl::Critic analysis and perltidy formatting with automatic tool detection.
Workflow
- Check if perlcritic/perltidy are installed
- Run analysis on specified files
- Report findings with severity levels
- Suggest fixes or format code
Tool Detection
First, verify tools are available:
# Check perlcritic
command -v perlcritic >/dev/null && echo "perlcritic available" || echo "Install: cpanm Perl::Critic"