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

Da Zhuang 2 desktop pet preview

Da Zhuang 2 is ready for Codex

Install:

Installed to

pet.json460 BVerified
spritesheet.png924.1 KBReady
codexpetdb:~$ npx codexpetdb install 'da-zhuang-2' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/da-zhuang-2 Da Zhuang 2 is ready for Codex.
Package version
r1
Package size
924.7 KB
SHA-256
88b2dcfc37b95d6354cbf94da08bb7cbe64ed2e50ccc187cba1f3ef81166cbfa

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-3183-7609-ae77-cd68ef99bb62/da-zhuang-2.zip' -o "$TMP/da-zhuang-2.zip"
EXPECTED_SHA256='88b2dcfc37b95d6354cbf94da08bb7cbe64ed2e50ccc187cba1f3ef81166cbfa'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/da-zhuang-2.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/da-zhuang-2.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/da-zhuang-2
unzip -oq "$TMP/da-zhuang-2.zip" -d ~/.codex/pets/da-zhuang-2