Skip to content

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

Dundun desktop pet preview

Dundun is ready for Codex

Install:

Installed to

pet.json381 BVerified
spritesheet.png1.1 MBReady
codexpetdb:~$ npx codexpetdb install 'dundun' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/dundun Dundun is ready for Codex.
Package version
r1
Package size
1.1 MB
SHA-256
3a87d04b4ad7f222b1f3f948a845e44e1b2f291ec9869530b11630b0c7d385b5

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/019f97ca-2372-7374-8005-2085ad03e4c4/dundun.zip' -o "$TMP/dundun.zip"
EXPECTED_SHA256='3a87d04b4ad7f222b1f3f948a845e44e1b2f291ec9869530b11630b0c7d385b5'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/dundun.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/dundun.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/dundun
unzip -oq "$TMP/dundun.zip" -d ~/.codex/pets/dundun