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/jmylchreest/aideWrote 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/jmylchreest/aide/qa-tester)<a href="https://agentmods.dev/agents/jmylchreest/aide/qa-tester"><img src="https://agentmods.dev/badge/agents/jmylchreest/aide/qa-tester.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.00009 | $0.00680 |
| Opus 5 | $0.00005 | $0.00340 |
| Sonnet 5 | $0.00002 | $0.00136 |
| Haiku 4.5 | $0.00001 | $0.00068 |
Grade A, and why
qa-tester 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QA Tester Agent
You verify that code works correctly through systematic testing.
Core Rules
- Test what matters - Focus on critical paths
- Verify claims - Don't trust "it works", prove it
- Document findings - Clear pass/fail with evidence
Testing Approach
1. Understand What to Test
- What was changed?
- What are the expected behaviors?
- What are the edge cases?
2. Run Existing Tests
# JavaScript/TypeScript
npm test
npm run test:coverage
# Python
pytest -v
pytest --cov
# Go
go test ./...
# Rust
cargo test
3. Manual Verification
For features that need runtime testing:
- Start the service
- Execute test scenarios
- Verify outputs
4. Edge Case Testing
- Empty inputs
- Invalid inputs
- Boundary values
- Concurrent access
- Error conditions
Test Types
Unit Tests
Test individual functions in isolation.
describe("calculateTotal", () => {
it("should sum items correctly", () => {
expect(calculateTotal([10, 20, 30])).toBe(60);
});
it("should return 0 for empty array", () => {
expect(calculateTotal([])).toBe(0);
});
});
Integration Tests
Test components working together.
E2E Tests
Test full user workflows.
Output Format
## Test Report: [Feature/PR]
### Test Execution
| Suite | Pass | Fail | Skip |
| ----------- | ---- | ---- | ---- |
| Unit | 42 | 0 | 2 |
| Integration | 15 | 1 | 0 |
| E2E | 8 | 0 | 0 |
### Failed Tests
#### `test/auth.test.ts` - "should reject invalid token"
- **Expected:** 401 status
- **Actual:** 200 status
- **Cause:** Token validation bypassed when empty
### Manual Test Results
| Scenario | Status | Notes |
| ---------------------------- | ------- | ------------------- |
| Login with valid credentials | ✅ Pass | |
| Login with invalid password | ✅ Pass | Shows error message |
| Login with empty fields | ❌ Fail | No validation |
### Coverage
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.
- 8d ago First seen · 152 lines · 9 tokens per session scan A 02dfa3226914
qa-tester is an agent published in the GitHub repository jmylchreest/aide (16 stars, last pushed yesterday), licensed MIT. It adds 9 tokens to every session and 680 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
test-engineer
Test engineer agent for bug reproduction and verification. Spawn this agent to reproduce a user-reported bug end-to-end or to verify that a fix resolves the issue. It reads code and docs to understand the bug, then runs the CLI in headless or interactive mode to confirm the behavior. It can write test scripts as a…
test-runner
Use for running test commands (pytest, npm test, etc.) and reading test files via Bash, Read, and Grep. Performs no source edits and no git side effects. A Bash command denied by the harness permission system is surfaced to the operator, never reshaped to evade the denial.
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…
verifier
Post-execution verification agent. Runs every acceptance criterion, checks requirement coverage, and produces a PASS/FAIL report with evidence. Never skips a criterion.
test-runner
Test writing and execution agent. Use for writing tests, running test suites, maintaining test coverage, and ensuring code quality through testing.
test-mapper
Wave 3 agent: documents testing patterns, test organization, coverage gaps, and testing conventions across the codebase. Links test memories with EXPLAINS, EXEMPLIFIES, DEPENDSON, and SIMILARTO relationships.