You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""kalibr signup - Create a Kalibr account from the CLI."""
1
+
"""kalibr signup - Create a Kalibr account from the CLI (agent-driven onboarding)."""
2
2
3
3
importos
4
-
importtime
5
4
6
5
importrequests
7
6
importtyper
@@ -12,19 +11,19 @@
12
11
13
12
14
13
defsignup(
15
-
email: str=typer.Argument(..., help="Real email address for the account owner — a verification email will be sent here"),
16
-
org_name: str=typer.Option(None, "--org", help="Organization name (default: email prefix)"),
14
+
email: str=typer.Argument(..., help="Real email address for the account owner — credentials are returned immediately and a claim link is sent to this address"),
15
+
agent_name: str=typer.Option("kalibr-agent", "--agent-name", help="Name for this agent (for identification in the dashboard)"),
16
+
org_name: str=typer.Option(None, "--org", help="(unused, kept for backward compat)"),
17
17
) ->None:
18
-
"""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."""
18
+
"""Create a Kalibr account and get API credentials immediately. Recommended for agent-driven onboarding."""
19
19
20
20
console.print(f"[bold]Creating Kalibr account for {email}...[/bold]")
0 commit comments