For the complete documentation index, see llms.txt. This page is also available as Markdown.

kyvvu register / login

What you'll learn: How to create an account, log in, check your session, and manage authentication.


kyvvu register

Create a new Kyvvu account. Prompts for email, display name, and password. On success, creates an API key and stores it locally.

Usage: kyvvu register [OPTIONS]

Options:
  --api-url TEXT  Kyvvu API URL (default: https://platform.kyvvu.com)

Example

$ kyvvu register
Registering at https://platform.kyvvu.com

Email: you@company.com
Display name: Your Name
Password:
Confirm password:

 Account created and verified.

Your API key (save this  it will not be shown again):

    KvKey-abc123...

Set it in your environment:

    export KV_API_KEY=KvKey-abc123...

Next steps:
    kyvvu init my-agent

Verification and waitlisting

If the platform is at capacity, your account is created but waitlisted:

If your organization requires admin approval, you'll see:

kyvvu login

Log in to an existing account. Stores a JWT locally for dashboard and CLI operations.

Example

If no API key is stored, you'll be offered to create one.

kyvvu logout

Clear the JWT session. Your API key in ~/.kyvvu/config.toml is preserved — agents continue to work.

kyvvu whoami

Show current user info, verification status, and endpoint configuration.

Configuration storage

Auth state is stored in ~/.kyvvu/config.toml:

  • JWT token and expiry (cleared by kyvvu logout)

  • Default API key (preserved across logins)

  • API URL


Next steps

Last updated