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

Furina desktop pet preview

Furina is ready for Codex

Install:

Installed to

pet.json368 BVerified
spritesheet.png1.4 MBReady
codexpetdb:~$ npx codexpetdb install 'furina' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/furina Furina is ready for Codex.
Package version
r1
Package size
1.4 MB
SHA-256
d09ef49a29b5f2028b3951bc76696da853e55f11874e20db38e32a4ff143ed76

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/019f97dd-a0c2-725b-8f76-ab840ad38494/furina.zip' -o "$TMP/furina.zip"
EXPECTED_SHA256='d09ef49a29b5f2028b3951bc76696da853e55f11874e20db38e32a4ff143ed76'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/furina.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/furina.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/furina
unzip -oq "$TMP/furina.zip" -d ~/.codex/pets/furina