Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/aifleet/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .config import ConfigManager


@click.group()
@click.group(context_settings={"help_option_names": ["-h", "--help"]})
@click.version_option(package_name="ai-fleet")
def cli():
"""AI Fleet - Manage AI coding agents in parallel.
Expand Down Expand Up @@ -96,6 +96,9 @@ def config(edit: bool, validate: bool, show_origin: bool):
cli.add_command(multi)
cli.add_command(update)

# Add short alias for list command
cli.add_command(list, name="l")


# Create flt alias
flt = cli
Expand Down
2 changes: 1 addition & 1 deletion src/aifleet/commands/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def multi(pairs: tuple, agent: str, quick: bool) -> None:
"""Create multiple agents with different prompts.

Usage: aim multi branch1:"prompt 1" branch2:"prompt 2" ...
Usage: fleet multi branch1:"prompt 1" branch2:"prompt 2" ...

Args:
pairs: Branch:prompt pairs
Expand Down