From api-tester
Runs load tests against API endpoints using tools like wrk, k6, ab, or hey. Measures throughput, latency, error rates, and identifies breaking points with staged ramp-up.
How this command is triggered — by the user, by Claude, or both
Slash command
/api-tester:load-testThe summary Claude sees in its command listing — used to decide when to auto-load this command
Run a load test against an API endpoint to measure throughput and identify breaking points. ## Steps 1. Define load test parameters: - Target URL and HTTP method. - Concurrent connections (start low, ramp up). - Duration of the test. - Request payload and headers. 2. Select the load testing tool: - `wrk` or `wrk2` for HTTP benchmarking. - `k6` for scripted load tests. - `ab` (Apache Bench) for simple tests. - `hey` for quick Go-based load tests. 3. Run a warm-up phase with low concurrency (10 connections, 10 seconds). 4. Execute the main load test in stages: - S...
Run a load test against an API endpoint to measure throughput and identify breaking points.
wrk or wrk2 for HTTP benchmarking.k6 for scripted load tests.ab (Apache Bench) for simple tests.hey for quick Go-based load tests.Load Test: <METHOD> <endpoint>
| Stage | Concurrency | RPS | P50 (ms) | P99 (ms) | Errors |
|-------|-------------|-----|----------|----------|--------|
| Normal | 10 | 500 | 20 | 85 | 0% |
| Peak | 50 | 1200 | 45 | 200 | 0.1% |
| Stress | 200 | 800 | 500 | 2000 | 5.2% |
Breaking point: ~150 concurrent connections
Bottleneck: Database connection pool exhaustion
Recommendations:
1. Increase connection pool size from 10 to 50
2. Add connection queuing with backpressure
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub ais1m0n3/awesome-claude-code-toolkit --plugin api-tester/load-testRuns load tests against API endpoints using tools like wrk, k6, ab, or hey. Measures throughput, latency, error rates, and identifies breaking points with staged ramp-up.
/run-load-testRuns load and stress tests against API endpoints or web pages, monitoring real-time metrics like requests/sec and latency percentiles, identifying bottlenecks, and saving timestamped reports.
/loadtestGenerates load test scripts for k6, Artillery, Locust, JMeter; establishes baselines, runs stress/spike/soak tests, identifies bottlenecks, produces performance reports and verdicts.
/run-load-testRuns API load tests using k6, Artillery, or Gatling to measure performance, identify bottlenecks, and validate scalability.
/benchmarkBenchmarks HTTP endpoints with configurable concurrency, captures per-request metrics, and reports latency percentiles, throughput, and error rates.
/create-load-testGenerates load test scenarios and scripts (k6, JMeter, Artillery) with performance thresholds, execution instructions, and CI/CD integration suggestions.