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

Angry Cat desktop pet preview

Angry Cat is ready for Codex

Install:

Installed to

pet.json399 BVerified
spritesheet.png824.1 KBReady
codexpetdb:~$ npx codexpetdb install 'angry-cat' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/angry-cat Angry Cat is ready for Codex.
Package version
r2
Package size
824.7 KB
SHA-256
38dce4268fcdb749d62abb393fba9589441daf0815f676dd49e88eff89812a0e

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/019f8449-e452-7263-b1fb-0f7373572ea2/angry-cat.zip' -o "$TMP/angry-cat.zip"
EXPECTED_SHA256='38dce4268fcdb749d62abb393fba9589441daf0815f676dd49e88eff89812a0e'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/angry-cat.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/angry-cat.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/angry-cat
unzip -oq "$TMP/angry-cat.zip" -d ~/.codex/pets/angry-cat