gatling-convert-from-loadrunner

gatling-convert-from-loadrunner is a skill for Claude Code from gatling/gatling-ai-extensions. It costs 106 tokens per session (2,269 once invoked), scanned A, original, Apache-2.0.

A guide for turning LoadRunner performance-test scripts into Gatling simulations. LoadRunner is a tool for recording and running virtual-user tests, while Gatling is a code-based tool for testing how systems handle traffic.

In plain words
What is it for?
It helps locate the relevant LoadRunner files and convert their actions into a Gatling test in an existing or newly created Gatling project.
Why use it?
It helps translate LoadRunner files, settings, and test data into Gatling without manually working out how each LoadRunner action maps to Gatling code.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the gatling plugin — 7 skills, 1 MCP server shipped together

Good fit It helps locate the relevant LoadRunner files and convert their actions into a Gatling test in an existing or newly created Gatling project.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner
Install

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.

Any agent
npx skills add gatling/gatling-ai-extensions --skill gatling-convert-from-loadrunner
Clone the repo
git clone --depth 1 https://github.com/gatling/gatling-ai-extensions

Made for: Claude Code.

Or install gatling, the plugin that ships this one along with the rest of its 7 skills, 1 MCP server.

Wrote 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.

agentmods badge for gatling-convert-from-loadrunner

README.md
[![agentmods](https://agentmods.dev/badge/skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner/github.svg)](https://agentmods.dev/skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner)
Your own site
<a href="https://agentmods.dev/skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner"><img src="https://agentmods.dev/badge/skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner/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.

agentmods 80×15 button for gatling-convert-from-loadrunner

Your own site · 80×15
<a href="https://agentmods.dev/skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner"><img src="https://agentmods.dev/badge/skills/gatling/gatling-ai-extensions/gatling-convert-from-loadrunner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,269 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00106 $0.02269
Opus 5 $0.00053 $0.01135
Sonnet 5 $0.00021 $0.00454
Haiku 4.5 $0.00011 $0.00227

Measured 11d ago against content hash 9da7f47f9f57, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gatling-convert-from-loadrunner 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 11d 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.

plugins/gatling/skills/gatling-convert-from-loadrunner/SKILL.md · 179 lines

How it starts

The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Convert a LoadRunner script to a Gatling simulation

Instructions

Step 1: Find the LoadRunner script, configuration, and parameters files

  • Search for LoadRunner script files:
    • Action.c, vuser_init.c, vuser_end.c: the standard three-file layout
    • Any .c or .h files in a LoadRunner script directory (look for a .usr or .lrs descriptor file nearby)
    • A single combined .c file containing all sections
  • If multiple scripts or directories are found, ask the user to specify which one to convert
  • Read all relevant .c and .h files before proceeding
  • Read all relevant .dat files as plain text files
  • Search for a default.cfg file in the same directory and read it if present
  • Search for a .prm file in the same directory and read it if present

Step 2: Specify output

Either find an existing Gatling project or initialize a new one:

  • 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 LoadRunner script to a Gatling test written in the specified language
  • Write the output to the appropriate source directory of the Gatling project
Preamble
Java SDK

IF a variable needs to be saved inside the function AND the function is used within an Expression Language string:

  • Move the code to an exec block that allows saving variables

When parsing dates, use java.time.format.DateTimeFormatter.ofPattern with system default zone and store it outside a function to avoid creation cost overhead.

For regular expression, use java.util.regex.Pattern.compile and store it outside a function to avoid creation cost overhead.

Gatling DSL

Be aware of DSL differences between all the languages Gatling support.

Some methods needs to be followed by .on() in Java, JavaScript and Kotlin but not Scala:

  • exitBlockOnFail { ... }: exitBlockOnFail().on(...)
  • group("name") { ... }: group("name").on(...)
  • All loops, etc.

Read the full file on GitHub · 179 lines

Changes

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.

  1. 11d ago First seen · 179 lines · 106 tokens per session scan A 9da7f47f9f57

Subscribe to this mod's changes

gatling-convert-from-loadrunner is a skill published in the GitHub repository gatling/gatling-ai-extensions (5 stars, last pushed yesterday), licensed Apache-2.0. It adds 106 tokens to every session and 2,269 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

review-prs

Review a GitHub pull request in the googleapis/mcp-toolbox repo against the team's reviewer checklist: PR title/description conventions, linked issue, logic errors and unhandled edge cases, breaking changes, test coverage, docs updates, security (input handling), and new dependencies. Use whenever a maintainer asks…

googleapis/mcp-toolbox · 162 tokens

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…

googleapis/mcp-toolbox · 130 tokens

fix-failing-tests

Diagnose a failing test in the googleapis/mcp-toolbox repo and land a fix by reasoning from the actual error: read the failure, reproduce it, shrink it until the cause is forced into the open, then fix the cause. Use this whenever a test or CI job is red, a build breaks after a change, many packages fail at once, or a…

googleapis/mcp-toolbox · 87 tokens

tool-abuse-detection

Detect tool misuse and unexpected code execution via dialogue testing. Use when the agent exposes file, code-execution, or network tools.

Tencent/AI-Infra-Guard · 32 tokens

dev-browser

Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website"…

MemTensor/MemOS · 84 tokens

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.

langbot-app/LangBot · 58 tokens