in reply to Accessing CGI::Cookie->fetch in package

Just make your cookie hash a package global.
use vars qw(%cookie); require CGI::Cookie; %cookie = CGI::Cookie->fetch;
Now you can get to it as %Package::cookie.

Makeshifts last the longest.