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

Cinder desktop pet preview

Cinder is ready for Codex

Install:

Installed to

pet.json357 BVerified
spritesheet.png817.5 KBReady
codexpetdb:~$ npx codexpetdb install 'cinder' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/cinder Cinder is ready for Codex.
Package version
r1
Package size
818.0 KB
SHA-256
c2220272ad88e83caa92610c982d2bbe36378dbd250cba3ef63bf5c44b1ef541

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/019f9704-c75c-708c-a61b-099736335066/cinder.zip' -o "$TMP/cinder.zip"
EXPECTED_SHA256='c2220272ad88e83caa92610c982d2bbe36378dbd250cba3ef63bf5c44b1ef541'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/cinder.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/cinder.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/cinder
unzip -oq "$TMP/cinder.zip" -d ~/.codex/pets/cinder