Aegis
The Aegis mod is a convenient Kotlin-based wrapper for the Brigadier library that allows creating commands in a much more compact and readable format. Instead of bulky code resembling complex corporate systems, you get an elegant and understandable solution.
Here's an example of usage:
dispatcher.register("example") {
integer("value", -10, 200) {
executes {
println(it.getInt("value"))
}
}
}
Aegis developers strive to maintain a minimalist approach so that the library doesn't take up much space and doesn't significantly increase the size of the final JAR file.