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
Bocchi Guitar is ready for Codex
Install:
Installed to
pet.json348 BVerifiedVerifiedspritesheet.png777.0 KBReadyReady- Package version
- r1
- Package size
- 777.6 KB
- SHA-256
- 38d1c214a53f13cd0142ac62cacd6402c580a5582ac7a7ae548a04c855f17e88
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/019f87d4-b37d-7137-bb47-620dc1a60b46/bocchi-guitar.zip' -o "$TMP/bocchi-guitar.zip"
EXPECTED_SHA256='38d1c214a53f13cd0142ac62cacd6402c580a5582ac7a7ae548a04c855f17e88'
ACTUAL_SHA256="$(shasum -a 256 "$TMP/bocchi-guitar.zip" | awk '{print $1}')"
if [ "$ACTUAL_SHA256" != "$EXPECTED_SHA256" ]; then
rm -f "$TMP/bocchi-guitar.zip"
echo 'SHA-256 mismatch; package was not extracted.' >&2
exit 1
fi
mkdir -p ~/.codex/pets/bocchi-guitar
unzip -oq "$TMP/bocchi-guitar.zip" -d ~/.codex/pets/bocchi-guitar