library/specializations/software-architecture/skills/load-test-generator/SKILL.md
Generate load test scripts for k6, Locust, and Gatling from OpenAPI specs
npx skillsauth add a5c-ai/babysitter load-test-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generates load test scripts for k6, Locust, and Gatling including test scenarios from OpenAPI specifications and performance validation patterns.
{
"type": "object",
"required": ["scenarios"],
"properties": {
"scenarios": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"endpoints": { "type": "array" },
"load": {
"type": "object",
"properties": {
"vus": { "type": "number" },
"duration": { "type": "string" },
"rampUp": { "type": "string" }
}
}
}
}
},
"framework": {
"type": "string",
"enum": ["k6", "locust", "gatling", "artillery"],
"default": "k6"
},
"openapiSpec": {
"type": "string",
"description": "Path to OpenAPI spec for auto-generation"
},
"options": {
"type": "object",
"properties": {
"thresholds": {
"type": "object",
"properties": {
"p95ResponseTime": { "type": "number" },
"errorRate": { "type": "number" }
}
},
"thinkTime": {
"type": "object",
"properties": {
"min": { "type": "number" },
"max": { "type": "number" }
}
},
"dataFile": {
"type": "string",
"description": "Path to test data CSV"
}
}
}
}
}
{
"type": "object",
"properties": {
"scripts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"path": { "type": "string" },
"framework": { "type": "string" }
}
}
},
"configFile": {
"type": "string"
},
"runCommand": {
"type": "string"
},
"thresholds": {
"type": "object"
}
}
}
{
kind: 'skill',
skill: {
name: 'load-test-generator',
context: {
scenarios: [
{
name: 'smoke-test',
endpoints: ['/api/health', '/api/users'],
load: { vus: 10, duration: '1m', rampUp: '10s' }
}
],
framework: 'k6',
options: {
thresholds: {
p95ResponseTime: 500,
errorRate: 0.01
}
}
}
}
}
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.