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
Angry Cat is ready for Codex
Install:
Installed to
pet.json399 BVerifiedVerifiedspritesheet.png824.1 KBReadyReady- Package version
- r2
- Package size
- 824.7 KB
- SHA-256
- 38dce4268fcdb749d62abb393fba9589441daf0815f676dd49e88eff89812a0e
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/019f8449-e452-7263-b1fb-0f7373572ea2/angry-cat.zip' -o "$TMP/angry-cat.zip"
EXPECTED_SHA256='38dce4268fcdb749d62abb393fba9589441daf0815f676dd49e88eff89812a0e'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/angry-cat.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/angry-cat.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/angry-cat
unzip -oq "$TMP/angry-cat.zip" -d ~/.codex/pets/angry-cat