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 Ineffa desktop pet preview

Gi Ineffa is ready for Codex

Install:

Installed to

pet.json438 BVerified
spritesheet.png824.4 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-ineffa' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-ineffa Gi Ineffa is ready for Codex.
Package version
r2
Package size
825.1 KB
SHA-256
c278705518a21cf959ec164d4f5e349af64079326e302a9bc31c87f4e4e4664f

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/019f8c95-0fb6-7419-9272-df9ab6530c5a/gi-ineffa.zip' -o "$TMP/gi-ineffa.zip"
EXPECTED_SHA256='c278705518a21cf959ec164d4f5e349af64079326e302a9bc31c87f4e4e4664f'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-ineffa.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-ineffa.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-ineffa
unzip -oq "$TMP/gi-ineffa.zip" -d ~/.codex/pets/gi-ineffa