Skip to main content
CODEX PETS
Quick-response tracker

ADD TO CODEXJinbao

Catch up fast

CODEX DESKTOP

CODEX INSTALL

Copy this request, then paste and send it in Codex.

View request and source
Cloudflare CDN · 1a559b86SHA-256 · 2dd3a5b7b0c42e86787fec7b4314af3e82fdfd5bc859e22b8ff4f7dac5e64f1d
Install the ZIP manually
JinbaoZIP · 2.7 MB
Download ZIP
  1. Unzip it, then move the complete “cat-bengal-jinbao” folder into Codex’s pets folder.
  2. Fully quit Codex Desktop, then reopen it.
Command-line install (advanced)

The command stops if the target folder already exists and never overwrites silently. Confirm the ZIP is in Downloads before running it.

$petId = "cat-bengal-jinbao"
$codexRoot = if ($env:CODEX_HOME) { $env:CODEX_HOME } else { Join-Path $env:USERPROFILE ".codex" }
$petsRoot = Join-Path $codexRoot "pets"
$target = Join-Path $petsRoot $petId
$archive = Join-Path $env:USERPROFILE "Downloads\$petId.zip"

if (Test-Path -LiteralPath $target) { throw "$petId already exists. Stop and review it before replacing anything." }
New-Item -ItemType Directory -Force -Path $petsRoot | Out-Null
Expand-Archive -LiteralPath $archive -DestinationPath $petsRoot

Before running, confirm the ZIP is in your Downloads folder. Fully quit and reopen Codex Desktop after installation.