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 Manekina is ready for Codex
Install:
Installed to
pet.json444 BVerifiedVerifiedspritesheet.png616.9 KBReadyReady- Package version
- r2
- Package size
- 617.6 KB
- SHA-256
- 8bc9a9e2807ee35d44dbaf6cfd5c0ddc0689a4605236c8ea3cadaf6421f26514
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/019f89b3-860e-7583-85e3-991882e0e458/gi-manekina.zip' -o "$TMP/gi-manekina.zip"
EXPECTED_SHA256='8bc9a9e2807ee35d44dbaf6cfd5c0ddc0689a4605236c8ea3cadaf6421f26514'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-manekina.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-manekina.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-manekina
unzip -oq "$TMP/gi-manekina.zip" -d ~/.codex/pets/gi-manekina