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
Beerus is ready for Codex
Install:
Installed to
pet.json390 BVerifiedVerifiedspritesheet.png973.9 KBReadyReady- Package version
- r1
- Package size
- 974.5 KB
- SHA-256
- 758268043a5272afe85b5e96f17499165b49cbaa9415e35808185e8e93c82339
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/019f87cc-418c-74c8-9018-7f0cb355c26f/beerus.zip' -o "$TMP/beerus.zip"
EXPECTED_SHA256='758268043a5272afe85b5e96f17499165b49cbaa9415e35808185e8e93c82339'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/beerus.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/beerus.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/beerus
unzip -oq "$TMP/beerus.zip" -d ~/.codex/pets/beerus