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 Chevreuse is ready for Codex
Install:
Installed to
pet.json448 BVerifiedVerifiedspritesheet.png726.1 KBReadyReady- Package version
- r1
- Package size
- 726.8 KB
- SHA-256
- f3972517521672f1a5fb5d06b4b553200dfdf88e0148f85c881b73dbc9bec7bf
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/019f8c75-004d-7711-b2e6-264fe6d28d3e/gi-chevreuse.zip' -o "$TMP/gi-chevreuse.zip"
EXPECTED_SHA256='f3972517521672f1a5fb5d06b4b553200dfdf88e0148f85c881b73dbc9bec7bf'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-chevreuse.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-chevreuse.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-chevreuse
unzip -oq "$TMP/gi-chevreuse.zip" -d ~/.codex/pets/gi-chevreuse