Run tests with AI-powered analysis and clean summarized output. Use this as the DEFAULT way to run test suites (pytest, jest, go test, make test, npm test, etc.) to keep conversation context clean. ATR analyzes the full output and returns a concise summary of results, highlighting any failures with actionable insights. Also useful for analyzing build failures and debugging command errors.
View on GitHubimyousuf/agentic-test-runner
atr-skills
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/imyousuf/agentic-test-runner/blob/main/skills/atr-analyze/SKILL.md -a claude-code --skill atr-analyzeInstallation paths:
.claude/skills/atr-analyze/# ATR Command Analysis Skill This skill runs commands through ATR (Agentic Test Runner) which provides AI-powered analysis and **clean summarized output**. Use this as your **default way to run test suites** - the AI analyzes the full output and returns a concise summary, keeping your conversation context clean and focused. ## When to Use This Skill vs Direct Commands **Use ATR analyze (RECOMMENDED DEFAULT) when:** - Running test suites (pytest, jest, go test, npm test, make test) - Running builds that produce verbose output - You want clean, summarized results instead of raw output - You want automatic failure analysis if something goes wrong **Use direct Bash commands only when:** - Running quick one-off commands with minimal output - You specifically need the raw, unprocessed output - Interactive commands that require user input ## Basic Usage ```bash atr run --cmd "<command>" ``` Examples: ```bash atr run --cmd "go test ./..." atr run --cmd "npm test" atr run --cmd "pytest tests/" atr run --cmd "make build" ``` ## Adding Context Provide context to help the AI agent focus its analysis: ```bash atr run --cmd "<command>" --context "<context>" ``` Examples: ```bash atr run --cmd "go test ./..." --context "Tests started failing after refactoring the auth module" atr run --cmd "npm run build" --context "Added new dependency yesterday" atr run --cmd "pytest" --context "Testing the new payment integration" ``` ## Command Options | Flag | Description | |------|-------------| | `--cmd <command>` | Command to execute (required) | | `--cwd <path>` | Working directory | | `--context <text>` | Additional context for AI agent | | `--model flash\|pro` | Model tier (flash=fast, pro=deep analysis) | | `--python-venv <path>` | Python virtual environment path | | `--nvm-version <version>` | Node.js version via nvm | | `--no-auto-env` | Disable automatic environment detection | ## Working Directory Specify where to run the command: ```bash atr run --cmd "npm test" --