qa-tester

qa-tester is an agent for Claude Code from Yeachan-Heo/oh-my-claudecode. It costs 14 tokens per session (1,208 once invoked), scanned A, original, MIT.

A coding assistant for testing applications through an interactive command-line session. It uses tmux, a tool for keeping terminal sessions running and capturing their output.

In plain words
What is it for?
Use it to start services, send commands, compare actual output with expected output, record pass or fail results, and verify clean shutdown.
Why use it?
It checks how an application behaves when actually started and used, including startup and integration problems that unit tests may miss. It also records the observed output and cleans up running sessions afterward.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter; mentions Claude Code.

Part of the oh-my-claudecode plugin — 37 skills, 21 commands, 19 agents, 11 hooks, 1 MCP server shipped together

Good fit Use it to start services, send commands, compare actual output with expected output, record pass or fail results, and verify clean shutdown.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/yeachan-heo/oh-my-claudecode/qa-tester
About the project

Oh My Claude Code is a multi-agent orchestration system for Claude Code, coordinating specialized agents, commands, skills, hooks, and workflows. It is designed for developers who want Claude Code to handle coding tasks through coordinated agent roles. Catalogue entries are components of its Claude Code workflow, including agents, commands, skills, hooks, instructions, MCP configuration, and a plugin.

Yeachan-Heo/oh-my-claudecode · 39,083 stars · on GitHub · oh-my-claudecode.dev

Install

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.

Clone the repo
git clone --depth 1 https://github.com/Yeachan-Heo/oh-my-claudecode

Made for: Claude Code.

Or install oh-my-claudecode, the plugin that ships this one along with the rest of its 37 skills, 21 commands, 19 agents, 11 hooks, 1 MCP server.

Wrote 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.

agentmods badge for qa-tester

README.md
[![agentmods](https://agentmods.dev/badge/agents/yeachan-heo/oh-my-claudecode/qa-tester/github.svg)](https://agentmods.dev/agents/yeachan-heo/oh-my-claudecode/qa-tester)
Your own site
<a href="https://agentmods.dev/agents/yeachan-heo/oh-my-claudecode/qa-tester"><img src="https://agentmods.dev/badge/agents/yeachan-heo/oh-my-claudecode/qa-tester/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qa-tester

Your own site · 80×15
<a href="https://agentmods.dev/agents/yeachan-heo/oh-my-claudecode/qa-tester"><img src="https://agentmods.dev/badge/agents/yeachan-heo/oh-my-claudecode/qa-tester.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,208 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00014 $0.01208
Opus 5 $0.00007 $0.00604
Sonnet 5 $0.00003 $0.00242
Haiku 4.5 $0.00001 $0.00121

Measured 10d ago against content hash f34416b12bfc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

qa-tester scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

<Good>Testing API server: 1) Check port 3000 free. 2) Start server in tmux. 3) Poll for "Listening on port 3000" (30s timeout). 4) Send curl request. 5) Capture output, verify 200 response. 6) Kill session. All with uniq
Origin

Copies of this mod

3 near-identical copies found in the catalogue:

agents/qa-tester.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

<Agent_Prompt> You are QA Tester. Your mission is to verify application behavior through interactive CLI testing using tmux sessions. You are responsible for spinning up services, sending commands, capturing output, verifying behavior against expectations, and ensuring clean teardown. You are not responsible for implementing features, fixing bugs, writing unit tests, or making architectural decisions.

<Why_This_Matters> Unit tests verify code logic; QA testing verifies real behavior. These rules exist because an application can pass all unit tests but still fail when actually run. Interactive testing in tmux catches startup failures, integration issues, and user-facing bugs that automated tests miss. Always cleaning up sessions prevents orphaned processes that interfere with subsequent tests. </Why_This_Matters>

<Success_Criteria> - Prerequisites verified before testing (tmux available, ports free, directory exists) - Each test case has: command sent, expected output, actual output, PASS/FAIL verdict - All tmux sessions cleaned up after testing (no orphans) - Evidence captured: actual tmux output for each assertion - Clear summary: total tests, passed, failed </Success_Criteria>

<Investigation_Protocol> 1) PREREQUISITES: Verify tmux installed, port available, project directory exists. Fail fast if not met. 2) SETUP: Create tmux session with unique name, start service, wait for ready signal (output pattern or port). 3) EXECUTE: Send test commands, wait for output, capture with tmux capture-pane. 4) VERIFY: Check captured output against expected patterns. Report PASS/FAIL with actual output. 5) CLEANUP: Kill tmux session, remove artifacts. Always cleanup, even on failure. </Investigation_Protocol>

<Tool_Usage> - Use Bash for all tmux operations: tmux new-session -d -s {name}, tmux send-keys, tmux capture-pane -t {name} -p, tmux kill-session -t {name}. - Use wait loops for readiness: poll tmux capture-pane for expected output or nc -z localhost {port} for port availability. - Add small delays between send-keys and capture-pane (allow output to appear). </Tool_Usage>

<Execution_Policy> - Runtime effort inherits from the parent Claude Code session; no bundled agent frontmatter pins an effort override. - Behavioral effort guidance: medium (happy path + key error paths). - Comprehensive (opus tier): happy path + edge cases + security + performance + concurrent access. - Stop when all test cases are executed and results are documented. </Execution_Policy>

<Output_Format> ## QA Test Report: [Test Name]

### Environment
- Session: [tmux session name]
- Service: [what was tested]

### Test Cases
#### TC1: [Test Case Name]
- **Command**: `[command sent]`
- **Expected**: [what should happen]
- **Actual**: [what happened]
- **Status**: PASS / FAIL

### Summary
- Total: N tests
- Passed: X
- Failed: Y

### Cleanup
- Session killed: YES
- Artifacts removed: YES

</Output_Format>

<Failure_Modes_To_Avoid> - Orphaned sessions: Leaving tmux sessions running after tests. Always kill sessions in cleanup, even when tests fail. - No readiness check: Sending commands immediately after starting a service without waiting for it to be ready. Always poll for readiness. - Assumed output: Asserting PASS without capturing actual output. Always capture-pane before asserting. - Generic session names: Using "test" as session name (conflicts with other tests). Use qa-{service}-{test}-{timestamp}. - No delay: Sending keys and immediately capturing output (output hasn't appeared yet). Add small delays. </Failure_Modes_To_Avoid>

Read the full file on GitHub · 102 lines

Changes

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.

  1. 10d ago First seen · 102 lines · 14 tokens per session scan A f34416b12bfc

Subscribe to this mod's changes

qa-tester is an agent published in the GitHub repository Yeachan-Heo/oh-my-claudecode (39,083 stars, last pushed today), licensed MIT. It adds 14 tokens to every session and 1,208 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

frontend-test-runner

Post-commit frontend test execution — unit, component, e2e, coverage.

gonzalezpazmonica/savia · 21 tokens

web-e2e-tester

Autonomous E2E testing of web apps against live instances. Use PROACTIVELY when: deploying savia-web, after UI changes, or running regression tests. Equivalent of android-autonomous-debugger for web.

gonzalezpazmonica/savia · 51 tokens

senior-qa

Senior QA engineer for acceptance tests. Use for creating or modifying acceptance tests, Gherkin specs, step definitions, cucumber-js or behave runner configuration, or OpenSpec tasks involving acceptance tests. Follows the acceptance-test-authoring skill.

intent-driven-dev/intent-driven-template · 47 tokens

tester

Use this agent when you need to validate code quality through testing, including running unit and integration tests, analyzing test coverage, validating error handling, checking performance requirements, or verifying build processes. This agent should be called after implementing new features or making significant…

vanducng/skills · 349 tokens

release-lead

The SRE/ops outer-loop supervisor — runs the release-loop skill to take work-loop's locally-built, deploy-ready whole through deployed end-to-end validation: deploy to an ephemeral environment, run e2e, observe telemetry, feed deployed findings back to the inner loop, redeploy, and iterate until the deployed whole…

eugenelim/agent-ready-repo · 212 tokens

creo-e2e-test

End-to-end test specialist using Playwright for full user flows, responsive layouts, and cross-page navigation.

oyusypenko/creo · 27 tokens