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 Lan Yan is ready for Codex
Install:
Installed to
pet.json382 BVerifiedVerifiedspritesheet.png861.2 KBReadyReady- Package version
- r1
- Package size
- 861.8 KB
- SHA-256
- f821e89ebb1eecbb9ef3d3f7b879577c6cfe0177381997dce930f4f06a3b32cb
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/019f8c79-fc82-72cd-94c8-fd50e65cf1fd/gi-lan-yan.zip' -o "$TMP/gi-lan-yan.zip"
EXPECTED_SHA256='f821e89ebb1eecbb9ef3d3f7b879577c6cfe0177381997dce930f4f06a3b32cb'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-lan-yan.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-lan-yan.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-lan-yan
unzip -oq "$TMP/gi-lan-yan.zip" -d ~/.codex/pets/gi-lan-yan