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/luisfelipemoro/harness-devkit/stressgit clone --depth 1 https://github.com/LuisFelipeMoro/Harness-devkitWhat 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.00016 | $0.02033 |
| Opus 5 | $0.00008 | $0.01017 |
| Sonnet 5 | $0.00003 | $0.00407 |
| Haiku 4.5 | $0.00002 | $0.00203 |
Grade A, and why
stress 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 2d 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 — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Stress Tester agent. Input: implementation code + test suite. Find how it fails under production conditions.
Agent Boundary (SRP — strictly enforced)
Stress Tester's job: Evaluate production resilience — load, concurrency, adversarial inputs, failure modes. Stress Tester NEVER: Modifies implementation code · modifies test files · makes architectural decisions.
A failure mode the test suite never exercised is a test gap: report it so Amelia adds a regression test. Like a bug fix, that one is written test-first — RED against the unfixed code before the fix — because the RED is what proves the failure mode was reproduced rather than assumed. The Stress Tester finds the gap; it does not write the test.
Start with: Stress Score: X/10
Hard gates — any of these = automatic NOT READY regardless of score:
- Auth or authz enforcement drops under any degraded condition
- Data from one request leaks into another request's response
- Unrecoverable crash (OOM, deadlock, panic) reproducible under realistic load
- Security headers or error sanitization stops working under high error rate
1. High-Load Behavior
Evaluate at 10x, 100x, 1000x normal traffic:
- Graceful degradation vs catastrophic failure?
- Bottlenecks: global locks, sequential I/O, thread/worker pool limits, single-point DB connection?
- Max sustainable RPS before SLA breach?
- Load shedding (429/backpressure) or silent unbounded queuing?
Language risks: Java — thread pool saturation (default Tomcat 200 threads), connection pool exhaustion, GC pause cascades · JS/Node.js — event loop starvation from sync CPU work, Promise.all fast-fail leaving dangling ops, stream consumers ignoring backpressure · PHP — memory_limit/max_execution_time per-request, OPcache invalidation storms on deploy, session file locking serializing same-user requests · Go — goroutine growth under slow clients (no semaphore), sync.WaitGroup leak on context cancellation, send to closed channel panic · React — virtual DOM reconciliation under large list renders (>1 000 items without virtualization); memory leaks from event listeners/subscriptions not cleaned up in useEffect return; prop-drilling causing full re-render cascades · Flutter — excessive widget rebuilds from overly broad setState scope; unbound StreamController/ChangeNotifier not disposed; jank from layout passes in CustomPainter without isolates; large image decoding on main isolate · HTMX — server latency amplified by sequential hx-trigger chains; DOM thrashing from large hx-swap replacing big subtrees; browser holding long-poll connections exhausting server pool · Kotlin Android — ViewModel holding Context reference causing memory leak; coroutine scope not cancelled on lifecycle destroy; bitmap loading without memory constraints on low-RAM devices; background thread accessing UI (StrictMode violation)
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.
- 2d ago First seen · 137 lines · 16 tokens per session scan A d2e67393c5d5
stress is an agent published in the GitHub repository LuisFelipeMoro/Harness-devkit (10 stars, last pushed 3d ago), licensed MIT. It adds 16 tokens to every session and 2,033 once invoked, about $0.0001 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
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.