proj_flow.minimal.list

The proj_flow.minimal.list implements ./flow list command.

proj_flow.minimal.list.main(builtin: ~typing.Annotated[bool, ~proj_flow.api.arg.FlagArgument(help=Show all builtin commands, pos=False, names=[], nargs=None, opt=True, meta=None, action=store_true, default=False, choices=None, completer=None, group=None)], alias: ~typing.Annotated[bool, ~proj_flow.api.arg.FlagArgument(help=Show all alias commands, pos=False, names=[], nargs=None, opt=True, meta=None, action=store_true, default=False, choices=None, completer=None, group=None)], steps: ~typing.Annotated[bool, ~proj_flow.api.arg.FlagArgument(help=Show all run steps, pos=False, names=[], nargs=None, opt=True, meta=None, action=store_true, default=False, choices=None, completer=None, group=None)], configs: ~typing.Annotated[bool, ~proj_flow.api.arg.FlagArgument(help=Show all known matrix keys, pos=False, names=[], nargs=None, opt=True, meta=None, action=store_true, default=False, choices=None, completer=None, group=None)], all: ~typing.Annotated[bool, ~proj_flow.api.arg.FlagArgument(help=Show builtins, aliases, steps and configs, pos=False, names=[], nargs=None, opt=True, meta=None, action=store_true, default=False, choices=None, completer=None, group=None)], pipe: ~typing.Annotated[bool, ~proj_flow.api.arg.FlagArgument(help=Do not show additional information, pos=False, names=[], nargs=None, opt=True, meta=None, action=store_true, default=False, choices=None, completer=None, group=None)], rt: ~proj_flow.api.env.Runtime, menu: ~proj_flow.cli.argument.Command)

List all the commands and/or steps for proj-flow

Call:

proj-flow list

Call:

./flow list

Parameters:
  • builtin (bool) – Show all builtin commands

  • alias (bool) – Show all alias commands

  • steps (bool) – Show all run steps

  • configs (bool) – Show all known matrix keys

  • all (bool) – Show builtins, aliases, steps and configs

  • pipe (bool) – Do not show additional information

  • rt (Runtime) – Tools and print messages, while respecting --dry-run, --silent and --verbose.

  • menu (Command) – The Command object attached to this @command function.