Setup the skills subcommand parser with all its subcommands.
Each subcommand gets a dedicated help screen so that
deepagents skills -h shows skills-specific help, not the
global help.
setup_skills_parser(
subparsers: Any,
*,
make_help_action: Callable[[Callable[[], None]], type[argparse.Action]],
add_output_args: Callable[[argparse.ArgumentParser], None] | None = None
) -> argparse.ArgumentParser| Name | Type | Description |
|---|---|---|
subparsers* | Any | The parent subparsers object to add the skills parser to. |
make_help_action* | Callable[[Callable[[], None]], type[argparse.Action]] | Factory that accepts a zero-argument help callable and returns an argparse Action class wired to it. |
add_output_args | Callable[[argparse.ArgumentParser], None] | None | Default: NoneOptional hook to add a shared |