For AI agents: the complete documentation index is available at https://a3s-lab.github.io/Test/v0.16.2/llms.txt, the full documentation bundle is available at https://a3s-lab.github.io/Test/v0.16.2/llms-full.txt, and this page is available as Markdown at https://a3s-lab.github.io/Test/v0.16.2/guide/installation.md.
历史版本

本页记录 v0.16.2。请切换到当前版本查看最新指引。

安装与升级

执行下方命令后,你会同时得到 A3S Test CLI 和版本匹配的 Agent Skill。安装器会识别当前系统、下载预编译包并校验 SHA-256。以后运行同一条命令即可升级。

macOS 与 Linux

curl -fsSL https://github.com/A3S-Lab/Test/releases/latest/download/install.sh | sh

只为 Codex 安装 Skill:

curl -fsSL https://github.com/A3S-Lab/Test/releases/latest/download/install.sh |
  sh -s -- --agent codex

固定版本:

curl -fsSL https://github.com/A3S-Lab/Test/releases/latest/download/install.sh |
  sh -s -- --version v0.16.2

Windows PowerShell

& ([scriptblock]::Create((irm 'https://github.com/A3S-Lab/Test/releases/latest/download/install.ps1')))

指定 Agent 或版本:

& ([scriptblock]::Create((irm 'https://github.com/A3S-Lab/Test/releases/latest/download/install.ps1'))) -Agent codex
& ([scriptblock]::Create((irm 'https://github.com/A3S-Lab/Test/releases/latest/download/install.ps1'))) -Version v0.16.2

支持的 Agent 目标

工具参数值默认用户级目录
A3S Codea3s-code~/.a3s/skills
Codexcodex~/.codex/skills
Claude Codeclaude-code~/.claude/skills
Cursorcursor~/.cursor/skills
Gemini CLIgemini-cli~/.gemini/skills
GitHub Copilot CLIgithub-copilot~/.copilot/skills
OpenCodeopencode~/.config/opencode/skills
Clinecline~/.cline/skills
Roo Coderoo~/.roo/skills
Windsurfwindsurf~/.codeium/windsurf/skills
Agent Skills 兼容工具universal~/.agents/skills

auto 只安装到检测到的工具,没有命中时回退到通用目录。all 安装到所有目标。安装器也支持 --skill-only--cli-only--install-dir--skill-dir,PowerShell 使用对应的 PascalCase 参数。

其他安装方式

从 Git 标签构建 CLI:

cargo install --git https://github.com/A3S-Lab/Test \
  --tag v0.16.2 --locked a3s-test-cli

每个发布还包含可手动安装的 a3s-test.skill、各平台归档、校验文件、Test Kit 包和 Linux runner 镜像引用。不要跳过校验文件或用未固定的镜像标签代替发布的 digest。