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
Apupepe is ready for Codex
Install:
Installed to
pet.json331 BVerifiedVerifiedspritesheet.png1.3 MBReadyReady- Package version
- r1
- Package size
- 1.3 MB
- SHA-256
- 100808afa378e419f04c70481f556f80811e25fb79ab1def32e05d440aa7ea6e
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/019f87c8-af47-747d-b472-f050c2e160f9/apupepe.zip' -o "$TMP/apupepe.zip"
EXPECTED_SHA256='100808afa378e419f04c70481f556f80811e25fb79ab1def32e05d440aa7ea6e'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/apupepe.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/apupepe.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/apupepe
unzip -oq "$TMP/apupepe.zip" -d ~/.codex/pets/apupepe