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
Corsair Cat is ready for Codex
Install:
Installed to
pet.json351 BVerifiedVerifiedspritesheet.png703.2 KBReadyReady- Package version
- r1
- Package size
- 703.8 KB
- SHA-256
- e44e815769aa1b1123d62be2ab0fbcaaffb7ec4367413c778dab373fe2844af7
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/019f97a3-13d2-7571-a817-00b803d1bcf1/corsair-cat.zip' -o "$TMP/corsair-cat.zip"
EXPECTED_SHA256='e44e815769aa1b1123d62be2ab0fbcaaffb7ec4367413c778dab373fe2844af7'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/corsair-cat.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/corsair-cat.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/corsair-cat
unzip -oq "$TMP/corsair-cat.zip" -d ~/.codex/pets/corsair-cat