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
Gi Jahoda is ready for Codex
Install:
Installed to
pet.json367 BVerifiedVerifiedspritesheet.png807.7 KBReadyReady- Package version
- r1
- Package size
- 808.3 KB
- SHA-256
- e9ecf6019e672519fcbbe8347193f4e4e483be4bd448348408f68fbe31bd41b8
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/019f8c78-d806-70e9-ac77-9e56cd1957a6/gi-jahoda.zip' -o "$TMP/gi-jahoda.zip"
EXPECTED_SHA256='e9ecf6019e672519fcbbe8347193f4e4e483be4bd448348408f68fbe31bd41b8'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-jahoda.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-jahoda.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-jahoda
unzip -oq "$TMP/gi-jahoda.zip" -d ~/.codex/pets/gi-jahoda