Getting Started
testerarmy (alias ta) is an agent-first QA runner. It works standalone for interactive use or as a skill for coding agents like Claude Code, Codex, and OpenCode.
Your coding agent spawns testing agents to validate changes - keeping the feedback loop tight without polluting main agent context.
Install
npm install -g testerarmyOr use without installing:
npx testerarmy --helpBoth testerarmy and ta map to the same CLI.
Agent skill (recommended)
If you use a coding agent, install the official skill for tighter integration:
npx skills add tester-army/cliThis gives your agent structured instructions for running tests, interpreting results, and iterating on failures.
Repository: github.com/tester-army/cli
Authenticate
Run ta auth and paste your API key when prompted:
ta authGet your key from the TesterArmy dashboard under Team Settings → API Keys.
You can also pass the key directly:
ta auth --api-key YOUR_KEYOr set it as an environment variable (useful for CI):
export TESTERARMY_API_KEY="YOUR_KEY"Verify
ta statusUse --json for machine-readable output:
ta status --jsonSign out
ta signout
# or
ta logout