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
Eve is ready for Codex
Install:
Installed to
pet.json377 BVerifiedVerifiedspritesheet.png1.6 MBReadyReady- Package version
- r1
- Package size
- 1.6 MB
- SHA-256
- 995d7a3da246ddb1e8530b66504ca36f29fc5aa09e5266166e49eda020a20e0b
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/019f97db-922f-75ab-a601-294c7751b160/eve.zip' -o "$TMP/eve.zip"
EXPECTED_SHA256='995d7a3da246ddb1e8530b66504ca36f29fc5aa09e5266166e49eda020a20e0b'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/eve.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/eve.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/eve
unzip -oq "$TMP/eve.zip" -d ~/.codex/pets/eve