| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
📸 See more screenshots in the screenshots folder.
Download the latest release and install it to your JMeter installation with a single command.
Using JMETER_HOME environment variable:
curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o $JMETER_HOME/lib/ext/jmeter-copilot-plugin.jarOr save to current directory:
curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o jmeter-copilot-plugin.jarUsing JMETER_HOME environment variable:
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest"
$jarUrl = ($release.assets | Where-Object { $_.name -like "*.jar" }).browser_download_url
Invoke-WebRequest -Uri $jarUrl -OutFile "$env:JMETER_HOME\lib\ext\jmeter-copilot-plugin.jar"Or specify the JMeter path directly:
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest"
$jarUrl = ($release.assets | Where-Object { $_.name -like "*.jar" }).browser_download_url
Invoke-WebRequest -Uri $jarUrl -OutFile "C:\path\to\jmeter\lib\ext\jmeter-copilot-plugin.jar"Build the plugin:
mvn clean verifyCopy the shaded JAR to JMeter's lib/ext directory:
cp target/jmeter-copilot-plugin-1.0.0-SNAPSHOT.jar $JMETER_HOME/lib/ext/Or use the Maven profile (requires setting jmeter.home property):
mvn install -Pinstall-to-jmeter -Djmeter.home=/path/to/jmeterThe plugin supports multiple AI models through the Copilot SDK:
Select your preferred model from the dropdown in the chat panel.
mvn testThe project uses standard Java code style. Format code before committing:
mvn spotless:applyEnsure the GitHub Copilot CLI is installed and in your PATH:
copilot --versionThe plugin requires an active internet connection and valid GitHub Copilot authentication. Run copilot auth login if you encounter authentication issues.
Licensed under the Apache License, Version 2.0. See LICENSE for details.
Contributions are welcome! Please read the contributing guidelines before submitting pull requests.
| Back | FazBrowse Home | New Git URL |