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

Gi Chiori is ready for Codex

Install:

Installed to

pet.json346 BVerified
spritesheet.png1011.0 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-chiori' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-chiori Gi Chiori is ready for Codex.
Package version
r1
Package size
1011.6 KB
SHA-256
b33e8b3fca0f9bc0bebd31f6bfb5638f8aca50a280aa1dd747d0649329474391

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/019f8c75-47f1-731a-804f-3435e50bcb83/gi-chiori.zip' -o "$TMP/gi-chiori.zip"
EXPECTED_SHA256='b33e8b3fca0f9bc0bebd31f6bfb5638f8aca50a280aa1dd747d0649329474391'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-chiori.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-chiori.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-chiori
unzip -oq "$TMP/gi-chiori.zip" -d ~/.codex/pets/gi-chiori