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 Charlotte is ready for Codex
Install:
Installed to
pet.json307 BVerifiedVerifiedspritesheet.png815.4 KBReadyReady- Package version
- r1
- Package size
- 815.9 KB
- SHA-256
- 92d97b0006ccc445ba3a5152ba47cd9043be4131fec79f135d27a4808031ac2c
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/019f8c74-b91e-72ca-8048-23e161ad33f0/gi-charlotte.zip' -o "$TMP/gi-charlotte.zip"
EXPECTED_SHA256='92d97b0006ccc445ba3a5152ba47cd9043be4131fec79f135d27a4808031ac2c'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-charlotte.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-charlotte.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-charlotte
unzip -oq "$TMP/gi-charlotte.zip" -d ~/.codex/pets/gi-charlotte