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

Gi Arlecchino is ready for Codex

Install:

Installed to

pet.json450 BVerified
spritesheet.png578.2 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-arlecchino' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-arlecchino Gi Arlecchino is ready for Codex.
Package version
r1
Package size
578.8 KB
SHA-256
92872467018ac641b09f020787869643b32cebab9d78d57f17373a49baba0381

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-dbb6-71ce-8152-d375071d2840/gi-arlecchino.zip' -o "$TMP/gi-arlecchino.zip"
EXPECTED_SHA256='92872467018ac641b09f020787869643b32cebab9d78d57f17373a49baba0381'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-arlecchino.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-arlecchino.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-arlecchino
unzip -oq "$TMP/gi-arlecchino.zip" -d ~/.codex/pets/gi-arlecchino