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

Aurelion Sol 2 desktop pet preview

Aurelion Sol 2 is ready for Codex

Install:

Installed to

pet.json391 BVerified
spritesheet.png1.7 MBReady
codexpetdb:~$ npx codexpetdb install 'aurelion-sol-2' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/aurelion-sol-2 Aurelion Sol 2 is ready for Codex.
Package version
r1
Package size
1.7 MB
SHA-256
4ddcca1db63d806f2a858a8e19222f8f312da7242e2f0101301935bfcec1584b

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/019f88f9-bc35-70cd-9f3d-db2dd73deb0f/aurelion-sol-2.zip' -o "$TMP/aurelion-sol-2.zip"
EXPECTED_SHA256='4ddcca1db63d806f2a858a8e19222f8f312da7242e2f0101301935bfcec1584b'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/aurelion-sol-2.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/aurelion-sol-2.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/aurelion-sol-2
unzip -oq "$TMP/aurelion-sol-2.zip" -d ~/.codex/pets/aurelion-sol-2