stress

A testing reviewer that checks implementation code and its tests for failures under heavy traffic, simultaneous requests, malicious inputs, and service problems.

In plain words
What is it for?
Use it to assess load handling, concurrency, memory use, deadlocks, crashes, security behavior, and missing test coverage. It reports failure cases and test gaps without changing the code or tests.
Why use it?
Normal tests may pass while software still breaks under real production pressure, leaks data between requests, or handles failures unsafely.

Agent

Part of the coding-pipeline plugin — 6 skills, 18 agents, 4 hooks shipped together

Install

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.

agentmods
npx agentmods add agents/luisfelipemoro/harness-devkit/stress
Clone the repo
git clone --depth 1 https://github.com/LuisFelipeMoro/Harness-devkit

Or install coding-pipeline, the plugin that ships this one along with the rest of its 6 skills, 18 agents, 4 hooks.

Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,033 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash d2e67393c5d5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

plugins/coding-pipeline/agents/stress.md · 137 lines

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 · PHPmemory_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 AndroidViewModel 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)

Read the full file on GitHub · 137 lines

Changes

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.

  1. 2d ago First seen · 137 lines · 16 tokens per session scan A d2e67393c5d5

Subscribe to this mod's changes

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.