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

Danny desktop pet preview

Danny is ready for Codex

Install:

Installed to

pet.json398 BVerified
spritesheet.png930.1 KBReady
codexpetdb:~$ npx codexpetdb install 'danny' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/danny Danny is ready for Codex.
Package version
r1
Package size
930.7 KB
SHA-256
43de1819486b619d5a01e168a416d62e085ae7624c614e4f6b86e856af7d054d

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/019f97a4-911e-712f-94e0-ccbbd94c9671/danny.zip' -o "$TMP/danny.zip"
EXPECTED_SHA256='43de1819486b619d5a01e168a416d62e085ae7624c614e4f6b86e856af7d054d'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/danny.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/danny.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/danny
unzip -oq "$TMP/danny.zip" -d ~/.codex/pets/danny