load-testing

load-testing is a skill for Claude Code, Codex from OKHP3/skillz. It costs 77 tokens per session (939 once invoked), scanned A, original, MIT.

A method for measuring how a system behaves when many users or requests arrive at the same time.

In plain words
What is it for?
Use it for load or stress tests, capacity planning, traffic-spike preparation, and finding saturation points.
Why use it?
It reveals throughput limits, slow responses, resource exhaustion, and how the system fails under pressure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for load or stress tests, capacity planning, traffic-spike preparation, and finding saturation points.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/okhp3/skillz/load-testing
View source ↗ OKHP3/skillz
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.

Any agent
npx skills add OKHP3/skillz --skill load-testing
Clone the repo
git clone --depth 1 https://github.com/OKHP3/skillz

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for load-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/okhp3/skillz/load-testing/github.svg)](https://agentmods.dev/skills/okhp3/skillz/load-testing)
Your own site
<a href="https://agentmods.dev/skills/okhp3/skillz/load-testing"><img src="https://agentmods.dev/badge/skills/okhp3/skillz/load-testing/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.

agentmods 80×15 button for load-testing

Your own site · 80×15
<a href="https://agentmods.dev/skills/okhp3/skillz/load-testing"><img src="https://agentmods.dev/badge/skills/okhp3/skillz/load-testing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 939 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00077 $0.00939
Opus 5 $0.00039 $0.00469
Sonnet 5 $0.00015 $0.00188
Haiku 4.5 $0.00008 $0.00094

Measured 6d ago against content hash 64f4c9b68927, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

load-testing 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 6d 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.

community/load-testing/SKILL.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Load testing

A load test answers one of two questions, and confusing them wastes the effort:

  • Can it handle X?: a specific, known target. Verification.
  • Where does it break, and how?: the ceiling and the failure mode. Discovery.

Discovery is usually more valuable. Knowing you handle 1,000 requests per second tells you less than knowing that at 1,200 the connection pool exhausts and every request hangs for 30 seconds rather than failing fast.

1. Model realistic traffic, not a single endpoint

Hammering one endpoint measures that endpoint. Real systems fail through interaction — a slow report query saturating the pool that the login path needs.

Model:

  • The mix: which endpoints, in what proportion, from real traffic data
  • The shape: steady, spiky, or diurnal. A ramp reveals different problems than a sudden step
  • Think time: real users pause. Zero think time produces an unrealistic connection pattern
  • The data distribution: everyone hitting one hot row behaves nothing like a spread of keys. This is a very common cause of misleading results

Done when: the generated traffic resembles what production actually sees.

2. Test something that resembles production

A load test against a laptop tells you about the laptop.

Match, or document the difference: instance sizes, replica counts, database size and data volume, network topology, and — critically — caches in a realistic state. A cold cache and a fully warm one give completely different numbers, and neither may be the steady state.

Done when: you can state how the environment differs from production and how that skews the result.

3. Ramp, and watch for the knee

Do not start at target load. Ramp, and watch for the point where the response curve bends.

Below saturation, latency stays roughly flat as throughput rises. At the knee, latency climbs sharply while throughput stops rising. That point is your real capacity, and it is usually well below the number where errors start.

Read the full file on GitHub · 92 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. 6d ago First seen · 92 lines · 77 tokens per session scan A 64f4c9b68927

Subscribe to this mod's changes

load-testing is a skill published in the GitHub repository OKHP3/skillz (3 stars, last pushed yesterday), licensed MIT. It adds 77 tokens to every session and 939 once invoked, about $0.0004 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-09-03.