Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Comprehensive k6 load testing skill for API, browser, and scalability testing. Write realistic load scenarios, analyze results, and integrate with CI/CD.
.claude/skills/sickn33-k6-load-testing/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 168% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 161% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 162% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 192% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 376% | 0% |
Read the detailed guide before executing this skill. It retains the complete procedure and reference material. Treat its safety, prerequisites, and validation requirements as mandatory. For focused work, load the relevant sections; for end-to-end work, read the guide completely.
javascriptimport http from 'k6/http'; import { check, sleep } from 'k6'; export const options = { vus: 50, duration: '2m', thresholds: { http_req_duration: ['p(95)<500'], http_req_failed: ['rate<0.01'], }, }; export default function () { const res = http.get('https://api.example.com/users'); check(res, { 'status is 200': (r) => r.status === 200, 'response time < 500ms': (r) => r.timings.duration < 500, }); sleep(1); }
javascriptimport http from 'k6/http'; import { check } from 'k6'; import { SharedArray } from 'k6/data'; const users = new SharedArray('users', function () { return JSON.parse(open('./users.json')); }); export default function () { const user = users[__VU % users.length]; const loginRes = http.post('https://api.example.com/login', JSON.stringify({ email: user.email, password: user.password }) ); const token = loginRes.json('access_token'); const headers = { 'Authorization': `Bearer ${token}` }; const res = http.get('https://api.example.com/profile', { headers }); check(res, { 'profile loaded': (r) => r.status === 200 }); }
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 11,199 | 10,165 | -9% | 1 | 1 | 0% | 2,147 | 6,310 | +194% | 0 | 0 | — |
case-02 | pass→pass | 7,917 | 4,662 | -41% | 1 | 1 | 0% | 1,545 | 5,353 | +246% | 0 | 0 | — |
case-03 | pass→pass | 10,296 | 4,674 | -55% | 1 | 1 | 0% | 1,626 | 5,332 | +228% | 0 | 0 | — |
case-04 | pass→pass | 11,190 | 6,701 | -40% | 1 | 1 | 0% | 2,085 | 5,786 | +178% | 0 | 0 | — |
case-05 | fail→pass | 12,427 | 10,049 | -19% | 1 | 1 | 0% | 2,425 | 6,503 | +168% | 0 | 0 | — |
case-06 | pass→pass | 15,786 | 11,652 | -26% | 1 | 1 | 0% | 3,127 | 6,849 | +119% | 0 | 0 | — |
case-07 | pass→pass | 7,841 | 3,882 | -50% | 1 | 1 | 0% | 1,508 | 5,181 | +244% | 0 | 0 | — |
case-08 | fail→pass | 13,247 | 8,649 | -35% | 1 | 1 | 0% | 2,372 | 6,193 | +161% | 0 | 0 | — |
case-09 | pass→pass | 8,975 | 8,259 | -8% | 1 | 1 | 0% | 1,698 | 6,026 | +255% | 0 | 0 | — |
case-10 | fail→pass | 11,242 | 8,023 | -29% | 1 | 1 | 0% | 2,347 | 6,144 | +162% | 0 | 0 | — |
case-11 | fail→fail | 17,168 | 5,654 | -67% | 1 | 1 | 0% | 1,651 | 5,593 | +239% | 0 | 0 | — |
case-12 | fail→pass | 11,408 | 7,551 | -34% | 1 | 1 | 0% | 2,045 | 5,964 | +192% | 0 | 0 | — |
case-13 | fail→pass | 5,374 | 3,758 | -30% | 1 | 1 | 0% | 1,096 | 5,221 | +376% | 0 | 0 | — |
case-14 | pass→pass | 12,473 | 4,759 | -62% | 1 | 1 | 0% | 2,371 | 5,466 | +131% | 0 | 0 | — |
case-15 | fail→pass | 5,395 | 1,395 | -74% | 1 | 1 | 0% | 918 | 4,646 | +406% | 0 | 0 | — |
case-16 | fail→pass | 9,605 | 4,609 | -52% | 1 | 1 | 0% | 1,736 | 5,314 | +206% | 0 | 0 | — |
case-17 | pass→pass | 6,293 | 4,532 | -28% | 1 | 1 | 0% | 1,303 | 5,519 | +324% | 0 | 0 | — |
case-18 | pass→pass | 17,261 | 17,638 | +2% | 1 | 1 | 0% | 2,650 | 7,636 | +188% | 0 | 0 | — |
case-19 | fail→pass | 15,336 | 7,940 | -48% | 1 | 1 | 0% | 2,243 | 6,059 | +170% | 0 | 0 | — |
case-20 | pass→pass | 15,628 | 16,119 | +3% | 1 | 1 | 0% | 3,084 | 7,641 | +148% | 0 | 0 | — |
case-21 | pass→pass | 17,121 | 19,036 | +11% | 1 | 1 | 0% | 2,955 | 7,772 | +163% | 0 | 0 | — |
case-22 | pass→pass | 25,680 | 6,554 | -74% | 1 | 1 | 0% | 1,037 | 5,701 | +450% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +36 percentage points is the difference between those two pass rates over the 22 comparable cases.
The publisher has shipped newer versions since this run, so these numbers describe v1, not the version currently listed.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.