Skip to main content
CODEX PETS
Official site guide

ADD TO CODEXStar-Armor Tuantuan

It waits at the star-route entrance and remembers every companion’s story. Give it a tap and it will wave hello.

CODEX DESKTOP

CODEX INSTALL

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

View request and source
Cloudflare CDN · 1a559b86SHA-256 · 5e3766f059eeb89ec023a96c148023849f1ef3dfcad525a823f4521cf2a6562b
Install the ZIP manually
Star-Armor TuantuanZIP · 2.8 MB
Download ZIP
  1. Unzip it, then move the complete “star-armor-tuantuan” 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 = "star-armor-tuantuan"
$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.