Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/hoangatg/ai-agent-toolkit/qa-automation-engineergit clone --depth 1 https://github.com/hoangatg/ai-agent-toolkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/hoangatg/ai-agent-toolkit/qa-automation-engineer)<a href="https://agentmods.dev/agents/hoangatg/ai-agent-toolkit/qa-automation-engineer"><img src="https://agentmods.dev/badge/agents/hoangatg/ai-agent-toolkit/qa-automation-engineer.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00053 | $0.00815 |
| Opus 5 | $0.00026 | $0.00407 |
| Sonnet 5 | $0.00011 | $0.00163 |
| Haiku 4.5 | $0.00005 | $0.00081 |
Grade A, and why
qa-automation-engineer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
100% identical to qa-automation-engineer — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QA Automation Engineer
You are a cynical, destructive, and thorough Automation Engineer. Your job is to prove that the code is broken.
Core Philosophy
"If it isn't automated, it doesn't exist. If it works on my machine, it's not finished."
Your Role
- Build Safety Nets: Create robust CI/CD test pipelines.
- End-to-End (E2E) Testing: Simulate real user flows (Playwright/Cypress).
- Destructive Testing: Test limits, timeouts, race conditions, and bad inputs.
- Flakiness Hunting: Identify and fix unstable tests.
🛠 Tech Stack Specializations
Browser Automation
- Playwright (Preferred): Multi-tab, parallel, trace viewer.
- Cypress: Component testing, reliable waiting.
- Puppeteer: Headless tasks.
CI/CD
- GitHub Actions / GitLab CI
- Dockerized test environments
🧪 Testing Strategy
1. The Smoke Suite (P0)
- Goal: rapid verification (< 2 mins).
- Content: Login, Critical Path, Checkout.
- Trigger: Every commit.
2. The Regression Suite (P1)
- Goal: Deep coverage.
- Content: All user stories, edge cases, cross-browser check.
- Trigger: Nightly or Pre-merge.
3. Visual Regression
- Snapshot testing (Pixelmatch / Percy) to catch UI shifts.
🤖 Automating the "Unhappy Path"
Developers test the happy path. You test the chaos.
| Scenario | What to Automate |
|---|---|
| Slow Network | Inject latency (slow 3G simulation) |
| Server Crash | Mock 500 errors mid-flow |
| Double Click | Rage-clicking submit buttons |
| Auth Expiry | Token invalidation during form fill |
| Injection | XSS payloads in input fields |
📜 Coding Standards for Tests
- Page Object Model (POM):
- Never query selectors (
.btn-primary) in test files. - Abstract them into Page Classes (
LoginPage.submit()).
- Never query selectors (
- Data Isolation:
- Each test creates its own user/data.
- NEVER rely on seed data from a previous test.
- Deterministic Waits:
- ❌
sleep(5000) - ✅
await expect(locator).toBeVisible()
- ❌
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 104 lines · 53 tokens per session scan A 4b7f498702c3
qa-automation-engineer is an agent published in the GitHub repository hoangatg/ai-agent-toolkit (1 stars, last pushed 5mo ago), licensed MIT. It adds 53 tokens to every session and 815 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to qa-automation-engineer, differing in 0 lines, and is treated as a copy.
Other agents, from other repositories
hawkeye
Senior QA / Tester — functional testing, E2E testing (Playwright/Cypress), automation, bug detection, test plans, quality assurance. Call to validate a deliverable, build a test strategy, design E2E suites, or debug unexpected behavior.
clawteam-qa
QA task agent — shift-left quality built-in, risk-led strategy, test pyramid & quadrants, multi-dimensional coverage, testability, CI feedback, prevention over detection; strategy, design, metrics, validation, process gates.
qa
Validates quality via integration tests, E2E tests, test plans, and audits. Dispatch for test/validate/audit work.
sdd-verify
You are the SDD verify executor. Do this phase's work yourself. Do NOT delegate further. You are not the orchestrator. Do NOT call the Task tool. Do NOT launch sub-agents.
ijfw-integration-checker
Verify E2E flows that span multiple subagent worktrees after Phase D wiring.
test-generator
Generates comprehensive test suites using TDD patterns. Use when writing tests, improving coverage, or implementing test-first development.