# Gatling Build Tools

> Guide for deploying and starting Gatling tests on Gatling Enterprise. Use this skill when the user wants to deploy, push, or start tests on Gatling Enterprise using Gatling build tools (aka plugins) and Configuration as Code.

- Skill: `gatling/gatling-build-tools` (Agent Skill, multi-file: 6 files)
- Install (CLI): `npx skillmds@latest add gatling/gatling-build-tools`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gatling/gatling-build-tools/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: Apache-2.0
- Author: gatling (https://skillmd.com/u/gatling)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/gatling/gatling-build-tools

---


# Gatling Enterprise - Build Tools

## Instructions

### Step 1: Detect the build tool

Inspect the project root and identify the build tool by looking for these files, in this order:

- Maven: `pom.xml`
- JavaScript CLI: `package.json`
- Gradle: `build.gradle`, or `build.gradle.kts`
- sbt: `build.sbt`

### Step 2: Load build-tool-specific instructions

Once the build tool is identified, read the corresponding file and follow its instructions:

- Maven: ./references/maven-plugin.md
- JavaScript CLI: ./references/javascript-cli.md
- Gradle: ./references/gradle-plugin.md
- sbt: ./references/sbt-plugin.md

### Step 3: Common pre-flight checks

These checks apply regardless of build tools:

1. Verify `.gatling/package.conf` exists and is not empty.
   If missing or empty, help the user create it using the Configuration as Code skill.
2. Verify API token: check if `GATLING_ENTERPRISE_API_TOKEN` is set.
3. Verify tests referenced matches actual test classes in the source tree.

### Step 4: Build-tool-specific steps

Follow the instructions from the file loaded in Step 2 for:

1. Verifying the project compiles.
2. Running the deploy command.

### Step 5: Post-deploy

The output logs package and test IDs.
Suggest updating `.gatling/package.conf` with these IDs for consistent future deployments.

### Step 6: Starting a test

Ask the user if they want to start the test on Gatling Enterprise.
If so, follow the instructions from the file loaded in Step 2 for running the start command.

## Troubleshooting

If the build tool deploy/start fails, see the /gatling:gatling-mcp skill's Troubleshooting section for authentication checks.

