wumpgoctl is a command line application that provides a collection of tools to make bot creation with wumpgo easier.
go install wumpgo.dev/wumpgo/wumpgoctl@latest
You can scaffold a new project
mkdir mybot && cd mybot
wumpgoctl init -p github.com/USERNAME/mybot -n MyBot -w -g --nats --codegen
See wumpgoctl init --help
for more information.
The init subcommand scaffolds new projects for you, making the time from 0 to bot extremely short. You can get up and running with a very basic bot in under a minute.
The gen subcommand provides a comment parser and code generation tool for implementing the router interfaces to customize your slash commands.
You can checkout the gen documentation for more information.