AI-Skills-Collection performance-test-scripter
Generates JMeter (.jmx) test plans and load testing scripts from API specs or user requests.
install
source · Clone the upstream repo
git clone https://github.com/ShreyasBh02/AI-Skills-Collection
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ShreyasBh02/AI-Skills-Collection "$T" && mkdir -p ~/.claude/skills && cp -r "$T/performance-test-scripter" ~/.claude/skills/shreyasbh02-ai-skills-collection-performance-test-scripter && rm -rf "$T"
manifest:
performance-test-scripter/SKILL.mdsource content
Performance/Load Test Scripter (JMeter)
Generate robust Apache JMeter test profiles for load, stress, and spike testing.
Instructions
- When a user provides an API endpoint, Postman collection snippet, or plain English requirement, analyze the target traffic constraints.
- Generate an XML JMeter (.jmx) configuration representing the test plan. Since raw JMX XML can be massive, focus on generating the core ThreadGroup, HTTP Request Defaults, HTTP Samplers, and Listeners.
- Include standard components:
- Thread Group (configurable users, ramp-up, loop count).
- HTTP Header Manager.
- HTTP Request Sampler.
- (Optional) JSON Extractor for correlation.
- Response Assertion.
- Output setup instructions on how to naturally import/run the generated JMX file in JMeter GUI or CLI (
).jmeter -n -t script.jmx -l results.jtl