in include/poac/option/help.hpp [62:82]
void exec_help() {
std::cout << "Usage: poac <command> [<args>]" << std::endl << std::endl;
std::cout << io::cli::bold
<< "Available subcommands:"
<< io::cli::reset
<< std::endl;
for (const auto&[name, value] : core::infer::subcmd_map)
show(name, value);
std::cout << io::cli::bold
<< "Available options:"
<< io::cli::reset
<< std::endl;
for (const auto&[name, value] : core::infer::option_map)
show(name, value);
std::cout << std::endl
<< "See `poac <command> --help` for information on a specific command.\n"
"For full documentation, see: https://github.com/poacpm/poac#readme\n";
}