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 Linnea is ready for Codex
Install:
Installed to
pet.json348 BVerifiedVerifiedspritesheet.png861.3 KBReadyReady- Package version
- r1
- Package size
- 861.9 KB
- SHA-256
- 589b817cea46097bb22c192a3239848918ca26d32612c60da5d68cf38064b28e
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/019f89b1-6260-72ee-90dc-d3b2159b96e8/gi-linnea.zip' -o "$TMP/gi-linnea.zip"
EXPECTED_SHA256='589b817cea46097bb22c192a3239848918ca26d32612c60da5d68cf38064b28e'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-linnea.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/gi-linnea.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/gi-linnea
unzip -oq "$TMP/gi-linnea.zip" -d ~/.codex/pets/gi-linnea