mcli is a minimal but powerful cli library for Go.
m stands for minimal and magic.
It is extremely easy to use, it makes you love writing cli programs in Go.
Disclaimer: the original idea is inspired by shafreeck/cortana, which is licensed under the Apache License 2.0.
- Easy to use, dead simple yet very powerful API to define commands, flags and arguments.
- Add arbitrary nested sub-command with single line code.
- Define command flags and arguments inside the command processor using struct tag.
- Define global flags apply to all commands.
- Read environment variables for flags and arguments.
- Set default value for flags and arguments.
- Work with slice, map out of box, of course the basic types bool, string, integer, unsigned integer, float, duration are also supported.
- Mark commands, flags as hidden, hidden commands and flags won't be showed in help,
except that when a special flag
--mcli-show-hiddenis provided. - Mark flags, arguments as required, it reports error when not given.
- Mark flags as deprecated.
- Automatic suggestions like git.
- Automatic help generation for commands, flags and arguments.
- Automatic help flag recognition of
-h,--help, etc. - Compatible with the standard library's flag.FlagSet.
- Optional posix-style single token multiple options command line parsing.
- Alias command, so you can reorganize commands without breaking them.
- Flexibility to define your own usage messages.
- Minimal dependency.
- Makes you love writing cli programs in Go.
Use in main function:
func main() {
var args struct {
Name string `cli:"-n, --name, Who do you want to say to" default:"tom"`
// This argument is required.
Text string `cli:"#R, text, The 'message' you want to send"`
}
mcli.Parse(&args)
fmt.Printf("Say to %s: %s\n", args.Name, args.Text)
}$ go run say.go
argument is required but not given: text
USAGE:
say [flags] <text>
FLAGS:
-n, --name string Who do you want to say to (default "tom")
ARGUMENTS:
text message (REQUIRED) The message you want to send
exit status 2
$ go run say.go hello
Say to tom: helloUse sub-commands:
func main() {
mcli.Add("cmd1", runCmd1, "An awesome command cmd1")
mcli.AddGroup("cmd2", "This is a command group called cmd2")
mcli.Add("cmd2 sub1", runCmd2Sub1, "Do something with cmd2 sub1")
mcli.Add("cmd2 sub2", runCmd2Sub2, "Brief description about cmd2 sub2")
// A sub-command can also be registered without registering the group.
mcli.Add("group3 sub1 subsub1", runGroup3Sub1Subsub1, "Blah blah Blah")
// This is a hidden command, it won't be showed in help,
// except that when flag "--mcli-show-hidden" is given.
mcli.AddHiden("secret-cmd", secretCmd, "An secret command won't be showed in help")
mcli.Run()
}
func runCmd1() {
var args struct {
Branch string `cli:"-b, --branch, Select another branch by passing in the branch name"`
Commit bool `cli:"-c, --commit, Open the last commit"`
NoBrowser bool `cli:"-n, --no-browser, Print destination URL instead of opening the browser"`
Projects bool `cli:"-p, --projects, Open repository projects"`
Repo string `cli:"-R, --repo, Select another repository using the '[HOST/]OWNER/REPO' format"`
Settings bool `cli:"-s, --settings, Open repository settings"`
Wiki bool `cli:"-w, --wiki, Open repository wiki"`
Location string `cli:"location, A browser location can be specified using arguments in the following format:\n- by number for issue or pull request, e.g. \"123\"; or\n- by path for opening folders and files, e.g. \"cmd/gh/main.go\""`
}
mcli.Parse(&args)
// Do something
}
type Cmd2CommonArgs struct {
Repo string `cli:"-R, --repo, Select another repository using the '[HOST/]OWNER/REPO' format"`
}
func runCmd2Sub1() {
// Note that the flag/argument description can be seperated either
// by a comma or spaces, and can be mixed.
var args struct {
Body string `cli:"-b, --body Supply a body. Will prompt for one otherwise."`
BodyFile string `cli:"-F, --body-file Read body text from 'file' (use \"-\" to read from standard input)"`
Editor bool `cli:"-e, --editor, Add body using editor"`
Web bool `cli:"-w, --web, Add body in browser"`
// Can embed other structs.
CommonIssueArgs
}
mcli.Parse(&args)
// Do something
}Also, there are some sophisticated examples:
- github-cli mimics Github's cli command
gh - lego mimics Lego's command
lego
SetOptionssets optional options for App.SetGlobalFlagssets global flags, global flags are available to all commands.Addadds a command.AddAliasadds an alias name for a command.AddHiddenadds a hidden command.AddGroupadds a group explicitly. A group is a common prefix for some commands. It's not required to add group before adding sub commands, but user can use this function to add a description to a group, which will be showed in help.AddHelpenables the "help" command.Parseparses the command line for flags and arguments.Runruns the program, it will parse the command line, search for a registered command and run it.PrintHelpprints usage doc of the current command to stderr.
WithArgstellsParseto parse from the given args, instead of parsing from the command line arguments.WithErrorHandlingtellsParseto use the given ErrorHandling. By default, it exits the program when an error happens.WithNamespecifies the command name to use when printing usage doc.DisableGlobalFlagstellsParseto don't parse and print global flags in help.ReplaceUsagetellsParseto use a custom usage function instead of the default.WithFooteradds a footer message after the default help.
Struct tag is a powerful feature in Go, mcli uses struct tag to define flags and arguments.
- tag
clidefines the name and description for flags and arguments - tag
envoptionally tells Parse to lookup environment variables when user doesn't provide a value on the command line - tag
defaultoptionally provides a default value to a flag or argument, which will be used when the value is not available from both command line and env
The syntax is
/* cli tag, only Name is required.
* Short name and long name are both optional, but at least one must be given.
* See below for details about modifiers.
* e.g.
* - `cli:"-c, Open the last commit"`
* - `cli:"#R, -b, --branch, Select another branch by passing in the branch name"`
* - `cli:"--an-obvious-flag-dont-need-description"`
*/
CliTag <- ( Modifiers ',' Space? )? Name ( ( ',' | Space ) Description )?
Modifiers <- '#' [DHR]+
Name <- ( ShortName LongName? ) | LongName
Description <- ( ![\r\n] . )*
/* env tag, optional.
* Multiple environment names can be specified, the first non-empty value
* will be used.
* e.g.
* - `env:"SOME_ENV"`
* - `env:"ANOTHER_ENV_1, ANOTHER_ENV_2"`
*/
EnvTag <- ( EnvName ',' Space? )* EnvName
/* default value tag, optional.
* e.g.
* - `default:"1.5s"` // duration
* - `default:"true"` // bool
*/
DefaultValueTag <- ( ![\r\n] . )*
Modifier represents an option to a flag, it sets the flag to be
deprecated, hidden, or required. In a cli tag, modifiers appears as
the first segment, starting with a # character.
Fow now the following modifiers are available:
- D - marks a flag or argument as deprecated, "DEPRECATED" will be showed in help
- R - marks a flag or argument as required, "REQUIRED" will be showed in help
- H - marks a flag as hidden, see below for more about hidden flags
Hidden flags won't be showed in help, except that when a special flag "--mcli-show-hidden" is provided.
Modifier H shall not be used for an argument, else it panics.
An argument must be showed in help to tell user how to use the program
correctly.
Some modifiers cannot be used together, else it panics, e.g.
- H & R - a required flag must appear in help to tell user to set it
- D & R - a required flag must not be deprecated, it does not make sense, but makes user confused
Parse returns a *flag.FlagSet if success, all defined flags are available
with the flag set, including both short and long names.
Note that the package flag requires command line flags must present before
arguments, this package does not have this requirement.
Positional arguments can present either before flags or after flags,
even both before and after flags, in which case, the args will be reordered
and all arguments can be accessed by calling flagSet.Args() and flagSet.Arg(i).
If there is slice or map arguments, it will match all following arguments.
- New: validate non-flag arguments for invalid usage.
- New: support value implementing encoding.TextUnmarshaler, allowing command-line flags and arguments to have types such as big.Int, netip.Addr, and time.Time.
- New: add type Context to allow using
func(*Context)as command action, making it easier to use manually created App. - Change: drop support for Go < 1.17.
- Fix: reflect.Pointer not exists when using with Go below 1.18.
- Fix: error handling for invalid command.
- New: add options
ReplaceUsageandWithFooterto customize usage help. - New: add option to allow parsing posix-style single token multiple options.
- New: support alias commands.
- Change: remove api
KeepCommandOrder, replaced bySetOptions. - Change: optimize help padding.
- Change: refactor code for better maintainability.
- Support alternative 'mcli' tag.
- Support global flags.
- Support keep command order in help.
- Improve compatibility with flag.FlagSet.
- Improve examples and docs.
Initial public release.