Skip to content
Merged
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
8 changes: 2 additions & 6 deletions kalibr/cli/signup_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,10 @@


def signup(
email: str = typer.Argument(..., help="Email address for your Kalibr account"),
email: str = typer.Argument(..., help="Real email address for the account owner — a verification email will be sent here"),
org_name: str = typer.Option(None, "--org", help="Organization name (default: email prefix)"),
) -> None:
"""Create a Kalibr account and get API credentials. Human clicks one email link."""

console.print("[yellow]'kalibr signup' is deprecated. Use 'kalibr auth' instead.[/yellow]")
console.print("[yellow] 'kalibr auth' is more secure -- no email required.[/yellow]")
console.print()
"""Create a Kalibr account and get API credentials. Recommended for agent-driven onboarding. Agent runs this with the real user email, human clicks one verification link."""

console.print(f"[bold]Creating Kalibr account for {email}...[/bold]")

Expand Down
Loading