跳到主要内容
CODEX PETS
双线谋士

带回 CODEX双子·镜辉

换个角度想

CODEX DESKTOP

用 Codex 安装

复制这段话,回到 Codex 粘贴并发送。

查看安装指令与来源
Cloudflare CDN · 1a559b86SHA-256 · 7ce452af8771f844f0caad8285573fc39ef172bf8af80776c34773f3735760e5
手动安装 ZIP
双子·镜辉ZIP · 3.0 MB
下载 ZIP
  1. 解压后,把完整的「gemini-twincrest-duck」文件夹放进 Codex 的 pets 目录。
  2. 完整退出 Codex Desktop,再重新打开。
命令行安装(高级)

命令会在目标目录已存在时停止,不会静默覆盖。运行前确认 ZIP 在 Downloads 文件夹。

$petId = "gemini-twincrest-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

执行前先确认 ZIP 已下载到系统的 Downloads 文件夹。安装后完整退出并重新打开 Codex Desktop。