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
Bee Teemo is ready for Codex
Install:
Installed to
pet.json351 BVerifiedVerifiedspritesheet.png1.1 MBReadyReady- Package version
- r1
- Package size
- 1.1 MB
- SHA-256
- 8a767ea746701d06a9be70d4876b049eec518fa74d9934a07c826d23570ed59d
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/019f87cb-fb4a-739c-8f0f-bae3c5ffbfb2/bee-teemo.zip' -o "$TMP/bee-teemo.zip"
EXPECTED_SHA256='8a767ea746701d06a9be70d4876b049eec518fa74d9934a07c826d23570ed59d'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/bee-teemo.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/bee-teemo.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/bee-teemo
unzip -oq "$TMP/bee-teemo.zip" -d ~/.codex/pets/bee-teemo