IMPORTANT: THIS PROJECT WILL BE COMPLETELY REWRITTEN AND THE REPOSITORY WILL BE ARCHIVED. CHECK OUT THE REWRITTEN VERSION AT THE REPOSITORY URL: https://github.com/CubeGPT/BukkitGPT-v3
Please do not use the version in this repository and switch to the new, rewritten version. Why I made this decision: https://gist.github.com/Zhou-Shilin/e3503bb3d86de72e5f8875325c0f07d4
Chinese: 重要:本项目将被完全重写,存储库将被存档。请查看重写版本的存储库网址:https://github.com/CubeGPT/BukkitGPT-v3;请不要使用本存储库中的版本,切换到新的、重写的版本;关于为何我做了这个决定:https://gist.github.com/Zhou-Shilin/e3503bb3d86de72e5f8875325c0f07d4
Note
Developers and translators are welcome to join the CubeGPT Team!
Note
Generate a house or other structure using our other open source project, BuilderGPT!
- Introduction
- Advertisement
- Features
- Plans
- How it works
- Requirements
- Quick Start
- Troubleshooting
- Contributing
- Lisence
Give GPT your idea, AI generates customized Minecraft server plugins with one click, which is suitable for Bukkit, Spigot, Paper, Purpur, Arclight, CatServer, Magma, Mohist and other Bukkit-based servers.
BukkitGPT is an open source, free, AI-powered Minecraft Bukkit plugin generator. It was developed for minecraft server owners who are not technically savvy but need to implement all kinds of customized small plugins. From code to build, debug, all done by gpt.
We are pleased to announce that SEC-API is offering a free apikey for users of programs developed by CubeGPT! This key has access to gpt-4-1106-preview and gpt-3.5-turbo-1106.
Note that this key does not have access to models such as gpt-4-vision and expires at any time.
Get the key from here. You can use it in BuilderGPT.
- Automatically generate code
- Automatically fix bugs
- AI
Better Description
- Creating projects
- Projects management
Moved to Projects Tab.
- Bukkit plugin generator. {*.jar} (BukkitGPT)
- Structure generator. {*.schem} (BuilderGPT, or something?)
- Serverpack generator. {*.zip} (ServerpackGPT or ServerGPT, or..?)
- Have ideas or want to join our team? Send us an email!
When the user types the plugin description, the program lets gpt-3.5-turbo
optimize the prompt, and then gives the optimized prompt to gpt-4-turbo-preview
. gpt-4-turbo-preview
will return it in json format, for example:
{
"output": [
{
"file": "%WORKING_PATH%/Main.java",
"code": "package ...;\nimport org.bukkit.Bukkit;\npublic class Main extends JavaPlugin implements CommandExecutor {\n..."
},
{
"file": "src/main/resources/plugin.yml",
"code": "name: ...\nversion: ...\n..."
},
{
"file\": "src/main/resources/config.yml",
"code\": "..."
},
{
"file": "pom.xml",
"code": "..."
}
]
}
The program parses this prompt, copies the entire projects/template
folder and names it artifact_name
, and puts the code from the prompt into the each file. Finally the program builds the jar using maven.
You can use BukkitGPT on any computer with Java, Maven, Python 3+.
And you need to install this package:
pip install openai
(Make sure you have the Python environment installed on your computer)
- Download
Source Code.zip
from the release page and unzip it. - Edit
config.py
, fill in your OpenAI Apikey. If you don't know how, remember that Google and Bing are always your best friends. - Run
ui.exe
(bashpython console.py
), enter the artifact name & description & package id as instructed to generate your plugin. - Copy your plugin from
projects/<artifact_name>/target/<artifact_name>-<version>.jar
to your serverplugins/
folder. - Restart your server and enjoy your AI-powered-plugin.
- Download
Source Code.zip
from the release page and unzip it. - Edit
config.yaml
, fill in your OpenAI Apikey. If you don't know how, remember that Google and Bing are always your best friends. - Run
console.py
(bashpython console.py
), enter the artifact name & description & package id as instructed to generate your plugin. - Copy your plugin from
projects/<artifact_name>/target/<artifact_name>-<version>.jar
to your serverplugins/
folder. - Restart your server and enjoy your AI-powered-plugin.
- Download
Source Code.zip
from the release page and unzip it. - Edit
config.yaml
, fill in your OpenAI Apikey. If you don't know how, remember that Google and Bing are always your best friends. - Run
ui.py
(bashpython console.py
). - Enter the artifact name & description & package id as instructed to generate your plugin.
- Copy your plugin from
projects/<artifact_name>/target/<artifact_name>-<version>.jar
to your serverplugins/
folder. - Restart your server and enjoy your AI-powered-plugin.
Solution: Download BuildTools, place it in an empty folder, double-click it, choose "1.13.2" in Settings/Select Version
, click Compile
in the bottom right corner and let it finish. And then go to your BukkitGPT folder, in projects/<artifact_name_of_your_plugin>
, double-click build.bat
. You'll find your plugin in projects/<artifact_name_of_your_plugin>/target
folder.
If you like the project, you can give the project a star, or submit an issue or pull request to help make it better.
Copyright [2024] [CubeGPT Team]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.