in reply to honegrown module placement

Personally I would package the modules using standard CPAN tools, but simply not upload them to CPAN; keep the packages in a local archive.

For bonus points though, manage that local archive with Pinto, providing you with a CPAN-like repository so that standard CPAN clients (e.g. cpanm) can install them without any hassles.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name