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
Asterix is ready for Codex
Install:
Installed to
pet.json318 BVerifiedVerifiedspritesheet.png858.1 KBReadyReady- Package version
- r1
- Package size
- 858.7 KB
- SHA-256
- 3a72e3785dfdf5d3eca6878a483922175f271fdf4bff0285cc4e32a13d0db8a9
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-fff8-7069-bf0a-2b1d14dce9d3/asterix.zip' -o "$TMP/asterix.zip"
EXPECTED_SHA256='3a72e3785dfdf5d3eca6878a483922175f271fdf4bff0285cc4e32a13d0db8a9'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/asterix.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/asterix.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/asterix
unzip -oq "$TMP/asterix.zip" -d ~/.codex/pets/asterix