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

Gi Lauma desktop pet preview

Gi Lauma is ready for Codex

Install:

Installed to

pet.json359 BVerified
spritesheet.png849.0 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-lauma' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-lauma Gi Lauma is ready for Codex.
Package version
r2
Package size
849.5 KB
SHA-256
e52b9873ff3bd8085239c6454fdacadf2551db12671f8f1a1ec369789c7408ec

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/019f8c93-7090-7462-be9b-f84cda6220b8/gi-lauma.zip' -o "$TMP/gi-lauma.zip"
EXPECTED_SHA256='e52b9873ff3bd8085239c6454fdacadf2551db12671f8f1a1ec369789c7408ec'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-lauma.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-lauma.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-lauma
unzip -oq "$TMP/gi-lauma.zip" -d ~/.codex/pets/gi-lauma