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

Doraemon desktop pet preview

Doraemon is ready for Codex

Install:

Installed to

pet.json381 BVerified
spritesheet.png1.5 MBReady
codexpetdb:~$ npx codexpetdb install 'doraemon' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/doraemon Doraemon is ready for Codex.
Package version
r1
Package size
1.5 MB
SHA-256
753d466551e59d687329b764eb280bc892b3e2c418e1ddd219b168869035450f

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/019f97c8-7d98-7158-bfce-f9818a13edc0/doraemon.zip' -o "$TMP/doraemon.zip"
EXPECTED_SHA256='753d466551e59d687329b764eb280bc892b3e2c418e1ddd219b168869035450f'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/doraemon.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/doraemon.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/doraemon
unzip -oq "$TMP/doraemon.zip" -d ~/.codex/pets/doraemon