Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add gatling/gatling-ai-extensions --skill gatling-convert-from-jmetergit clone --depth 1 https://github.com/gatling/gatling-ai-extensionsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gatling/gatling-ai-extensions/gatling-convert-from-jmeter)<a href="https://agentmods.dev/skills/gatling/gatling-ai-extensions/gatling-convert-from-jmeter"><img src="https://agentmods.dev/badge/skills/gatling/gatling-ai-extensions/gatling-convert-from-jmeter/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gatling/gatling-ai-extensions/gatling-convert-from-jmeter"><img src="https://agentmods.dev/badge/skills/gatling/gatling-ai-extensions/gatling-convert-from-jmeter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00053 | $0.01106 |
| Opus 5 | $0.00026 | $0.00553 |
| Sonnet 5 | $0.00011 | $0.00221 |
| Haiku 4.5 | $0.00005 | $0.00111 |
Grade A, and why
gatling-convert-from-jmeter scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Convert a JMeter test plan to a Gatling simulation
Instructions
Step 1: Find input JMeter test plan
- Search for files with
.jmxextension - If several files found, ask user to specify one
Step 2: Specify output
Either find an existing Gatling project or initialize a new Gatling project:
- Try to find an existing project with the /gatling:gatling-detect-existing-project skill
- If no existing project is found, offer to create a new one with the /gatling:gatling-bootstrap-project skill
Step 3: Conversion
- Convert the JMeter test to a Gatling test written in the specified language.
- Write the output to the appropriate source directory of the Gatling project.
ThreadGroup
Each ThreadGroup converts to a scenario.
IF serialize_threadgroups true:
- Chain the scenarios with
andThenELSE: - Just list the scenarios in the
setUpblock
Resource files
Files referenced in elements such as:
- CSVDataSet
- HTTPFileArgs
should be copied to the resources directory in the Gatling project.
Redirects
| JMeter | Gatling |
|---|---|
follow_redirects = true |
default setting, do nothing |
follow_redirects = false |
disableFollowRedirect |
CSVDataSet
CSVDataSet converts to a csv feeder.
IF there are several instances of CSVDataSet referencing the same file name:
- IF
shareMode.group:- Create a new csv feeder for each scenario ELSE:
- Create a single feeder and use it in each scenario
JMESPathExtractor
The jmesPath Gatling check extracts Strings, meaning that non String values get serialized back into JSON.
Using findAll with jmesPath is a mistake, but you can tell Gatling the expected type with an extra step.
Note that the check will then fail if the actual value doesn't match the expected type.
jmesPath("foo").ofString()
jmesPath("foo").ofBoolean()
jmesPath("foo").ofInt()
jmesPath("foo").ofLong()
jmesPath("foo").ofDouble()
// JSON array
jmesPath("foo").ofList()
// JSON object
jmesPath("foo").ofMap()
// anything
jmesPath("foo").ofObject()
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 136 lines · 53 tokens per session scan A 58bc711f14dd
gatling-convert-from-jmeter is a skill published in the GitHub repository gatling/gatling-ai-extensions (5 stars, last pushed 2d ago), licensed Apache-2.0. It adds 53 tokens to every session and 1,106 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
reproduce-bug
Reproduce a reported bug in googleapis/mcp-toolbox and decide whether it is real, delivering an evidence-backed verdict: confirmed, already fixed, misconfiguration, client-side, works as intended, not reproducible, or blocked. Use whenever a maintainer asks you to reproduce, verify, confirm, or investigate a bug…
langbot-testing
Test LangBot WebUI and core product flows with an automated browser and backend logs. Use when validating the configured LangBot frontend, pipeline Debug Chat, model provider setup and test buttons, bot and knowledge-base UI flows, or troubleshooting failed LangBot end-to-end tests.
app_verification
Verify a newly created or newly installed Rome app after coding:appcreation or coding:workflowcreation finishes installing it. Use only as a second-pass verifier: receive the app id, source root, expected behavior, and local dashboard/API base URL from the creator, then visit the installed app, exercise its safe…
local-test
Build, run, and test IronClaw locally using Docker containers and Chrome MCP browser automation.
knowledge-engineering-quality-and-delivery-real-api-qualification-and-e2e
A guide to tests that call real AI providers and verify complete user flows across the CLI, web interface, terminals, and ACP hosts.
knowledge-engineering-quality-and-delivery-unit-integration-and-shared-test-harnesses
A testing guide for the CLI and web interfaces, covering unit, integration, end-to-end, and real-process test setup with shared fixtures and cleanup.