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.
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.
git clone --depth 1 https://github.com/Yeachan-Heo/oh-my-claudecodeWrote 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/yeachan-heo/oh-my-claudecode/qa-tester)<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.
<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>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.00014 | $0.01208 |
| Opus 5 | $0.00007 | $0.00604 |
| Sonnet 5 | $0.00003 | $0.00242 |
| Haiku 4.5 | $0.00001 | $0.00121 |
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 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>
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.
- 10d ago First seen · 102 lines · 14 tokens per session scan A f34416b12bfc
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.
Other agents, from other repositories
frontend-test-runner
Post-commit frontend test execution — unit, component, e2e, coverage.
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.
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.
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…
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…
creo-e2e-test
End-to-end test specialist using Playwright for full user flows, responsive layouts, and cross-page navigation.