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

Chopper desktop pet preview

Chopper is ready for Codex

Install:

Installed to

pet.json399 BVerified
spritesheet.png1.6 MBReady
codexpetdb:~$ npx codexpetdb install 'chopper' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/chopper Chopper is ready for Codex.
Package version
r1
Package size
1.6 MB
SHA-256
85d4540de42ef0aeeb96d87580e683829aad33de48f006d5222918b806264e6c

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/019f9704-17d1-7488-8549-ec3655df29bd/chopper.zip' -o "$TMP/chopper.zip"
EXPECTED_SHA256='85d4540de42ef0aeeb96d87580e683829aad33de48f006d5222918b806264e6c'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/chopper.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/chopper.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/chopper
unzip -oq "$TMP/chopper.zip" -d ~/.codex/pets/chopper