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

Install result preview
Gi Lauma is ready for Codex
Install:
Installed to
pet.json359 BVerifiedVerifiedspritesheet.png849.0 KBReadyReady- 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