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

Douyin Labubu desktop pet preview

Douyin Labubu is ready for Codex

Install:

Installed to

pet.json425 BVerified
spritesheet.png814.4 KBReady
codexpetdb:~$ npx codexpetdb install 'douyin-labubu' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/douyin-labubu Douyin Labubu is ready for Codex.
Package version
r1
Package size
815.1 KB
SHA-256
3702ac50bb1e238e48b564b69990792e3b161dba143918bf2ec1db1e4fd3dda9

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/019f97c9-81ec-7559-9b44-dd198b078214/douyin-labubu.zip' -o "$TMP/douyin-labubu.zip"
EXPECTED_SHA256='3702ac50bb1e238e48b564b69990792e3b161dba143918bf2ec1db1e4fd3dda9'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/douyin-labubu.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/douyin-labubu.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/douyin-labubu
unzip -oq "$TMP/douyin-labubu.zip" -d ~/.codex/pets/douyin-labubu