performance-testing

Installation
SKILL.md

Performance Testing

Validate system behavior under load.

k6 Load Test (JavaScript)

import http from 'k6/http';
import { check, sleep } from 'k6';

export const options = {
  stages: [
    { duration: '30s', target: 20 },  // Ramp up
    { duration: '1m', target: 20 },   // Steady
    { duration: '30s', target: 0 },   // Ramp down
  ],
  thresholds: {
    http_req_duration: ['p(95)<500'],  // 95% under 500ms
    http_req_failed: ['rate<0.01'],    // <1% errors
Related skills

More from yonatangross/orchestkit

Installs
12
GitHub Stars
170
First Seen
Jan 22, 2026