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

Gi Candace is ready for Codex

Install:

Installed to

pet.json360 BVerified
spritesheet.png1005.9 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-candace' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-candace Gi Candace is ready for Codex.
Package version
r1
Package size
1006.5 KB
SHA-256
a3bd9022ba024b4e4cf9193f4e962f21398cbb67ced1d38e184beb7dac88c004

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/019f8c74-6f05-71a3-b493-f4e4e923dbc5/gi-candace.zip' -o "$TMP/gi-candace.zip"
EXPECTED_SHA256='a3bd9022ba024b4e4cf9193f4e962f21398cbb67ced1d38e184beb7dac88c004'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-candace.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-candace.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-candace
unzip -oq "$TMP/gi-candace.zip" -d ~/.codex/pets/gi-candace