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

Bellylaugh desktop pet preview

Bellylaugh is ready for Codex

Install:

Installed to

pet.json415 BVerified
spritesheet.png832.6 KBReady
codexpetdb:~$ npx codexpetdb install 'bellylaugh' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/bellylaugh Bellylaugh is ready for Codex.
Package version
r1
Package size
833.2 KB
SHA-256
3a14dc1b75fb17fccdf9ae7ff2ae9338a768fdf0fb9f9f41bd87177fcb43c73f

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/019f87cc-93d1-7294-bbea-4fac24601baa/bellylaugh.zip' -o "$TMP/bellylaugh.zip"
EXPECTED_SHA256='3a14dc1b75fb17fccdf9ae7ff2ae9338a768fdf0fb9f9f41bd87177fcb43c73f'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/bellylaugh.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/bellylaugh.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/bellylaugh
unzip -oq "$TMP/bellylaugh.zip" -d ~/.codex/pets/bellylaugh