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 Prune is ready for Codex
Install:
Installed to
pet.json489 BVerifiedVerifiedspritesheet.png971.1 KBReadyReady- Package version
- r2
- Package size
- 971.8 KB
- SHA-256
- 8f153a5fa1dedcdb68dfc6191891229953b6eb03bdc66b6226e2218e175fa86e
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/019f8c9a-2278-76fa-ac7d-1d44ab7f1d71/gi-prune.zip' -o "$TMP/gi-prune.zip"
EXPECTED_SHA256='8f153a5fa1dedcdb68dfc6191891229953b6eb03bdc66b6226e2218e175fa86e'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-prune.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-prune.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-prune
unzip -oq "$TMP/gi-prune.zip" -d ~/.codex/pets/gi-prune