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
Ding Ding is ready for Codex
Install:
Installed to
pet.json395 BVerifiedVerifiedspritesheet.png1.2 MBReadyReady- Package version
- r1
- Package size
- 1.2 MB
- SHA-256
- 12b225e509f8361fe7316ce592d42389c07b2178569414568ab21d66ff287e15
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/019f97a5-ae79-748b-83a0-6631c102e180/ding-ding.zip' -o "$TMP/ding-ding.zip"
EXPECTED_SHA256='12b225e509f8361fe7316ce592d42389c07b2178569414568ab21d66ff287e15'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/ding-ding.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/ding-ding.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/ding-ding
unzip -oq "$TMP/ding-ding.zip" -d ~/.codex/pets/ding-ding