Pet download and install
Install a Codex pet in one command.
Choose a pet, copy one verified command, and CodexPetDB handles the package safely.
Install result preview

Install result preview
Gi Gaming is ready for Codex
Install:
Installed to
pet.json395 BVerifiedVerifiedspritesheet.png1.1 MBReadyReady- Package version
- r1
- Package size
- 1.1 MB
- SHA-256
- f00be7bb6d324a870fd6e3cd391500526d34da24e9fbd4e9675314f6187c0826
Other installation methods
Choose the path that fits your workflow.
curl
Scripts and remote shells on macOS, Linux, or Windows.
set -e
TMP="${TMPDIR:-/tmp}"
curl -fL 'https://cdn.codexpetdb.com/revisions/019f8c77-da6a-771f-bd64-21b7dda6eab5/gi-gaming.zip' -o "$TMP/gi-gaming.zip"
EXPECTED_SHA256='f00be7bb6d324a870fd6e3cd391500526d34da24e9fbd4e9675314f6187c0826'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-gaming.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-gaming.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-gaming
unzip -oq "$TMP/gi-gaming.zip" -d ~/.codex/pets/gi-gaming