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
Aoi is ready for Codex
Install:
Installed to
pet.json339 BVerifiedVerifiedspritesheet.png1.0 MBReadyReady- Package version
- r1
- Package size
- 1.0 MB
- SHA-256
- 83cf051b5801d7bc179756c14c23872887d383b5a4a1002f71f0cc3d3b0a6db8
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/019f87c8-1f67-76a1-9353-1653be15a5ec/aoi.zip' -o "$TMP/aoi.zip"
EXPECTED_SHA256='83cf051b5801d7bc179756c14c23872887d383b5a4a1002f71f0cc3d3b0a6db8'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/aoi.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/aoi.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/aoi
unzip -oq "$TMP/aoi.zip" -d ~/.codex/pets/aoi