Skip to main content
CODEX PETS
Deep-scan scout

ADD TO CODEXScorpio · Redstinger

Spot quiet signals

CODEX DESKTOP

CODEX INSTALL

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

View request and source
Cloudflare CDN · 1a559b86SHA-256 · 2f20c1d00b195ae4d2252a53bd46939ed9487e8ca058d132e7ab3fd157c3a98b
Install the ZIP manually
Scorpio · RedstingerZIP · 3.1 MB
Download ZIP
  1. Unzip it, then move the complete “scorpio-stingtalon-duck” 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 = "scorpio-stingtalon-duck"
$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.