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
Frieren 4 is ready for Codex
Install:
Installed to
pet.json336 BVerifiedVerifiedspritesheet.png1.5 MBReadyReady- Package version
- r1
- Package size
- 1.5 MB
- SHA-256
- d1866438d5af5759d632664dd4bb9ee49ae8becc00d627f176d671371aed6431
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/019f97dd-0fb2-7364-ad7b-d161d1a21b1a/frieren-4.zip' -o "$TMP/frieren-4.zip"
EXPECTED_SHA256='d1866438d5af5759d632664dd4bb9ee49ae8becc00d627f176d671371aed6431'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/frieren-4.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/frieren-4.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/frieren-4
unzip -oq "$TMP/frieren-4.zip" -d ~/.codex/pets/frieren-4