Climate "CLI Mate" aims to make creating CLIs in Go easy (and fun!), similar to python-fire. It's also built on top of Cobra and so comes with "batteries included" (help, shell completion etc.).
Principalele funcționalități ale avamsi/climate sunt: Go CLI Frameworks.
Alternativele open-source pentru avamsi/climate includ: akamensky/argparse — Argparse for golang. Just because `flag` sucks. alecthomas/kong — Kong is a declarative command line interface framework and parser for Go. It maps flags and positional arguments… alexflint/go-arg. docopt/docopt.go — docopt-go. jawher/mow.cli — A versatile library for building CLI applications in Go. spf13/cobra — Cobra is a development framework for building command-line applications in Go. It organizes application logic into a…
Kong is a declarative command line interface framework and parser for Go. It maps flags and positional arguments directly into typed Go structures using struct tags, allowing developers to define terminal interfaces through data models rather than manual parsing logic. The project functions as a configuration mapper that populates Go structures from a combination of command-line arguments, environment variables, and JSON files. It distinguishes itself by providing a dependency injection container to pass external services into command handlers and a plugin architecture for dynamic command reg
Argparse for golang. Just because flag sucks