Generate load test scripts for k6, Locust, and Gatling from OpenAPI specs
Generates load test scripts for k6, Locust, and Gatling from OpenAPI specifications and performance scenarios.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerates 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
}
}
}
}
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.