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: 5 additions & 0 deletions src/bcli_cli/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ def _emit_command_summary() -> None:
config_cmd,
context_cmd,
delete_cmd,
describe_cmd,
doctor_cmd,
endpoint_cmd,
env_cmd,
Expand Down Expand Up @@ -192,6 +193,10 @@ def _emit_command_summary() -> None:
app.command(name="q", help="Run a saved query (no OData required)")(query_cmd.query_command)
app.command(name="ai-context")(context_cmd.ai_context_command)
app.command(name="doctor", help="Diagnose your bcli install (self-rescue for team users)")(doctor_cmd.doctor_command)
app.command(
name="describe",
help="AIP v0.1 — project Typer surface + registry + profile as JSON for agents",
)(describe_cmd.describe_command)

# ETL command — optional, only available when dlt is installed
try:
Expand Down
Loading
Loading