Skip to main content
CODEX PETS
Warm-seat companion

ADD TO CODEXYueguang

Stay close and warm

CODEX DESKTOP

CODEX INSTALL

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

View request and source
Cloudflare CDN · 1a559b86SHA-256 · bee2d515af16542e094d0410dd7f91b65cc1802e99de0aa345202d0b2e65441d
Install the ZIP manually
YueguangZIP · 2.2 MB
Download ZIP
  1. Unzip it, then move the complete “cat-sphynx-yueguang” 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-sphynx-yueguang"
$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.