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

Gi Alhaitham desktop pet preview

Gi Alhaitham is ready for Codex

Install:

Installed to

pet.json458 BVerified
spritesheet.png804.2 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-alhaitham' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-alhaitham Gi Alhaitham is ready for Codex.
Package version
r1
Package size
804.9 KB
SHA-256
90e3b8427f80616b8ec48d2fa5c1c2ac8c1f6c7389dab5aa4874dd4729f6162b

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/019f8c73-6cb1-761c-9821-d2e1dd7ad9b1/gi-alhaitham.zip' -o "$TMP/gi-alhaitham.zip"
EXPECTED_SHA256='90e3b8427f80616b8ec48d2fa5c1c2ac8c1f6c7389dab5aa4874dd4729f6162b'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-alhaitham.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-alhaitham.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-alhaitham
unzip -oq "$TMP/gi-alhaitham.zip" -d ~/.codex/pets/gi-alhaitham