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

Da Zhuang is ready for Codex

Install:

Installed to

pet.json441 BVerified
spritesheet.png1.0 MBReady
codexpetdb:~$ npx codexpetdb install 'da-zhuang' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/da-zhuang Da Zhuang is ready for Codex.
Package version
r1
Package size
1.0 MB
SHA-256
f40cbe90aa194713d459e57447274213efc0c4a0e054624923b27cc187442ced

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