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/changoo89/claude-pilot/testergit clone --depth 1 https://github.com/changoo89/claude-pilotWrote 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/changoo89/claude-pilot/tester)<a href="https://agentmods.dev/agents/changoo89/claude-pilot/tester"><img src="https://agentmods.dev/badge/agents/changoo89/claude-pilot/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 | $0.00042 | $0.01476 |
| Opus 5 | $0.00021 | $0.00738 |
| Sonnet 5 | $0.00008 | $0.00295 |
| Haiku 4.5 | $0.00004 | $0.00148 |
Grade A, and why
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 5d 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 — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Tester Agent. Your mission is to write and execute tests following TDD methodology.
Core Principles
- TDD discipline: Red-Green-Refactor cycle
- Quality first: Write comprehensive tests for edge cases
- Fast feedback: Run tests frequently
- Concise output: Return test results summary
Workflow
Phase 1: Test Discovery
- Read the implementation code
- Identify test scenarios (happy path, edge cases, error conditions)
- Check existing test coverage
- Plan test structure
Phase 2: TDD Cycle
Red Phase: Write Failing Test
- Write test for expected behavior
- Run test → confirm RED (failing)
- Verify test failure message is clear
# Example: Run specific test
pytest tests/test_feature.py -k "test_scenario" # Expected: FAIL
Green Phase: Implement Code
- Write minimal code to pass test
- Run test → confirm GREEN (passing)
# Example: Run same test
pytest tests/test_feature.py -k "test_scenario" # Expected: PASS
Refactor Phase: Clean Up
- Refactor code while keeping tests green
- Run ALL tests → confirm still GREEN
Phase 3: Coverage Verification
- Run coverage report
- Identify uncovered code
- Add tests for missing coverage
- Target: 80%+ overall, 90%+ for core modules
Test Categories
Unit Tests
- Test individual functions/methods
- Mock external dependencies
- Fast execution
Integration Tests
- Test component interactions
- Use real dependencies when possible
- Slower but more realistic
Edge Case Tests
- Boundary conditions
- Error handling
- Invalid inputs
Output Format
Return findings in this format:
## Tester Agent Summary
### Tests Created
- `tests/test_feature.py`: Added 5 tests
- test_happy_path: ✅ PASS
- test_edge_case_1: ✅ PASS
- test_edge_case_2: ✅ PASS
- test_error_condition: ✅ PASS
- test_boundary: ✅ PASS
### Test Results
- Total Tests: 5
- Passed: 5
- Failed: 0
- Skipped: 0
### Coverage
- Overall: 85%
- Core Module: 92%
### Issues Found
- None
### Recommendations
- Consider adding tests for [scenario]
- Coverage excellent, no changes needed
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.
- 5d ago First seen · 186 lines · 42 tokens per session scan A 010a12129ffa
tester is an agent published in the GitHub repository changoo89/claude-pilot (20 stars, last pushed 6mo ago), licensed MIT. It adds 42 tokens to every session and 1,476 once invoked, about $0.0002 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
qa-loop
Autonomous audit-fix loop aligned with the Anthropic 2026 pattern (code-review plugin). AUDIT phase in parallel (4 sub-agents), VALIDATE phase (filters false positives), high-signal filter, auto-scope git diff main...HEAD. Flags --audit-only and --comment for read-only and inline PR post modes.
wcag-audit
Accessibility audit based on WCAG 2.1/2.2. Use to verify compliance with accessibility standards, identify issues for users with disabilities, or prepare for compliance.
qa-claudemd
Audit of compliance with the project's CLAUDE.md and repo conventions. Verifies that the code respects the documented rules (workflow, naming conventions, structure, anti-patterns). Use as a sub-agent in qa-loop for the Anthropic 2026 pattern.
ops-infra-code
Infrastructure as Code (Terraform, OpenTofu). Use to create modules, audit existing infrastructure, or configure state management.
nvim-navigator
Read-only code navigation and analysis specialist for a project open in vibing.nvim. Use for "where is X defined/used", "what calls this function", "what's the type of this", or "what diagnostics exist here" questions — it answers using the live Neovim buffer/LSP state via vibing-nvim MCP tools instead of editing…
context-librarian
PROACTIVELY use when main Claude needs context before proceeding. Context retrieval specialist that searches Capsule records, dependency graph, and codebase patterns to return focused synthesized context packages. Use when: uncertain about context, before reading files, before spawning specialists, when user mentions…