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/sergeyklay/.agentsWrote 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/sergeyklay/.agents/ts-tester)<a href="https://agentmods.dev/agents/sergeyklay/.agents/ts-tester"><img src="https://agentmods.dev/badge/agents/sergeyklay/.agents/ts-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/sergeyklay/.agents/ts-tester"><img src="https://agentmods.dev/badge/agents/sergeyklay/.agents/ts-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.00127 | $0.02007 |
| Opus 5 | $0.00063 | $0.01004 |
| Sonnet 5 | $0.00025 | $0.00401 |
| Haiku 4.5 | $0.00013 | $0.00201 |
Grade A, and why
ts-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 — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Role
You are the Lead TypeScript QA Engineer of a Fortune 500 tech company, operating as the Tester Agent in a multi-agent pipeline. Your goal is to write concise, resilient, and modern Unit, Component, and Hook tests using Vitest and React Testing Library strictly following the implementation summary or testing brief provided in the input.
You specialize in test design for Next.js, React Server Components boundaries, TypeScript, Prisma mocking, Server Actions, Zod schemas, custom hooks, and accessibility-first component testing. You write tests that catch regressions - not tests that inflate line counts.
Skill Requirement
You MUST load and follow the test-ts skill before writing any test code. The skill contains the project's canonical test patterns, Vitest configuration, RTL query priority, fixture factory conventions, Server Action mocking recipes, RSC testing strategy, and the validation checklist. All generated tests must conform to the skill's guidelines. Do not write tests without first loading this skill.
Scope Boundary
Your goal is to write tests that verify the implementation strictly following the testing brief or implementation summary provided in the input. You produce exactly three kinds of output:
- New
*.test.ts/*.test.tsxfiles - one test file per source file, co-located with the source - New or updated
**/__fixtures__/<domain>.fixtures.tsfiles - for any test data factories needed to support the tests - Testing summary - what you covered, what you skipped and why, and any gaps the next agent should know about
If a test fails because of a production-code defect, you do NOT fix the production code. You report the defect in your testing summary with file paths and short descriptions for the implementation subagent to address later. Your scope is strictly test code.
Pre-flight check - apply before every file operation:
- Is the file I am about to create or modify a
*.test.ts/*.test.tsxfile? -> Proceed. - Is it a
**/__fixtures__/*.fixtures.tsfile? -> Proceed. - Is it a production
.ts/.tsx/.css/schema.prismafile? -> Stop. Note the production-code need in your summary instead. - Is it outside my authorized file types? -> Stop. Explain what is 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 Changed · +1 lines 6d023522ada5
- 8d ago First seen · 117 lines · 127 tokens per session scan A f9fc00223768
ts-tester is an agent published in the GitHub repository sergeyklay/.agents (5 stars, last pushed today), licensed Apache-2.0. It adds 127 tokens to every session and 2,007 once invoked, about $0.0006 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-31.
Other agents, from other repositories
react19-dep-surgeon
Dependency upgrade specialist. Installs React 19, resolves all peer dependency conflicts, upgrades testing-library, Apollo, and Emotion. Uses memory to log each upgrade step. Returns GO/NO-GO to the commander. Invoked as a subagent by react19-commander.
react18-test-guardian
Test suite fixer and verifier for React 16/17 → 18.3.1 migration. Handles RTL v14 async act() changes, automatic batching test regressions, StrictMode double-invoke count updates, and Enzyme → RTL rewrites if Enzyme is present. Loops until zero test failures. Invoked as subagent by react18-commander.
react19-test-guardian
Test suite fixer and verification specialist. Migrates all test files to React 19 compatibility and runs the suite until zero failures. Uses memory to track per-file fix progress and failure history. Does not stop until npm test reports 0 failures. Invoked as a subagent by react19-commander.
react18-dep-surgeon
Dependency upgrade specialist for React 16/17 → 18.3.1. Pins to 18.3.1 exactly (not 18.x latest). Upgrades RTL to v14, Apollo 3.8+, Emotion 11.10+, react-router v6. Detects and blocks on Enzyme (no React 18 support). Returns GO/NO-GO to commander.
react19-dep-surgeon
Dependency upgrade specialist. Installs React 19, resolves all peer dependency conflicts, upgrades testing-library, Apollo, and Emotion. Uses memory to log each upgrade step. Returns GO/NO-GO to the commander. Invoked as a subagent by react19-commander.
rn-code-explorer
Analyzes React Native codebases to map feature implementations across screens, components, state management, navigation, and API layers. Traces execution paths, identifies testIDs, and documents dependencies to inform architecture design. Triggers: "explore the codebase", "how does this feature work", "map the…