Skip to main content
CODEX PETS
Steady guard

ADD TO CODEXTaurus · Goldguard

Work at a steady pace

CODEX DESKTOP

CODEX INSTALL

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

View request and source
Cloudflare CDN · 1a559b86SHA-256 · 97022e7eb11f347dd196cc12f50d0ff03b3ca54736813869e12677d4c3dfcfb5
Install the ZIP manually
Taurus · GoldguardZIP · 3.2 MB
Download ZIP
  1. Unzip it, then move the complete “taurus-bullguard-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 = "taurus-bullguard-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.