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

Ape Escape desktop pet preview

Ape Escape is ready for Codex

Install:

Installed to

pet.json449 BVerified
spritesheet.png714.2 KBReady
codexpetdb:~$ npx codexpetdb install 'ape-escape' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/ape-escape Ape Escape is ready for Codex.
Package version
r1
Package size
714.9 KB
SHA-256
6e75d7b23ba6a34b42738738aec0db911f5f4a10384bd19d876fdc772dcabb59

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/019f87c8-6a8b-75aa-8287-ac4f508d58d5/ape-escape.zip' -o "$TMP/ape-escape.zip"
EXPECTED_SHA256='6e75d7b23ba6a34b42738738aec0db911f5f4a10384bd19d876fdc772dcabb59'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/ape-escape.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/ape-escape.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/ape-escape
unzip -oq "$TMP/ape-escape.zip" -d ~/.codex/pets/ape-escape