Skip to content

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

Gi Manekina desktop pet preview

Gi Manekina is ready for Codex

Install:

Installed to

pet.json446 BVerified
spritesheet.png630.4 KBReady
codexpetdb:~$ npx codexpetdb install 'gi-manekina-2' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/gi-manekina-2 Gi Manekina is ready for Codex.
Package version
r1
Package size
631.1 KB
SHA-256
a85152d8e9e4d1b35ab27600c7c341b997457f88bd188d63d12414b9de14e811

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/019f89b4-02f2-761b-abf3-a9a45da929b6/gi-manekina-2.zip' -o "$TMP/gi-manekina-2.zip"
EXPECTED_SHA256='a85152d8e9e4d1b35ab27600c7c341b997457f88bd188d63d12414b9de14e811'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/gi-manekina-2.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/gi-manekina-2.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/gi-manekina-2
unzip -oq "$TMP/gi-manekina-2.zip" -d ~/.codex/pets/gi-manekina-2