Skip to main content
CODEX PETS
Steady desk keeper

ADD TO CODEXLan Yuanyuan

Settle in steadily

CODEX DESKTOP

CODEX INSTALL

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

View request and source
Cloudflare CDN · 1a559b86SHA-256 · ca0de8be2145e64c4815d6ed39e9a8251cfc86f25c0b4fa00b82416c4f5fbf09
Install the ZIP manually
Lan YuanyuanZIP · 2.2 MB
Download ZIP
  1. Unzip it, then move the complete “cat-british-shorthair-lanyuanyuan” 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-british-shorthair-lanyuanyuan"
$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.