perl-development
Installation
SKILL.md
Modern Perl 5.30+ Development
Procedural guidance for writing secure, maintainable Perl scripts following modern best practices.
Essential Script Header
Every Perl script MUST begin with these elements:
#!/usr/bin/env perl
use strict;
use warnings;
use autodie;
Pragma purposes: