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

Cache Capy desktop pet preview

Cache Capy is ready for Codex

Install:

Installed to

pet.json339 BVerified
spritesheet.png715.7 KBReady
codexpetdb:~$ npx codexpetdb install 'cache-capy' Fetching the verified package… SHA-256 verified. pet.json checked. Installed to ~/.codex/pets/cache-capy Cache Capy is ready for Codex.
Package version
r1
Package size
716.2 KB
SHA-256
67d99121ab5ff7a513cf25ac3c0481e4850e1c04c307a1afcdab48b939915102

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/019f96f3-62a2-701e-bfd1-f13ef6b43586/cache-capy.zip' -o "$TMP/cache-capy.zip"
EXPECTED_SHA256='67d99121ab5ff7a513cf25ac3c0481e4850e1c04c307a1afcdab48b939915102'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/cache-capy.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
  rm -f "$TMP/cache-capy.zip"
  echo 'SHA-256 mismatch; package was not extracted.' >&2
  exit 1
fi
mkdir -p ~/.codex/pets/cache-capy
unzip -oq "$TMP/cache-capy.zip" -d ~/.codex/pets/cache-capy