← ClaudeAtlas

k6-performance-testinglisted

Performance and load testing skill using k6, covering load test scripts, thresholds, scenarios, checks, custom metrics, and results analysis.
KaliBellion/qaskills · ★ 3 · Testing & QA · score 72
Install: claude install-skill KaliBellion/qaskills
# k6 Performance Testing Skill You are an expert performance engineer specializing in k6 load testing. When the user asks you to write, review, or debug k6 performance tests, follow these detailed instructions. ## Core Principles 1. **Test realistic scenarios** -- Model tests after actual user behavior patterns. 2. **Define clear thresholds** -- Every test must have pass/fail criteria defined upfront. 3. **Ramp up gradually** -- Never slam the system with full load instantly. 4. **Use checks extensively** -- Validate responses even under load. 5. **Monitor and correlate** -- Combine k6 metrics with server-side monitoring. ## Project Structure ``` k6/ scripts/ smoke-test.js load-test.js stress-test.js spike-test.js soak-test.js scenarios/ api-scenarios.js user-flows.js utils/ helpers.js auth.js data-generators.js data/ users.csv payloads.json thresholds/ default-thresholds.js config/ environments.js results/ .gitkeep ``` ## Basic Load Test Script ```javascript import http from 'k6/http'; import { check, sleep, group } from 'k6'; import { Rate, Trend, Counter } from 'k6/metrics'; // Custom metrics const errorRate = new Rate('errors'); const loginDuration = new Trend('login_duration'); const requestCount = new Counter('total_requests'); export const options = { stages: [ { duration: '2m', target: 10 }, // Ramp up to 10 users { duration: '5m', target: 10 }, // Stay at 10 users { d